From 3635b1063dd39254cc4b6d3d455188462b9dd9ca Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 5 Nov 2017 20:17:41 +0000 Subject: [PATCH] work on norm matrix Signed-off-by: Ian Jackson --- moebius-demo.scad | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/moebius-demo.scad b/moebius-demo.scad index 6bbf568..9736899 100644 --- a/moebius-demo.scad +++ b/moebius-demo.scad @@ -97,19 +97,19 @@ module Pin(){ module PinDemo(){ for (i=[0,1]) { - hull(){ - translate( moebius_pin_locns[i] * moebiuscore_nomsize ) - sphere(2 + i); - translate( moebius_pin_locns[i] * moebiuscore_nomsize + - moebius_pin_normals[i] * moebiuscore_nomsize*0.5 ) + translate( moebius_pin_locns[i] * moebiuscore_nomsize ) { + hull(){ sphere(2 + i); + translate( moebius_pin_normals[i] * moebiuscore_nomsize*0.5 ) + sphere(2 + i); + } } } } -//MainBody(); -//%PinDemo(); +MainBody(); +%PinDemo(); //PinExtrude([-2,10]); //PinCutout(); -Pin(); -%PinCutout(); +//Pin(); +//%PinCutout(); -- 2.30.2