14 lines
410 B
OpenSCAD
14 lines
410 B
OpenSCAD
|
|
include <../../config.scad>;
|
|
|
|
module vent_gasket_holes() {
|
|
for (index_hole = [0 : 1 : COUNT_BOLTS_PER_VENT - 1]) {
|
|
rotate([0, 0, 90 * index_hole]) translate([D_VENT_DUCT / 2, D_VENT_DUCT / 2, 0])
|
|
// rotate([90, 0, 0])
|
|
cylinder(T_HDPE_SHEET + T_GASKET_RUBBER, SIZE_BOLT_VENT / 2, SIZE_BOLT_VENT / 2, center = true);
|
|
}
|
|
// Shopping
|
|
}
|
|
|
|
// test output
|
|
vent_gasket_holes(); |