From: Andre Weltsch Date: Sat, 21 Oct 2017 09:09:46 +0000 (+0200) Subject: Replace child() with children(). X-Git-Url: https://git.armaanb.net/?p=atreides.git;a=commitdiff_plain;h=b18225aca0e713e4f2239dab1113b24201a60c51 Replace child() with children(). --- 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); } }