30 lines
594 B
OpenSCAD
30 lines
594 B
OpenSCAD
/* */
|
|
|
|
include <BOSL/transforms.scad>
|
|
include <./fan_mount.scad>
|
|
|
|
|
|
|
|
/* [Render Options] */
|
|
render_fs=.4;
|
|
render_fn=0;
|
|
render_fa=.4;
|
|
|
|
// Set Render Options
|
|
$fs= ($preview) ? $fs : render_fs;
|
|
$fn= ($preview) ? $fn : render_fn;
|
|
$fa= ($preview) ? $fa : render_fa;
|
|
|
|
|
|
module print_mount() {
|
|
mesh_mount(bottom=true, top=false, orient=ORIENT_Y, align=V_CENTER);
|
|
}
|
|
|
|
yspread = 65;
|
|
xspread = 66;
|
|
back(yspread)left(xspread) fdm_anchor();
|
|
fwd(yspread)left(xspread) zrot(90) fdm_anchor();
|
|
back(yspread)right(xspread) zrot(-90) fdm_anchor();
|
|
fwd(yspread)right(xspread) zrot(180) fdm_anchor();
|
|
print_mount();
|