chiark / gitweb /
earring-stand: EclipRPlan good
[reprap-play.git] / earring-stand.scad
index 2cfb8dc8dcf1c096c393ae189f974248c3a5de46..08f0701ebc0d5281e7efc655c37e415f4bca7fc4 100644 (file)
@@ -25,6 +25,8 @@ r2e = r1 + eclip_base_epsilon;
 
 ppxl = -(r0 / sqrt(2)) + (eclip_inner_strt / sqrt(2));
 
+rgap = eclip_gap_rad;
+
 $fn=70;
 
 module EclipLPlanCore(alpha){
@@ -43,6 +45,16 @@ module EclipLPlanCore(alpha){
   }
 }
 
+module EclipRPlan(alpha, main_th){
+  intersection(){
+    rotate(alpha)
+      translate([ppxl + main_th + rgap, -r2*2])
+      square([eclip_prong_th, r2*(2 + 1/sqrt(2))]);
+    translate([-r2, -r2e])
+      square([r2*3, eclip_base_epsilon + r2*4]);
+  }
+}
+
 module EclipLPlan(alpha){
   rotate(alpha) EclipLPlanCore(alpha);
 }
@@ -61,3 +73,4 @@ module EclipPPlan(main_th){
 
 color("red") EclipLPlan(test_alpha);
 color("blue") rotate(test_alpha) EclipPPlan(test_main_th);
+color("green") EclipRPlan(test_alpha, test_main_th);