From: Ian Jackson Date: Sat, 23 Jul 2016 13:38:08 +0000 (+0100) Subject: earring-stand: TestProtr looks good X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=df13097f02f97b7f7e15721e82387ec1c1a72eac;hp=2f58bc86da89891f5f540e61396a6e33f6713829 earring-stand: TestProtr looks good --- diff --git a/earring-stand.scad b/earring-stand.scad index bc15e05..60b5199 100644 --- a/earring-stand.scad +++ b/earring-stand.scad @@ -34,6 +34,7 @@ ppxl = -(r0 / sqrt(2)) + (eclip_inner_strt / sqrt(2)); rgap = eclip_gap_rad; eclip_base_offset = r1; +eclip_wall_offset = -ppxl; $fn=70; @@ -100,6 +101,13 @@ module TestBase(){ test_base_th]); } +module TestProtr(){ + translate([0,0, test_main_th - eclip_wall_offset]) + rotate([0,90,0]) + linear_extrude(height=test_len) + EclipPPlan(test_main_th); +} + module PlanDemo(){ color("red") EclipLPlan(test_alpha); color("blue") rotate(test_alpha) EclipPPlan(test_main_th); @@ -107,4 +115,5 @@ module PlanDemo(){ } //PlanDemo(); -TestBase(); +//TestBase(); +TestProtr();