Compare commits

..

No commits in common. "16d3feadc18e5c7fbe6d755108e6933adf7731a3" and "e51b79a193d4ef635ac6bff7f858fca7a10a844a" have entirely different histories.

6 changed files with 16 additions and 27 deletions

View File

@ -17,12 +17,13 @@
*/ */
include <components.scad> include <components.scad>
use <bottom-panel.scad>
module bottom_panel_solo() { module bottom_panel_concave() {
difference() { difference() {
bottom_plate_with_overhang(); bottom_panel();
translate([0, 0, top_plate_z/2]) cube([top_plate_x*5/6, top_plate_y*5/6, top_plate_z], center=true); translate([0, 0, top_plate_z/2]) cube([top_plate_x*2/3, top_plate_y*2/3, top_plate_z], center=true);
} }
} }
bottom_panel_solo(); bottom_panel_concave();

View File

@ -19,10 +19,7 @@
include <components.scad> include <components.scad>
module bottom_panel() { module bottom_panel() {
difference() {
mirror([0, 0, 1]) topplate(); 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(); bottom_panel();

View File

@ -181,10 +181,6 @@ module base_topplate() {
cube([top_plate_x, top_plate_y, top_plate_z], center=true); 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 // this takes the base_topplate and makes it a small frame, putting a larger top plate
module base_topplate_with_raised_overhang() { module base_topplate_with_raised_overhang() {
// make a frame out of the top plate (and keep the main plate on the center plane) // make a frame out of the top plate (and keep the main plate on the center plane)
@ -196,7 +192,9 @@ 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(); 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();
overhang_plate();
// larger top plate
roundedcube([top_plate_x+25, top_plate_y+25, top_plate_z], center=true, radius=1);
} }
module topplate() { module topplate() {
@ -206,13 +204,6 @@ module topplate() {
} }
} }
module bottom_plate_with_overhang() {
difference() {
overhang_plate();
rotate([180, 0, 0]) top_plate_holes();
}
}
module topplate_with_raised_overhang() { module topplate_with_raised_overhang() {
difference() { difference() {
base_topplate_with_raised_overhang(); base_topplate_with_raised_overhang();
@ -231,8 +222,8 @@ module frame_mount_column() {
cube([20, 20, frame_z], center=true); cube([20, 20, frame_z], center=true);
} }
module side_chopper() { module frame_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); translate([frame_x/2, 0, 0]) cube([8, 2*(frame_y+top_plate_y), 2*(frame_z+top_plate_z)], center=true);
} }
module frame_connection_holes() { module frame_connection_holes() {

View File

@ -22,7 +22,7 @@ module base_left_frame() {
difference() { difference() {
frame(); frame();
// chop the right edge off // chop the right edge off
side_chopper(); frame_side_chopper();
} }
} }

View File

@ -22,8 +22,8 @@ module base_middle_frame() {
difference() { difference() {
frame(); frame();
// chop the left and right edge off // chop the left and right edge off
side_chopper(); frame_side_chopper();
mirror([1, 0, 0]) side_chopper(); mirror([1, 0, 0]) frame_side_chopper();
} }
} }

View File

@ -24,8 +24,8 @@ module solo_frame() {
// neutrik mounts for connector, switches // neutrik mounts for connector, switches
translate([0, (frame_x/2)-2.5, 0]) rotate([90, 0, 0]) neutrik_d_mount(); translate([0, (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(); 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([270, 0, 0]) button_24mm_hole_for_snapins();
// aux button holes // aux button holes
translate([-frame_y/2+2.5, 0, 0]) rotate([0, 0, 270]) translate([-frame_y/2+2.5, 0, 0]) rotate([0, 0, 270])