Flower with holes by steph97scotto 3d model
3dmdb logo
Thingiverse
Flower with holes by steph97scotto

Flower with holes by steph97scotto

by Thingiverse
Last crawled date: 3 years, 1 month ago
I created a flower with holes using openSCAD. Here is the code below:
//globals
fl_radius= 15;
fl_height = 13;
module flowerObject()
{
difference()
{
union()
{
cylinder(h=fl_height, r = fl_radius, center = true, twist = 10, slices=4);
for(r=[0:5])
{
rotate([0,0,r*360/5]) translate ([fl_radius, 0, 0]) cylinder (h=fl_height, r= fl_radius, center=true);
}
}

union()
{
for(r=[0:4])
{
rotate([0,0,r*360/5]) translate ([fl_radius/1, 0, 0]) cylinder (r=4, h=14, center=true);
#translate(0,0,r*360/5)cylinder(r1=20,r2=30,h=7);
}
}
}
}
flowerObject();

Tags