droidcam-with-octoprint/phone-mount/rod.scad

11 lines
201 B
OpenSCAD
Raw Normal View History

2023-10-01 12:40:20 +00:00
$fn = 25;
diameter = 20;
height = 170;
thickness = 2;
difference() {
cylinder(d = diameter, h = height, center = true);
cylinder(d = diameter + - thickness, h = height + 1, center = true);
}