From 4eab8f7f64d2fd79968e799deeac17f8f70ff378 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 6 Feb 2026 00:12:19 -0800 Subject: [PATCH] Fixed top/bottom_half() 2d examples. --- partitions.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/partitions.scad b/partitions.scad index 975b51c..7f0fcc2 100644 --- a/partitions.scad +++ b/partitions.scad @@ -553,7 +553,7 @@ function back_half(p,y=0, cut_path, cut_angle=0, offset=0) = // bottom_half() sphere(r=20); // bottom_half(z=-10) sphere(r=20); // Example(2D): Working in 2D -// bottom_half(z=5) circle(r=20); +// bottom_half(z=5,planar=true) circle(r=20); // Example(2D): Using a cut path in 2D // ppath = partition_path([ // 40, "jigsaw", "dovetail yflip", 40, @@ -629,7 +629,7 @@ function bottom_half(p,z=0, planar=false, cut_path, cut_angle=0, offset=0) = // top_half() sphere(r=20); // top_half(z=5) sphere(r=20); // Example(2D): Working in 2D -// top_half(z=5) circle(r=20); +// top_half(z=5,planar=true) circle(r=20); // Example(2D): Using a cut path in 2D // ppath = partition_path([ // 40, "jigsaw", "dovetail yflip", 40,