Add simple coaster

This commit is contained in:
Kienan Stewart 2026-01-03 15:54:11 -05:00
parent 48cc0ef71d
commit 8ee2c372d8
1 changed files with 17 additions and 0 deletions

17
coaster.scad Normal file
View File

@ -0,0 +1,17 @@
Diameter = 101.6; // 0.1
Depth = 6; // 0.1
Inset = false;
Inset_depth = 4; // 0.1
Inset_width = 5; // 0.1
$fn = 180; // 0.1
rotate([0, 180, 0]) {
difference() {
cylinder(h = Depth, d = Diameter);
if (Inset) {
cylinder(h = Inset_depth, d = Diameter - 2*Inset_width);
};
};
};