Plastic parts additions and fixes

This commit is contained in:
2024-07-21 08:58:31 +03:00
parent 4510c4c60a
commit 756cdcad88
3 changed files with 26 additions and 5 deletions

20
colon-stand.scad Normal file
View File

@@ -0,0 +1,20 @@
H = 21;
Q = 1.2;
D = 1;
module j() {
cylinder(h=100, d=D, $fn=20);
translate([0,0,H-Q]) cylinder(5,0,5,$fn=20);
cylinder(Q,Q,0,$fn=20);
}
difference() {
hull() {
translate([6.5, 0]) cylinder(h=H, d=4, $fn=50);
translate([-6.5, 0]) cylinder(h=H, d=4, $fn=50);
}
translate([6.5, 0]) j();
translate([-6.5, 0]) j();
translate([3.5, 0]) j();
translate([-3.5, 0]) j();
}