16 lines
198 B
OpenSCAD
16 lines
198 B
OpenSCAD
include <./sideWallBase.scad>
|
|
|
|
*sideWallRight();
|
|
|
|
module sideWallRight() {
|
|
|
|
applyEpicVentilation()
|
|
mirror(v=[1,0,0])
|
|
sideWallBase();
|
|
|
|
module applyEpicVentilation() {
|
|
children(0);
|
|
}
|
|
}
|
|
|