From 606f5a4af51afd1e2524abdd2c6d2e6bf482009d Mon Sep 17 00:00:00 2001 From: Bob - Home - Windows Date: Tue, 24 Oct 2017 23:24:18 -0400 Subject: [PATCH] cant pass through special variables in scad stable --- key.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/key.scad b/key.scad index f9bf66a..8368169 100644 --- a/key.scad +++ b/key.scad @@ -208,12 +208,12 @@ module keytext() { } } -module connectors($stem_profile) { +module connectors(stem_profile) { intersection() { for (connector_pos = $connectors) { translate([connector_pos[0], connector_pos[1], $stem_inset]) { rotate([0, 0, $stem_rotation]){ - connector($stem_profile, $has_brim); + connector(stem_profile, $has_brim); } } }