X-Git-Url: https://git.armaanb.net/?p=atreides.git;a=blobdiff_plain;f=case%2Fopenscad%2Fatreus_case.scad;h=3cc3ad3d8b38b2d7a083658573e9d51acdf2f611;hp=5af4adfa36a5dc3ecd78354f148ee40241918cf2;hb=b18225aca0e713e4f2239dab1113b24201a60c51;hpb=88bd72fc81392291d783cb9d1b1a2fe6b17b47f1 diff --git a/case/openscad/atreus_case.scad b/case/openscad/atreus_case.scad index 5af4adf..3cc3ad3 100644 --- a/case/openscad/atreus_case.scad +++ b/case/openscad/atreus_case.scad @@ -69,7 +69,7 @@ module rz(angle, center=undef) { rotate(angle) { translate(-center) { for (i=[0:$children-1]) - child(i); + children(i); } } } @@ -141,7 +141,7 @@ module rotate_half() { rotation_y_offset = 1.75 * column_spacing; for (i=[0:$children-1]) { rz(angle, [hand_separation, rotation_y_offset]) { - child(i); + children(i); } } } @@ -151,7 +151,7 @@ module add_hand_separation() { for (i=[0:$children-1]) { translate([0.5*hand_separation, /* we get back the full separation because of mirroring */ - 0]) child(i); + 0]) children(i); } }