From: Ian Jackson Date: Sat, 9 Sep 2017 15:28:12 +0000 (+0100) Subject: sprinkler-spike-receptacle: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=85e5e464e52ff013a4ee13d0150db3ea50b12da9 sprinkler-spike-receptacle: wip --- diff --git a/sprinkler-spike-receptacle.scad b/sprinkler-spike-receptacle.scad index 09d596f..de22485 100644 --- a/sprinkler-spike-receptacle.scad +++ b/sprinkler-spike-receptacle.scad @@ -2,6 +2,8 @@ main_height = 95; +spike_web_thick = 2.52 + 0.5; + spike_top_width = 21.04; spike_botpos_height = 9.5; @@ -38,6 +40,20 @@ module PositivePlan(){ 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(){ @@ -58,4 +74,5 @@ module PlanTest(){ } } -PlanTest(); +//PlanTest(); +Main();