From: Ian Jackson Date: Sun, 5 Nov 2017 22:32:54 +0000 (+0000) Subject: introduce PlacePins (nfc) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=e1ed34b26de72cb5d2642e923dd79c6955f77751;p=moebius3.git introduce PlacePins (nfc) Signed-off-by: Ian Jackson --- 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]);