chiark / gitweb /
earring-stand: EclipRPlan good
[reprap-play.git] / earring-stand.scad
index 6b5cea9e957718705b6f46226af11b07f2ada6ba..08f0701ebc0d5281e7efc655c37e415f4bca7fc4 100644 (file)
@@ -45,10 +45,14 @@ module EclipLPlanCore(alpha){
   }
 }
 
-module EclipRPlanCore(alpha, main_th){
-  rotate(alpha)
-    translate([ppxl + main_th + rgap, -r2*2])
-    square([eclip_prong_th, r2*(2 + 1/sqrt(2))]);
+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){
@@ -67,8 +71,6 @@ 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(test_main_th);
-color("green") EclipRPlanCore(test_alpha, test_main_th);
-}
+color("green") EclipRPlan(test_alpha, test_main_th);