30 lines
890 B
OpenSCAD
30 lines
890 B
OpenSCAD
$fn=60;
|
|
|
|
include <BOSL2/std.scad>
|
|
include <nutsnbolts/cyl_head_bolt.scad>
|
|
|
|
* import("../stl/dual_2.5_ssd_shelf.stl");
|
|
|
|
module wall() {
|
|
difference() {
|
|
union() {
|
|
translate([0,0,19]) cuboid([3,85,38], rounding=3, edges=[TOP+FRONT,TOP+BACK]);
|
|
translate([-1.5,0,2.5]) ycyl(l=85, d=3);
|
|
translate([-1.5,0,15.5]) ycyl(l=85, d=3);
|
|
translate([-1.5,0,28.5]) ycyl(l=85, d=3);
|
|
}
|
|
translate([0,-38.5,7]) xcyl(l=3, d=3.5);
|
|
translate([0,-38.5,20]) xcyl(l=3, d=3.5);
|
|
translate([0,-38.5,33]) xcyl(l=3, d=3.5);
|
|
translate([0,38.5,7]) xcyl(l=3, d=3.5);
|
|
translate([0,38.5,20]) xcyl(l=3, d=3.5);
|
|
translate([0,38.5,33]) xcyl(l=3, d=3.5);
|
|
}
|
|
}
|
|
|
|
color("red") {
|
|
rect_tube(h=3, size=[76,85], wall=7);
|
|
* cuboid([76,85,3]);
|
|
translate([36.5,0,0]) wall();
|
|
translate([-36.5,0,0]) mirror([1,0,0]) wall();
|
|
} |