discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Create a tube with rounded rims

E
Experimentalist
Wed, Nov 11, 2015 9:51 PM

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.

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.
MK
Marius Kintel
Wed, Nov 11, 2015 9:58 PM

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

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
E
Experimentalist
Wed, Nov 11, 2015 10:03 PM

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.

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.