Add Flower Pot

This commit is contained in:
maride 2017-12-12 11:12:17 +01:00
parent 3959a48d87
commit 406cd889ad

15
Flower_Pot.scad Normal file
View File

@ -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);
}