chiark / gitweb /
velux-window-grip: it broke, so make thicker: fix up so head stays put when we edit...
[reprap-play.git] / velux-window-grip.scad
index 330ac641f6d498b311111baf68266b34f586d57f..28e228e5face59da49aa36ca11eaa0d317b57137 100644 (file)
@@ -126,11 +126,13 @@ module Attach(){
 }
 
 module Combine(){
-  linear_extrude(height=width)
-    translate([0,at_offset_y,0])
-    MainLoop();
-  translate([0,0, width/2])
-    Attach();
+  translate([0,-main_thick/2,0]){
+    linear_extrude(height=width)
+      translate([0,at_offset_y,0])
+      MainLoop();
+    translate([0,0, width/2])
+      Attach();
+  }
 }
 
 Combine();