cant pass through special variables in scad stable

This commit is contained in:
Bob - Home - Windows 2017-10-24 23:24:18 -04:00
parent 16f97911ae
commit 606f5a4af5
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}
}