chiark / gitweb /
earring-stand: wip EclipRPlan
[reprap-play.git] / earring-stand.scad
index 805fe0fe3247f6540a3979205783647390d04ef8..53c98406970b67e9f4454cbfd1ead68877585546 100644 (file)
@@ -10,6 +10,7 @@ eclip_ult_angle = 44;
 eclip_base_epsilon = 0.5;
 
 test_alpha = 10;
+test_main_th = 1.5;
 
 // calculated
 
@@ -18,12 +19,14 @@ include <utils.scad>
 eclip_inner_strt = eclip_outer_strt + eclip_inner_xstrt;
 
 r0 = eclip_inner_rad;
-r1 = r0 + eclip_inner_rad;
+r1 = r0 + eclip_gap_rad;
 r2 = r1 + eclip_prong_th;
 r2e = r1 + eclip_base_epsilon;
 
 ppxl = -(r0 / sqrt(2)) + (eclip_inner_strt / sqrt(2));
 
+rgap = eclip_gap_rad;
+
 $fn=70;
 
 module EclipLPlanCore(alpha){
@@ -42,6 +45,12 @@ module EclipLPlanCore(alpha){
   }
 }
 
+module EclipRPlan(alpha, main_th){
+  rotate(alpha)
+    translate([ppxl + main_th + rgap, -r2*2])
+    square([eclip_prong_th, r2*(2 + 1/sqrt(2))]);
+}
+
 module EclipLPlan(alpha){
   rotate(alpha) EclipLPlanCore(alpha);
 }
@@ -58,5 +67,8 @@ module EclipPPlan(main_th){
   translate([ppxl, 0]) square([main_th, r2]);
 }
 
+rotate(-test_alpha){
 color("red") EclipLPlan(test_alpha);
-color("blue") rotate(test_alpha) EclipPPlan(1.5);
+color("blue") rotate(test_alpha) EclipPPlan(test_main_th);
+color("green") EclipRPlan(test_alpha, test_main_th);
+}