Add disc washers

This commit is contained in:
Lauri Võsandi 2021-07-17 10:00:54 +03:00
parent 1d5639b04c
commit c5a2bad4fd
1 changed files with 16 additions and 0 deletions

16
disc-washers.scad Normal file
View File

@ -0,0 +1,16 @@
/**
* 3D printable plastic washers for temporarily mounting drivers
* to prevent scuffing drivers as you experiment with dampening etc
*/
module washer(h) {
difference() {
cylinder(h= h/6.0, d = h * 2, $fn=100);
cylinder(h= h/6.0, d = h, $fn=100);
}
}
washer(3);
translate([10,0]) washer(3.5);
translate([20,0]) washer(4);
translate([30,0]) washer(4.5);