Compare commits

..

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

2 changed files with 1 additions and 38 deletions

View File

@ -45,7 +45,7 @@ lever_mount_z = 2;
// case dimensions // case dimensions
frame_x = 183; frame_x = 183;
frame_y = 208; frame_y = 208;
frame_z = 50; // reminder: inside (including mounts) is chopped by top_plate_z for plates frame_z = 45; // reminder: inside (including mounts) is chopped by top_plate_z for plates
top_plate_x = 175; top_plate_x = 175;
top_plate_y = 200; top_plate_y = 200;
top_plate_z = 5; top_plate_z = 5;
@ -288,13 +288,6 @@ module dir_arc_24mm_6_button() {
translate([29.5+26.3+15.5, -65.2, 0]) button_30mm_hole_for_snapins(); translate([29.5+26.3+15.5, -65.2, 0]) button_30mm_hole_for_snapins();
} }
// 6 button plus the normal fourth column for 8 button actually on a third row
module dir_arc_24mm_8_button_compressed() {
dir_arc_24mm_6_button();
translate([29.5+26.3+15.5+9.7+2.6+2.6, 29.4, 0]) button_24mm_hole_for_snapins();
translate([29.5+26.3+15.5+9.7+2.6+26.9+2.6, 40.3, 0]) button_24mm_hole_for_snapins();
}
// Directional Arc (left hand) // Directional Arc (left hand)
module dir_arc_30mm_button_l() { module dir_arc_30mm_button_l() {

View File

@ -1,30 +0,0 @@
/* Copyright Brian Stephan 2023
*
* This file is part of the Buildable Stick System.
*
* The Buildable Stick System is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* The Buildable Stick System is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* the Buildable Stick System. If not, see <https://www.gnu.org/licenses/>.
*/
include <components.scad>
use <top-panel-solo-dir_arc-24mm-6-button.scad>
module dir_arc_plus_w_24mm_8_button_panel() {
difference() {
rotate([0, 0, -90]) topplate_with_raised_overhang();
translate([-top_plate_x+105, -top_plate_y/2+123, 0]) dir_arc_24mm_8_button_compressed();
translate([-34.5, 51, 0]) button_24mm_hole_for_snapins();
}
}
dir_arc_plus_w_24mm_8_button_panel();