DIY_3D_Printer/ZMotorHalter.scad

22 lines
594 B
OpenSCAD
Raw Permalink Normal View History

2021-08-28 15:45:11 +00:00
use <Motorhalter.scad>;
use <helpers/Holes.scad>;
2021-08-28 15:45:11 +00:00
$fn = 50;
height = 42.1;
thickness = 4;
difference() {
cube([70, height, thickness]);
rotate([0, -90, -90]) #motorholes(thickness+1);
l = 47;
r = 64;
translate([l, 6]) rotate([0, -90, -90]) #M4Hole(thickness+1);
translate([l, height-5]) rotate([0, -90, -90]) #M4Hole(thickness+1);
2021-08-28 15:45:11 +00:00
translate([r, 6]) rotate([0, -90, -90]) #M4Hole(thickness+1);
translate([r, height-5]) rotate([0, -90, -90]) #M4Hole(thickness+1);
2021-08-28 15:45:11 +00:00
translate([l+(r-l)/2, height/2]) rotate([0, -90, -90]) #M4Hole(thickness+1);
2021-08-28 15:45:11 +00:00
}