Skip to content

Commit

Permalink
headphone_holder: Add more supports
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjili committed Jan 3, 2021
1 parent 126b026 commit 81434eb
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion headphone_holder/headphone_holder.scad
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ table_height = 25;

gripper_width = table_height*1.5;
gripper_length = table_height*2;
gripper_thickness = 4;
gripper_thickness = 5;

holder_height = 30;
holder_width = gripper_length/2;
Expand Down Expand Up @@ -83,6 +83,22 @@ rotate(180,[0,0,1]) {
Support();
}

// support
module BackSupport() {
rotate(90,[0,0,1]) {
translate([-2*holder_width/3,0,-table_height/2-holder_height/4]) {
rotate(45,[0,1,0]) {
cube([holder_height/1.5, holder_thickness, holder_thickness*1.5], center=true);
}
}
}
}

difference() {
BackSupport();
Table();
}

// holder
translate([0,0,-table_height/2-gripper_thickness-holder_height/2]) {
rotate(90,[0,0,1]) {
Expand Down

0 comments on commit 81434eb

Please sign in to comment.