14 lines
447 B
OpenSCAD
14 lines
447 B
OpenSCAD
|
|
include <../../config.scad>;
|
|
|
|
module glove_gasket_holes() {
|
|
for (index_hole = [0 : 1 : COUNT_BOLTS_PER_GLOVE - 1]) {
|
|
rotate([0, 0, 360 / COUNT_BOLTS_PER_GLOVE * index_hole]) translate([0, D_GLOVE_HOLE / 2 + W_DOOR_GASKET / 2, 0])
|
|
// rotate([90, 0, 0])
|
|
cylinder(T_HDPE_SHEET + T_GASKET_RUBBER, SIZE_BOLT_GLOVE / 2, SIZE_BOLT_GLOVE / 2, center = true);
|
|
}
|
|
// Shopping
|
|
}
|
|
|
|
// test output
|
|
glove_gasket_holes(); |