From b18225aca0e713e4f2239dab1113b24201a60c51 Mon Sep 17 00:00:00 2001 From: Andre Weltsch Date: Sat, 21 Oct 2017 11:09:46 +0200 Subject: [PATCH] Replace child() with children(). --- case/openscad/atreus_case.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } } -- 2.39.2