Add some venting holes

This commit is contained in:
douzeb 2023-01-26 08:55:28 +01:00
parent 47105977d4
commit d982f4cfca
1 changed files with 17 additions and 0 deletions

View File

@ -319,6 +319,19 @@ module walls() {
translate([-(($boxw - $w) / 2 + 5), $boxl / 2, $feeth + $boxh + 0.6])
rotate([0,-45,0])
cube([20, $boxl + 10, 15],center=true);
translate([0, 12, $feeth + $boxh - 15])
rotate([0, 90, 0])
cylinder(h=$boxw + 10, r=2.5, center=true, $fn=20);
translate([0, 24, $feeth + $boxh - 15])
rotate([0, 90, 0])
cylinder(h=$boxw + 10, r=2.5, center=true, $fn=20);
translate([0, 36, $feeth + $boxh - 15])
rotate([0, 90, 0])
cylinder(h=$boxw + 10, r=2.5, center=true, $fn=20);
translate([0, 48, $feeth + $boxh - 15])
rotate([0, 90, 0])
cylinder(h=$boxw + 10, r=2.5, center=true, $fn=20);
}
// bottom wall
@ -341,6 +354,10 @@ module walls() {
cube([3, 40, $w * 2], center=true);
translate([-30, $boxl / 2, $feeth + $w / 2])
cube([3, 40, $w * 2], center=true);
translate([40, $boxl / 2, $feeth + $w / 2])
cube([3, 40, $w * 2], center=true);
translate([-40, $boxl / 2, $feeth + $w / 2])
cube([3, 40, $w * 2], center=true);
}
}