chiark / gitweb /
flyscreen-handle: take RetainCutout out of HandleSection too
[reprap-play.git] / flyscreen-handle.scad
index dcd03264e604ef8bd095e753143814c9d2f27618..1c55f80af6b833d9e5e8799ce5a2b41b1f661966 100644 (file)
@@ -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();