X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=blobdiff_plain;f=flyscreen-handle.scad;h=1c55f80af6b833d9e5e8799ce5a2b41b1f661966;hp=dcd03264e604ef8bd095e753143814c9d2f27618;hb=1007db128ccc5bda3863758573688ec535d6b8c7;hpb=d14d799c0f6becae44928548d4089fd110461dae diff --git a/flyscreen-handle.scad b/flyscreen-handle.scad index dcd0326..1c55f80 100644 --- a/flyscreen-handle.scad +++ b/flyscreen-handle.scad @@ -123,10 +123,12 @@ module GappingSection(){ module WithRetainSection(){ difference(){ - InsertSection(); + union(){ + InsertSection(); + HandleSection(); + } RetainCutout(); } - HandleSection(); RetainSection(); } @@ -155,12 +157,8 @@ module Handle(){ } module Demo(){ - difference(){ - InsertSection(); - RetainCutout(); - } - HandleSection(); - color("red") RetainSection(); + color("red") translate([0,0,-3]) BasicSection(); + color("blue") translate([0,0,3]) WithRetainSection(); } module Test(){ @@ -172,8 +170,11 @@ module Test(){ } //Demo(); +//HandleSection(); +//InsertSection(); //WithRetainSection(); //BasicSection(); //GappingSection(); -Test(); +//Test(); +Demo(); //Handle();