Skip to content

Commit 716dee5

Browse files
committed
Incorporate feedback, remove Lazy Union info
Hopefully people can find this PR if they run into the problem. `partition() union() if ($idx==0) cube();`
1 parent 2a4def8 commit 716dee5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

partitions.scad

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -541,9 +541,8 @@ module partition_cut_mask(l=100, h=100, cutsize=10, cutpath="jigsaw", gap=0, cut
541541
// partition(size, [spread], [cutsize], [cutpath], [gap], [spin], [$slop=]) CHILDREN;
542542
// Description:
543543
// Partitions an object into two parts, spread apart a small distance, with matched joining edges.
544-
// If only one side of the parition is desired, $idx can be used on the children i.e.
545-
// `partition() if ($idx==0) cube();` will only give the back partition. This breaks with Lazy Union
546-
// active, so a workaround is providing a front child at least `size` away i.e. `partition() if ($idx==0) cube(); else up(200) cube();`.
544+
// If only one side of the partition is desired, $idx can be used on the children i.e.
545+
// `partition() if ($idx==0) cube();` will only give the back partition.
547546
// Arguments:
548547
// size = The [X,Y,Z] size of the object to partition.
549548
// spread = The distance to spread the two parts by.

0 commit comments

Comments
 (0)