Hi
Sorry for the nube question.
I am trying to create a tube with rounded rims top and bottom.
Can I extrude this in the Z axis to create the tube:
rotate_extrude(convexity = 10)
translate([10, 0, 0])
circle(d = 1);
Can't figure it out but sure it must be simple
Thanks
Ex
--
View this message in context: http://forum.openscad.org/Create-a-tube-with-rounded-rims-tp14376.html
Sent from the OpenSCAD mailing list archive at Nabble.com.
This is one suggesion:
$fa=1;
$fs=0.2;
rotate_extrude(convexity = 10) translate([10, 0, 0]) hull() {
circle(d = 1);
translate([0,20]) circle(d = 1);
}
-Marius
Marius
Thanks. Exactly what I was after. I will go and break it down and understand
it now
Ex
--
View this message in context: http://forum.openscad.org/Create-a-tube-with-rounded-rims-tp14376p14378.html
Sent from the OpenSCAD mailing list archive at Nabble.com.