diff options
Diffstat (limited to 'body/noctua_nf_a4x20.scad')
| -rw-r--r-- | body/noctua_nf_a4x20.scad | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/body/noctua_nf_a4x20.scad b/body/noctua_nf_a4x20.scad new file mode 100644 index 0000000..87326a9 --- /dev/null +++ b/body/noctua_nf_a4x20.scad @@ -0,0 +1,25 @@ +noctua_nf_a4x20_h = 40; +noctua_nf_a4x20_w = 40; +noctua_nf_a4x20_t = 20; + +module noctua_nf_a4x20() +{ + translate([-noctua_nf_a4x20_w / 2, 0, -noctua_nf_a4x20_w / 2]) + rotate([0, 0, -90]) + scale([2, 1, 1]) + import("Noctua_NF-A4x10_PWM_Fan.STL"); +} + +// some chinese fan, 30x30x8 +module ld3007ms() +{ + w = 30; + h = 30; + t = 8; + + translate([0, -t / 2, 0]) + rotate([90, 0, 0]) + cube([w, h, t], center = true); +} + +//ld3007ms();
\ No newline at end of file |
