finally making a plates/ instead of stuffing everything in misc/ Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
18 lines
435 B
OpenSCAD
18 lines
435 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
|
|
module jlf_dustwasher() {
|
|
difference() {
|
|
cylinder(r=jlf_dustwasher_radius, h=2, $fn=100, center=true);
|
|
cylinder(r1=jlf_shaft_inner_radius, r2=jlf_shaft_inner_radius+shaft_position_tolerance,
|
|
h=2.001, $fn=100, center=true);
|
|
}
|
|
}
|
|
|
|
jlf_dustwasher();
|