Thingiverse
Flower with holes
von steph97scotto
0
Downloads
0
Likes
0
Makes
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();
//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();
Hast du dieses Modell gedruckt? Einloggen und dein Make teilen!
Melde dich an, um einen Kommentar zu hinterlassen
AnmeldenNoch keine Kommentare – sei der Erste!