increase the precision of some visible round edges

this may not matter much to the actual print, but this improved the
dimensions of some objects, especially the dustwashers

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
2025-03-05 12:22:51 -06:00
parent 03737e2385
commit 3ca41bdb47
4 changed files with 14 additions and 14 deletions

View File

@@ -8,9 +8,9 @@ include <components.scad>
module jlf_dustwasher() {
difference() {
cylinder(r=lever_plate_hole*decorative_radius_scale, h=2, $fn=50, center=true);
cylinder(r=lever_plate_hole*decorative_radius_scale, h=2, $fn=100, center=true);
// 5.25 = 4.55 (diameter of shaft is 9.10mm) + .25 to let it take an angle
cylinder(r=4.8, h=2.1, $fn=50, center=true);
cylinder(r=4.8, h=2.1, $fn=100, center=true);
}
}