forked from prusa3d/Original-Prusa-i3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fan nozzle designed, new stl of extruder body and modified air path on extruder cover + mount for nozzle
- Loading branch information
michalprusa
committed
Apr 17, 2016
1 parent
8252fc1
commit c175e83
Showing
5 changed files
with
36,259 additions
and
33,785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module fan_nozzle(){ | ||
|
||
difference(){ | ||
cube([35,10,17]); // Main cube | ||
|
||
// Mounting screw | ||
translate([30,5,-1])cylinder(r=3.2/2,h = 14.5-0.2, $fn=15); // Screw cut | ||
translate([30,5,17-3.5])cylinder(r=3.1,h = 20, $fn=15); // head cut | ||
|
||
// Fan entry hole | ||
translate([1,10-1.5,-1])cube([20,3,16.5]); | ||
translate([-1,10-1.5,-1-5])cube([20,3,16.5]); | ||
|
||
// Airway cutout | ||
difference(){ | ||
translate([1,1,-1])cube([25,8,16.5]); | ||
translate([0,0,10])rotate([45,0,0])cube([30,8,16.5]); | ||
translate([-1,-10,-1])rotate([0,0,45])cube([10,8,30]); | ||
} | ||
|
||
|
||
|
||
} | ||
|
||
|
||
} | ||
|
||
fan_nozzle(); |
Oops, something went wrong.