add side wall ribs
This commit is contained in:
@ -1,17 +1,16 @@
|
||||
include <./sideWallBase.scad>
|
||||
|
||||
|
||||
sideWallLeft();
|
||||
*sideWallLeft();
|
||||
|
||||
module sideWallLeft() {
|
||||
|
||||
applyEpicVentilation()
|
||||
applySideWallVerticalRibs()
|
||||
sideWallBase();
|
||||
|
||||
module applyEpicVentilation() {
|
||||
|
||||
apply_n() {
|
||||
|
||||
for (i = [1:8]) {
|
||||
translate(v = [0, 35, i * 10 + 8])
|
||||
minkowski() {
|
||||
@ -19,10 +18,21 @@ module sideWallLeft() {
|
||||
cube(size = [10, 40, 3]);
|
||||
}
|
||||
}
|
||||
|
||||
children(0);
|
||||
}
|
||||
}
|
||||
|
||||
module applySideWallVerticalRibs() {
|
||||
apply_p() {
|
||||
union() {
|
||||
translate(v = [0, 82, 0])
|
||||
sideWallVerticalRibs(numRibs = 2, ribZ = sideWallZ-20, ribYDiff = 8, ribR = 3, ribExtrusion = 1.5);
|
||||
|
||||
translate(v = [0, 12, 0])
|
||||
sideWallVerticalRibs(numRibs = 3, ribZ = sideWallZ-20, ribYDiff = 8, ribR = 3, ribExtrusion = 1.5);
|
||||
}
|
||||
children(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user