From 406cd889ad3094e88a269423d007a8e3a37f00d7 Mon Sep 17 00:00:00 2001 From: maride Date: Tue, 12 Dec 2017 11:12:17 +0100 Subject: [PATCH] Add Flower Pot --- Flower_Pot.scad | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Flower_Pot.scad diff --git a/Flower_Pot.scad b/Flower_Pot.scad new file mode 100644 index 0000000..cf6d731 --- /dev/null +++ b/Flower_Pot.scad @@ -0,0 +1,15 @@ +HEIGHT=100; +DIAMETER=133.7; +WALLSIZE=20; +RESOLUTION=72; +HOLE_DIAMETER=10; + +difference() { + linear_extrude(height=HEIGHT+WALLSIZE, twist=45, slices=10) + circle(d=DIAMETER+WALLSIZE*2, center=true, $fn=8); + + translate([0, 0, WALLSIZE]) + cylinder(h=HEIGHT, d=DIAMETER, $fn=RESOLUTION); + + cylinder(h=WALLSIZE, d=HOLE_DIAMETER, $fn=RESOLUTION); +} \ No newline at end of file