22 lines
594 B
OpenSCAD
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);
|
|
} |