Compare commits
5 Commits
e51b79a193
...
16d3feadc1
Author | SHA1 | Date | |
---|---|---|---|
16d3feadc1 | |||
1db6577f75 | |||
cd5cd422e5 | |||
652653180e | |||
73e93d4536 |
@ -17,13 +17,12 @@
|
||||
*/
|
||||
|
||||
include <components.scad>
|
||||
use <bottom-panel.scad>
|
||||
|
||||
module bottom_panel_concave() {
|
||||
module bottom_panel_solo() {
|
||||
difference() {
|
||||
bottom_panel();
|
||||
translate([0, 0, top_plate_z/2]) cube([top_plate_x*2/3, top_plate_y*2/3, top_plate_z], center=true);
|
||||
bottom_plate_with_overhang();
|
||||
translate([0, 0, top_plate_z/2]) cube([top_plate_x*5/6, top_plate_y*5/6, top_plate_z], center=true);
|
||||
}
|
||||
}
|
||||
|
||||
bottom_panel_concave();
|
||||
bottom_panel_solo();
|
@ -19,7 +19,10 @@
|
||||
include <components.scad>
|
||||
|
||||
module bottom_panel() {
|
||||
mirror([0, 0, 1]) topplate();
|
||||
difference() {
|
||||
mirror([0, 0, 1]) topplate();
|
||||
translate([0, 0, top_plate_z/2]) cube([top_plate_x*5/6, top_plate_y*5/6, top_plate_z], center=true);
|
||||
}
|
||||
}
|
||||
|
||||
bottom_panel();
|
||||
|
@ -181,6 +181,10 @@ module base_topplate() {
|
||||
cube([top_plate_x, top_plate_y, top_plate_z], center=true);
|
||||
}
|
||||
|
||||
module overhang_plate() {
|
||||
roundedcube([top_plate_x+25, top_plate_y+25, top_plate_z], center=true, radius=1);
|
||||
}
|
||||
|
||||
// this takes the base_topplate and makes it a small frame, putting a larger top plate
|
||||
module base_topplate_with_raised_overhang() {
|
||||
// make a frame out of the top plate (and keep the main plate on the center plane)
|
||||
@ -192,9 +196,7 @@ module base_topplate_with_raised_overhang() {
|
||||
translate([-((top_plate_x/2)-10), (top_plate_y/2)-10, -2.5]) resize([0, 0, 10]) frame_mount_column();
|
||||
translate([(top_plate_x/2)-10, -((top_plate_y/2)-10), -2.5]) resize([0, 0, 10]) frame_mount_column();
|
||||
translate([-((top_plate_x/2)-10), -((top_plate_y/2)-10), -2.5]) resize([0, 0, 10]) frame_mount_column();
|
||||
|
||||
// larger top plate
|
||||
roundedcube([top_plate_x+25, top_plate_y+25, top_plate_z], center=true, radius=1);
|
||||
overhang_plate();
|
||||
}
|
||||
|
||||
module topplate() {
|
||||
@ -204,6 +206,13 @@ module topplate() {
|
||||
}
|
||||
}
|
||||
|
||||
module bottom_plate_with_overhang() {
|
||||
difference() {
|
||||
overhang_plate();
|
||||
rotate([180, 0, 0]) top_plate_holes();
|
||||
}
|
||||
}
|
||||
|
||||
module topplate_with_raised_overhang() {
|
||||
difference() {
|
||||
base_topplate_with_raised_overhang();
|
||||
@ -222,8 +231,8 @@ module frame_mount_column() {
|
||||
cube([20, 20, frame_z], center=true);
|
||||
}
|
||||
|
||||
module frame_side_chopper() {
|
||||
translate([frame_x/2, 0, 0]) cube([8, 2*(frame_y+top_plate_y), 2*(frame_z+top_plate_z)], center=true);
|
||||
module side_chopper() {
|
||||
translate([frame_x/2+4, 0, 0]) cube([16, 2*(frame_y+top_plate_y), 2*(frame_z+top_plate_z)], center=true);
|
||||
}
|
||||
|
||||
module frame_connection_holes() {
|
||||
|
@ -22,7 +22,7 @@ module base_left_frame() {
|
||||
difference() {
|
||||
frame();
|
||||
// chop the right edge off
|
||||
frame_side_chopper();
|
||||
side_chopper();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -22,8 +22,8 @@ module base_middle_frame() {
|
||||
difference() {
|
||||
frame();
|
||||
// chop the left and right edge off
|
||||
frame_side_chopper();
|
||||
mirror([1, 0, 0]) frame_side_chopper();
|
||||
side_chopper();
|
||||
mirror([1, 0, 0]) side_chopper();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -24,8 +24,8 @@ module solo_frame() {
|
||||
|
||||
// neutrik mounts for connector, switches
|
||||
translate([0, (frame_x/2)-2.5, 0]) rotate([90, 0, 0]) neutrik_d_mount();
|
||||
translate([-40, (frame_x/2)-2.5, 0]) rotate([270, 0, 0]) button_24mm_hole_for_snapins();
|
||||
translate([40, (frame_x/2)-2.5, 0]) rotate([270, 0, 0]) button_24mm_hole_for_snapins();
|
||||
translate([-40, (frame_x/2)-2.5, 0]) rotate([90, 0, 0]) neutrik_d_mount();
|
||||
translate([40, (frame_x/2)-2.5, 0]) rotate([90, 0, 0]) neutrik_d_mount();
|
||||
|
||||
// aux button holes
|
||||
translate([-frame_y/2+2.5, 0, 0]) rotate([0, 0, 270])
|
||||
|
Loading…
x
Reference in New Issue
Block a user