From af3b427a9783f08cbd00a65f7bf79933f321260e Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Mon, 28 Jun 2021 18:07:29 -0700 Subject: [PATCH] Added missing 'children()' call. --- partitions.scad | 1 + 1 file changed, 1 insertion(+) diff --git a/partitions.scad b/partitions.scad index bdeb040..53741f8 100644 --- a/partitions.scad +++ b/partitions.scad @@ -137,6 +137,7 @@ module partition_cut_mask(l=100, h=100, cutsize=10, cutpath="jigsaw", gap=0, anc linear_extrude(height=h, center=true, convexity=10) { stroke(path, width=max(0.1, $slop*2)); } + children(); } }