From e1ed34b26de72cb5d2642e923dd79c6955f77751 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 5 Nov 2017 22:32:54 +0000 Subject: [PATCH] introduce PlacePins (nfc) Signed-off-by: Ian Jackson --- moebius-demo.scad | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/moebius-demo.scad b/moebius-demo.scad index 52dae71..25ebe12 100644 --- a/moebius-demo.scad +++ b/moebius-demo.scad @@ -95,15 +95,20 @@ module Pin(){ ); } -module PinDemo(){ +module PlacePins(){ for (i=[0,1]) { translate( moebius_pin_locns[i] * moebiuscore_nomsize ) { multmatrix(moebius_pin_matrix[i]) - cube([1,4,9]); + children(0); } } } +module PinDemo(){ + PlacePins() + cube([1,4,9]); +} + MainBody(); %PinDemo(); //PinExtrude([-2,10]); -- 2.30.2