From 85e5e464e52ff013a4ee13d0150db3ea50b12da9 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 9 Sep 2017 16:28:12 +0100 Subject: [PATCH] sprinkler-spike-receptacle: wip --- sprinkler-spike-receptacle.scad | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) 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(); -- 2.30.2