chiark / gitweb /
velux-window-grip: attach seems good now, do a combine
[reprap-play.git] / velux-window-grip.scad
index 63fe3ea43ba93080df5ce3212c994ccbf5c085ef..e61dcf7a6eb6664240ce43fd44b1291abae74653 100644 (file)
@@ -22,7 +22,7 @@ width = 20;
 // Attach
 
 at_bolt_into = 13.0 + 0.5;
-at_tube_dia = 12.2 + 0.5;
+at_tube_dia = 16.7 + 0.5;
 at_prong_minw = 4;
 at_rear_thick = 4.5;
 at_bolt_dia = 5 + 0.5;
@@ -125,5 +125,12 @@ module Attach(){
   }
 }
 
-Attach();
+module Combine(){
+  linear_extrude(height=width)
+    translate([0,at_offset_y,0])
+    MainLoop();
+  translate([0,0, width/2])
+    Attach();
+}
 
+Combine();