Thingiverse
Simple ring module
by burt777
33
Downloads
22
Likes
0
Makes
I was looking for the code to generate a ring. Found something usable in the OpenSCAD manual and made a parametric module of it. I thought let's share in case somebody is looking for an easy to use ring script. (-:
If you're just looking for the function, here it is:
module ring (outerRadius = 10, ringRadius = 1) {
rotate_extrude (convexity = 10)
translate ([outerRadius, 0, 0])
circle (r = ringRadius);
}
If you're just looking for the function, here it is:
module ring (outerRadius = 10, ringRadius = 1) {
rotate_extrude (convexity = 10)
translate ([outerRadius, 0, 0])
circle (r = ringRadius);
}
Sign in to leave a comment
Sign in