Path reorg

This commit is contained in:
Ian Gulliver
2024-07-12 09:08:58 -07:00
parent a0867baac9
commit dc7d3a9252
27 changed files with 65 additions and 44 deletions

View File

@@ -0,0 +1,8 @@
module torus(r_major, r_minor, xs=1.0, ys=1.0) {
rotate_extrude()
translate([r_major, 0, 0])
scale([xs, ys, 1.0])
circle(r=r_minor);
}
torus(r_major=10, r_minor=2, xs=0.5, $fn=200);