Translate module names.

This commit is contained in:
tastytea 2020-08-01 01:19:31 +02:00
parent 58ee985f7a
commit 07d46f97fe
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 7 additions and 7 deletions

View File

@ -26,7 +26,7 @@ lath_depth = 4.8; /* y */
board_height = 1.0; /* z */
module schublade()
module drawer()
{
/* Sides */
color("brown")
@ -67,7 +67,7 @@ module lath(length)
cube([lath_width, lath_depth, length]);
}
module regal()
module shelf()
{
/* Posts */
color("olive")
@ -109,12 +109,12 @@ module regal()
}
}
regal();
shelf();
translate([lath_width, -10, 80 + board_height])
{
schublade();
translate([0, 0, drawer_size + board_height]) schublade();
translate([0, 0, drawer_size * 2 + board_height * 2]) schublade();
translate([0, 0, drawer_size * 3 + board_height * 3]) schublade();
drawer();
translate([0, 0, drawer_size + board_height]) drawer();
translate([0, 0, drawer_size * 2 + board_height * 2]) drawer();
translate([0, 0, drawer_size * 3 + board_height * 3]) drawer();
}