fmp-capsule/lid.scad

17 lines
330 B
OpenSCAD
Raw Normal View History

2016-04-19 01:14:56 +02:00
include <constants.scad>;
include <bayonetmount.scad>;
2015-12-12 23:42:44 +01:00
2016-04-19 01:14:56 +02:00
difference() {
lid(tube_outer_diameter,
tube_inner_diameter,
latch_width,
latch_height,
lid_height);
hull() {
pos = groove_length / 2 - groove_depth;
for(x = [-pos, pos])
translate([x, 0, lid_height])
sphere(r = groove_depth, center = true);
}
}