2014-11-23 21:05:59 +01:00
|
|
|
include <dimensions.scad>
|
|
|
|
|
|
|
|
|
|
module bottom_strengthening(){
|
|
|
|
|
// front
|
|
|
|
|
cube(size=[bottomwidth, strengthwidth, plythick], center=false);
|
|
|
|
|
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomwidth);
|
|
|
|
|
|
|
|
|
|
// back
|
|
|
|
|
translate([0, bottomlength-strengthwidth, 0]) {
|
|
|
|
|
cube(size=[bottomwidth, strengthwidth, plythick], center=false);
|
|
|
|
|
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomwidth);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// left side
|
|
|
|
|
translate([0, strengthwidth, 0]) {
|
|
|
|
|
color("green")
|
|
|
|
|
cube(size=[strengthwidth, bottomlength-strengthwidth*2, plythick], center=false);
|
2017-01-02 20:48:20 +01:00
|
|
|
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomlength-strengthwidth*2);
|
2014-11-23 21:05:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// right side
|
|
|
|
|
translate([bottomwidth-strengthwidth, strengthwidth, 0]) {
|
|
|
|
|
color("green")
|
|
|
|
|
cube(size=[strengthwidth, bottomlength-strengthwidth*2, plythick], center=false);
|
2017-01-02 20:48:20 +01:00
|
|
|
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomlength-strengthwidth*2);
|
2014-11-23 21:05:59 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bottom_strengthening();
|