Bed David
This commit is contained in:
parent
3786b1ee9e
commit
850333ea1b
13 changed files with 1215 additions and 5 deletions
40
Bed_David/posts.scad
Normal file
40
Bed_David/posts.scad
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
include <dimensions.scad>
|
||||
include <functions.scad>
|
||||
|
||||
module post_head_wall() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post headend wallside", size=[beam_width, beam_depth, bed_height]);
|
||||
}
|
||||
|
||||
module post_head_room() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post headend roomside", size=[beam_width, beam_depth, bed_height]);
|
||||
}
|
||||
|
||||
|
||||
module post_foot_wall() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post footend wallside", size=[beam_width, beam_depth, bed_height]);
|
||||
}
|
||||
|
||||
module post_foot_room() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post footend roomside", size=[beam_width, beam_depth, bed_height]);
|
||||
}
|
||||
|
||||
module post_stairs() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post stairs", size=[beam_width, beam_depth, bed_height]);
|
||||
}
|
||||
|
||||
module post_head_standoff() {
|
||||
color("green")
|
||||
translate([0,0,0])
|
||||
cuben("Post headend standoff", size=[beam_width, beam_depth, bed_height-beam_width]);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue