luniebox/hardware/case/square/luniebox.scad

40 lines
774 B
OpenSCAD
Raw Permalink Normal View History

2022-02-06 10:19:03 +01:00
include<luniebox-helper.scad>
use<luniebox-bottom.scad>
use<luniebox-front.scad>
2022-03-13 09:28:58 +01:00
use<luniebox-front-panel.scad>
2022-02-06 10:19:03 +01:00
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])
2022-03-13 09:28:58 +01:00
translate([0,width+depth-front_offset,depth])
2022-02-06 10:19:03 +01:00
rotate([90,0,0])
luniebox_front();
2022-03-13 09:28:58 +01:00
color(c=[0.2,1,0.9])
translate([0,width+depth,depth])
rotate([90,0,0])
luniebox_front_panel();
2022-02-06 10:19:03 +01:00
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();