successful test of the frame relative to the top plate
This commit is contained in:
parent
f7e706c21d
commit
a3b9cab08e
@ -29,6 +29,14 @@ m4_bolt_hex_exterior = 3.5 + hole_tolerance;
|
|||||||
// 24mm button
|
// 24mm button
|
||||||
small_button_radius = 12 + hole_tolerance;
|
small_button_radius = 12 + hole_tolerance;
|
||||||
|
|
||||||
|
// case dimensions
|
||||||
|
frame_x = 185;
|
||||||
|
frame_y = 210;
|
||||||
|
frame_z = 45;
|
||||||
|
top_plate_x = 175;
|
||||||
|
top_plate_y = 200;
|
||||||
|
top_plate_z = 5;
|
||||||
|
|
||||||
/* PARTS */
|
/* PARTS */
|
||||||
|
|
||||||
module m4_hole() {
|
module m4_hole() {
|
||||||
@ -80,7 +88,7 @@ module levermountholes() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
module base_topplate() {
|
module base_topplate() {
|
||||||
cube([175,200,5], center=true);
|
cube([top_plate_x, top_plate_y, top_plate_z], center=true);
|
||||||
}
|
}
|
||||||
|
|
||||||
module topplate() {
|
module topplate() {
|
||||||
@ -106,3 +114,10 @@ module topplate() {
|
|||||||
m4_hole_countersink();
|
m4_hole_countersink();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module frame_panel_surround() {
|
||||||
|
difference() {
|
||||||
|
cube([frame_x, frame_y, top_plate_z], center=true);
|
||||||
|
scale([1, 1, 2]) base_topplate();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user