From: Ian Jackson Date: Mon, 21 Dec 2015 21:31:16 +0000 (+0000) Subject: test-cup: try this X-Git-Tag: filamentspool-v2-release~59 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=94aad0313ceb13ea327311811a2a120563d85240;p=reprap-play.git test-cup: try this --- diff --git a/test-cup.scad b/test-cup.scad new file mode 100644 index 0000000..5bb826a --- /dev/null +++ b/test-cup.scad @@ -0,0 +1,12 @@ +// -*- C -*- + +radius = 25/2; +wall = 1.0; +height = 40; +floor = 1.0; + +difference(){ + cylinder(r=radius+wall, h=height); + translate([0,0, floor]) + cylinder(r=radius, h=height); +}