Ontwerp voor efficiente opslag electro koffertjes
This commit is contained in:
parent
0e51b2ba6e
commit
fb89d5364d
11 changed files with 252 additions and 0 deletions
29
Koffertjes_opslag/bottom_strengthening.scad
Normal file
29
Koffertjes_opslag/bottom_strengthening.scad
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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);
|
||||
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomwidth-strengthwidth*2);
|
||||
}
|
||||
|
||||
// right side
|
||||
translate([bottomwidth-strengthwidth, strengthwidth, 0]) {
|
||||
color("green")
|
||||
cube(size=[strengthwidth, bottomlength-strengthwidth*2, plythick], center=false);
|
||||
echo("#### Strengthening piece width = ", strengthwidth, " length = ", bottomwidth-strengthwidth*2);
|
||||
}
|
||||
}
|
||||
|
||||
bottom_strengthening();
|
||||
Loading…
Add table
Add a link
Reference in a new issue