Last active
March 24, 2023 03:16
-
-
Save four0four/9ae4f8ec870222e8eae90d1822e8c9f7 to your computer and use it in GitHub Desktop.
Simple piston-ring-pusher tool to help with measuring gaps repeatably. Requires https://github.com/revarbat/BOSL2 for the chamfer.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include <BOSL2/std.scad> | |
$fn=500; | |
difference() { | |
union() { | |
difference() { | |
cylinder(h=25, r = 50, center = false); | |
up(25) #chamfer_cylinder_mask(r=50, chamfer=2); | |
} | |
cylinder(h=5, r = 60, center = true); | |
} | |
cylinder(h=100, r = 40, center = true); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment