Completed design for v2.

This commit is contained in:
2025-06-10 16:38:59 +01:00
parent 3eef5ea046
commit 9e459446c9
47 changed files with 1194 additions and 294 deletions

View File

@@ -0,0 +1,14 @@
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();