DIY_3D_Printer/ZMotorHalter.scad
lukas e94e6b69f5 move holes and helpers into seperate dir
holder for extruder and hexagonal screw mounts
2021-09-09 21:19:54 +02:00

22 lines
594 B
OpenSCAD

use <Motorhalter.scad>;
use <helpers/Holes.scad>;
$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);
translate([r, 6]) rotate([0, -90, -90]) #M4Hole(thickness+1);
translate([r, height-5]) rotate([0, -90, -90]) #M4Hole(thickness+1);
translate([l+(r-l)/2, height/2]) rotate([0, -90, -90]) #M4Hole(thickness+1);
}