chiark / gitweb /
wardrobe-hook: straight-on version: wip; rename
[reprap-play.git] / wardrobe-hook.scad
index ade8420babf4e8871bb5ce19894c47893225802c..3588142ac8f50637e9fbc34aaa3826911d860b05 100644 (file)
@@ -33,7 +33,7 @@ mainthick = 4;
 clipthick = 2;
 clipang = 135;
 
-stemlen = 50;
+stemlen = 40;
 
 topwidth = 20;
 
@@ -52,14 +52,18 @@ elmid = [topwidth/2, -tuberad];
 ellow = tangent_intersect_b([0,hookcy], hookinrad, elmid);
 ellowextra = 180 - tangent_intersect_beta([0,hookcy], hookinrad, elmid);
 
-module Plan(){
+module ClipPlan(qbend, qstemleny){
   dy = tubeheight - tuberad*2;
   FArcSegment(0, dy, tuberad, mainoutrad, -1, 181);
-  FArcSegment(0, 0,  tuberad, mainoutrad, -bend, bend+1);
+  FArcSegment(0, 0,  tuberad, mainoutrad, -qbend, qbend+1);
   translate([tuberad, 0]) square(center=false, size=[mainthick,dy]);
   FArcSegment(0, 0, tuberad, tuberad + clipthick, 360-clipang, clipang+1);
-  rotate(-bend) translate([tuberad, 0]) mirror([0,1])
-    square(center=false, size=[mainthick, stemlen/cos(bend)]);
+  rotate(-qbend) translate([tuberad, 0]) mirror([0,1])
+    square(center=false, size=[mainthick, qstemleny/cos(qbend)]);
+}
+
+module Plan(){
+  ClipPlan(bend,stemlen);
 }
 
 module ElevationCore(){
@@ -110,5 +114,24 @@ module Hook(){ ////toplevel
   }
 }
 
+// straight-on version, everything prefixed with s or S
+
+sstemleny = -hookcy;
+sbend_raw = tangents_intersect_beta([0,0],tuberad,
+                                   [0,-(stemlen-hookinrad)],hookinrad);
+sbend = angle_map_range(360-sbend_raw, -180);
+
+module SPlan(){
+  ClipPlan(sbend, sstemleny);
+}
+
+// toplevels etc.
+
+module RightHook(){ ////toplevel
+  mirror([1,0,0]) Hook();
+}
+
+SPlan();
+translate([60,0,0]) Plan();
 //ElevationCore();
-Hook();
+//RightHook();