Skip to content

Commit 3dc0dd3

Browse files
authored
Merge pull request #1297 from adrianVmariano/master
path_copies fix
2 parents 6c36f16 + 6982c3d commit 3dc0dd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

distributors.scad

+2-2
Original file line numberDiff line numberDiff line change
@@ -1518,8 +1518,8 @@ module path_copies(path, n, spacing, sp=undef, dist, rotate_children=true, dist,
15181518
for(i=[0:1:len(cutlist)-1]) {
15191519
$pos = cutlist[i][0];
15201520
$idx = is_def(dist) ? distind[i] : i;
1521-
$dir = rotate_children ? (planar?[1,0]:[1,0,0]) : cutlist[i][2];
1522-
$normal = rotate_children? (planar?[0,1]:[0,0,1]) : cutlist[i][3];
1521+
$dir = !rotate_children ? (planar?[1,0]:[1,0,0]) : cutlist[i][2];
1522+
$normal = !rotate_children? (planar?[0,1]:[0,0,1]) : cutlist[i][3];
15231523
translate($pos) {
15241524
if (rotate_children) {
15251525
if(planar) {

0 commit comments

Comments
 (0)