Initial Import

Printed Version 1.0
This commit is contained in:
2024-03-02 20:25:27 -05:00
commit 570118d6c2
3 changed files with 234 additions and 0 deletions

26
part_mount.scad Normal file
View File

@@ -0,0 +1,26 @@
/* */
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);
}
back((260+5)/4)left((131+5)/2) fdm_anchor();
fwd((260+5)/4)left((131+5)/2) zrot(90) fdm_anchor();
back((260+5)/4)right((131+5)/2) zrot(-90) fdm_anchor();
fwd((260+5)/4)right((131+5)/2) zrot(180) fdm_anchor();
print_mount();