diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-02-04 20:28:58 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2024-02-04 20:28:58 +0100 |
commit | 8a6f7d252e461e05250651c29fff4455df66d52d (patch) | |
tree | 48d66866e3aaefa88fef93fd65928ee42fea8bc7 /src/lib | |
parent | 9465ca5b6adc32f81c5e0ab5038a427a43c0390f (diff) |
Pattern weight (to be filled with washers)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/pattern_weight.scad | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/pattern_weight.scad b/src/lib/pattern_weight.scad new file mode 100644 index 0000000..b05ff86 --- /dev/null +++ b/src/lib/pattern_weight.scad @@ -0,0 +1,15 @@ +module pattern_weight( + washer_r = 19, + washer_hole_r = 6, + washer_h = 3, + base_h = 1, + +) { + difference() { + cylinder(h=washer_h * 2 + base_h, r=25, $fn=6); + translate([0, 0, base_h]) difference() { + cylinder(h=washer_h * 2 + 1, r=washer_r); + translate([0, 0, -0.5]) cylinder(h=washer_h * 2 + 2, r=washer_hole_r); + } + } +} |