chiark / gitweb /
sewing-table: FitTest: Front and Rear
[reprap-play.git] / velux-window-grip.scad
index 330ac641f6d498b311111baf68266b34f586d57f..d59a78fdced7e5e5f0b12e53f8dbe8d83e99bbc0 100644 (file)
@@ -4,7 +4,7 @@ include <funcs.scad>
 
 // MainLoop
 
-main_thick = 3.3;
+main_thick = 9.0;
 main_in_dia = 28.9;
 
 horn_ext_dia = 20 - 0.5;
@@ -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();
+  rotate([0,0,45]) translate([0,-main_thick/2,0]){
+    linear_extrude(height=width)
+      translate([0,at_offset_y,0])
+      MainLoop();
+    translate([0,0, width/2])
+      Attach();
+  }
 }
 
 Combine();