luniebox/hardware/case/square/luniebox.scad
2022-03-13 09:28:58 +01:00

40 lines
774 B
OpenSCAD

include<luniebox-helper.scad>
use<luniebox-bottom.scad>
use<luniebox-front.scad>
use<luniebox-front-panel.scad>
use<luniebox-side.scad>
use<luniebox-top.scad>
use<luniebox-back.scad>
color(c=[1,0.1,0.1])
luniebox_bottom();
color(c=[0.2,1,0.2])
translate([0,width+depth-front_offset,depth])
rotate([90,0,0])
luniebox_front();
color(c=[0.2,1,0.9])
translate([0,width+depth,depth])
rotate([90,0,0])
luniebox_front_panel();
color(c=[0.3,0.3,1])
translate([-depth,0,0])
rotate([90,0,90])
luniebox_side();
color(c=[1,1,0.4])
translate([length+depth,0,0])
rotate([90,0,90])
luniebox_side();
translate([0,width+depth,height+depth*3])
rotate([180,0,0])
color(c=[1,0.5,1])
luniebox_top();
color(c=[1,0.6,1])
translate([length+depth,0,depth])
rotate([90,0,180])
luniebox_back();