chiark / gitweb /
flyscreen-handle: LeverSects wip, before Test
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 27 Aug 2016 14:54:07 +0000 (15:54 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 27 Aug 2016 14:54:07 +0000 (15:54 +0100)
flyscreen-handle.scad

index d2b1fd17e5b77f3b6392127072dea082da0e0b81..72add71a5160c53c0193b2ab6ef1ef843269a876 100644 (file)
@@ -27,6 +27,8 @@ inside_h_xgap = 1;
 pivot_r = 2;
 pivot_slop = 0.25;
 
+width = 10;
+
 // calculated
 
 inside_h = opening_height/2 - opening_protrh - inside_h_xgap/2;
@@ -117,4 +119,18 @@ module Demo(){
   LeverSectBot();
 }
 
-Demo();
+module LeverTop(){
+  linear_extrude(height=width, convexity=100) LeverSectTop();
+}
+
+module LeverBot(){
+  linear_extrude(height=width, convexity=100) LeverSectBot();
+}
+
+module Test(){
+  translate([0,2,0]) LeverTop();
+  LeverBot();
+}
+
+//Demo();
+Test();