chiark / gitweb /
sprinkler-spike-receptacle: wip
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 9 Sep 2017 15:28:12 +0000 (16:28 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 9 Sep 2017 15:28:12 +0000 (16:28 +0100)
sprinkler-spike-receptacle.scad

index 09d596f9fd2139a467fffdb63ffc421a1c62f4d8..de224850b3161c883f1725f5663a2e1d6501c282 100644 (file)
@@ -2,6 +2,8 @@
 
 main_height = 95;
 
 
 main_height = 95;
 
+spike_web_thick = 2.52 + 0.5;
+
 spike_top_width = 21.04;
 
 spike_botpos_height = 9.5;
 spike_top_width = 21.04;
 
 spike_botpos_height = 9.5;
@@ -38,6 +40,20 @@ module PositivePlan(){
     square([ w, main_height ]);
 }
 
     square([ w, main_height ]);
 }
 
+module MultiplySolidifyPlan(th){
+  for (r=[0,90]) {
+    rotate([0,0,r])
+      rotate([90,0,0])
+      translate([0,0,-th/2])
+      linear_extrude(height=th)
+      children(0);
+  }
+}
+
+module Main(){
+  MultiplySolidifyPlan(spike_web_thick) NegativePlan();
+}
+
 module PlanTest(){
   linear_extrude(height=2.0){
     difference(){
 module PlanTest(){
   linear_extrude(height=2.0){
     difference(){
@@ -58,4 +74,5 @@ module PlanTest(){
   }
 }
 
   }
 }
 
-PlanTest();
+//PlanTest();
+Main();