Initial commit

This commit is contained in:
2025-02-25 12:13:03 +00:00
parent 3476f37b84
commit 659001351e
52 changed files with 1542 additions and 0 deletions

12
models/common/wheel.scad Normal file
View File

@@ -0,0 +1,12 @@
include <../../config.scad>;
module wheel() {
r_wheel = D_WHEEL / 2;
r_wheel_bore = D_WHEEL_BORE / 2;
color("red") rotate([0, 90, 0]) difference() {
cylinder(T_WHEEL, r_wheel, r_wheel, center = true);
cylinder(T_WHEEL, r_wheel_bore, r_wheel_bore, center = true);
}
// Shopping
echo("Wheel: Wheel - x1");
}