Build out more frame supports
This commit is contained in:
@@ -3,7 +3,7 @@ $fn=16*2;
|
|||||||
thinkness=1.6;
|
thinkness=1.6;
|
||||||
width=208.5;
|
width=208.5;
|
||||||
depth=70.5;
|
depth=70.5;
|
||||||
height=10;
|
height=8;
|
||||||
|
|
||||||
// outer display frame
|
// outer display frame
|
||||||
difference(){
|
difference(){
|
||||||
@@ -25,15 +25,36 @@ translate([thinkness, thinkness, 1.5]){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// mount supports
|
// mount supports
|
||||||
translate([30, 0, 10])
|
translate([31+thinkness, 0, 10])
|
||||||
mount_support();
|
mount_support();
|
||||||
|
|
||||||
|
translate([145+thinkness, 0, 12])
|
||||||
|
mount_support();
|
||||||
|
|
||||||
|
// usb floor support
|
||||||
|
translate([0, (depth+(thinkness*2))/2-5, height])
|
||||||
|
cube([32.6, 10, thinkness]);
|
||||||
|
|
||||||
|
translate([31, (depth+(thinkness*2))/2-5, height])
|
||||||
|
cube([thinkness, 10, 3.6]);
|
||||||
|
|
||||||
module mount_support(){
|
module mount_support(){
|
||||||
|
hole=6;
|
||||||
|
offset=5.6+thinkness;
|
||||||
|
width=10;
|
||||||
|
|
||||||
|
translate([0, 0, -4])
|
||||||
|
cube([10, thinkness, 4]);
|
||||||
|
|
||||||
|
translate([0, depth+thinkness, -4])
|
||||||
|
cube([10, thinkness, 4]);
|
||||||
|
|
||||||
difference(){
|
difference(){
|
||||||
cube([10, depth+(thinkness*2), thinkness]);
|
cube([width, depth+(thinkness*2), thinkness]);
|
||||||
translate([5, 5, 0])
|
translate([width/2, offset, 0])
|
||||||
cylinder(h=2, d=6);
|
cylinder(h=thinkness, d=hole);
|
||||||
translate([5, depth+(thinkness*2)-5, 0])
|
translate([width/2, depth+(thinkness*2)-offset, 0])
|
||||||
cylinder(h=2, d=6);
|
cylinder(h=thinkness, d=hole);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user