mcopy/scad/lens.scad

9 lines
204 B
OpenSCAD
Raw Permalink Normal View History

2018-01-16 02:17:19 +00:00
$fn=200;
module lens_cap_back () {
difference() {
cylinder(r = 36 / 2, h = 9, center = true);
translate([0, 0, 2]) cylinder(r = 33 / 2, h = 9, center = true);
}
}
lens_cap_back();