Initial commit

This commit is contained in:
Ian Gulliver
2024-07-03 22:04:09 -07:00
parent 205d9b95bd
commit ee10afaf26
5 changed files with 219 additions and 0 deletions

6
torus.scad Normal file
View File

@@ -0,0 +1,6 @@
module torus(r_major, r_minor, xs=1.0) {
rotate_extrude()
translate([r_major, 0, 0])
scale([xs, 1.0, 1.0])
circle(r=r_minor);
}