From 2e356fc5be2b3e7c6d474338d602c17196c4b7c8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 30 Oct 2018 18:35:00 +0000 Subject: [PATCH] ksafe-base: convexity Signed-off-by: Ian Jackson --- ksafe-base.scad | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/ksafe-base.scad b/ksafe-base.scad index 39db608..248119c 100644 --- a/ksafe-base.scad +++ b/ksafe-base.scad @@ -60,7 +60,8 @@ module upp_app_Profile(){ $xppF, $xppF + [1,0], $xppI + [1,0], - $xppJ ]); + $xppJ ], + convexity=10); } @@ -82,7 +83,8 @@ module AnchorProfile(){ polygon([ $xppE, $xppF, $xppF + [0,1], - $xppE + [1,0] ]); + $xppE + [1,0] ], + convexity=10); translate(appM) circle(r= anchor_b); } translate(appM) circle(r= anchor_rad); @@ -99,7 +101,8 @@ module AnchorWallProfile(){ polygon([ $xppE, $xppF, $xppI, - $xppJ ]); + $xppJ ], + convexity=10); } } } @@ -116,18 +119,21 @@ module WebProfile(){ $xppE, $xppF, $gppS, - $gppR ]); + $gppR ], + convexity=10); } else { polygon([ $gppP, $xppE, $xppF, $gppS, - $gppP + web_height * [1,0] ]); + $gppP + web_height * [1,0] ], + convexity=10); } polygon([ $gppS, $xppF, $xppF + [1,0], - $gppS + [1,0] ]); + $gppS + [1,0] ], + convexity=10); } } -- 2.30.2