Skip to content

Commit

Permalink
add the tool holder to the hopper
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Borick committed Apr 28, 2022
1 parent 7f7be0a commit e0a8642
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions hopper.scad
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include <util.scad>
include <sizes.scad>
use <tool_holder.scad>

Assembled = 0;
hopper(mode=2);
Expand Down Expand Up @@ -33,11 +34,6 @@ module hopper(mode = 0){
mm_d1 = 30;
mm_distance = 55;


// cone_d1 = 53;
// cone_d2 = 8;
// cone_h = h_h - alu_edge+0.2;

//Cold end fan dimensions
fan_d = 40;
fan_h = 15;
Expand Down Expand Up @@ -97,6 +93,7 @@ module hopper(mode = 0){
}

}

translate([0, h_wall, -h_wall]){
//Cut inner part
difference(){
Expand Down Expand Up @@ -368,9 +365,11 @@ module hopper(mode = 0){
cylinder(d=M3_hole, h=h_wall*1.1, center=true);
}
}


}
}

translate([0,32,-7]){
tool_holder();
}
}

0 comments on commit e0a8642

Please sign in to comment.