From: Ian Jackson Date: Sat, 17 Jun 2017 22:29:13 +0000 (+0100) Subject: ring-tests: wip X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d1ad17135a1573ddf9c11419cfcd35813326f3f8;p=reprap-play.git ring-tests: wip --- diff --git a/ring-tests.scad b/ring-tests.scad new file mode 100644 index 0000000..3c784b7 --- /dev/null +++ b/ring-tests.scad @@ -0,0 +1,17 @@ +// -*- C -*- + +thick = 3.5; +width = 5; + +// calculated + +ellipse_width = width / 0.90; + +module Profile(){ + intersection(){ + scale([thick, ellipse_width]) circle(r=0.5, $fn=50); + square([thick*2, width], center=true); + } +} + +Profile();