DIY_3D_Printer/SliderLeft.scad

74 lines
2.2 KiB
OpenSCAD
Raw Permalink Normal View History

2021-08-27 20:32:05 +00:00
use <Motorhalter.scad>;
use <helpers/Holes.scad>;
2021-02-26 17:33:03 +00:00
MountSize = 40;
2021-08-27 20:32:05 +00:00
BodyWidth = 55;
2021-02-26 17:33:03 +00:00
$fn = 100;
difference() {
MainBody();
M3MountHoles();
2021-08-28 15:45:11 +00:00
xcenter = 49;
ycenter = MountSize/2 - 10;
translate([xcenter, ycenter, -5]) #BottomZRodHoles();
2021-08-27 20:32:05 +00:00
YRodHoles();
translate([10, 45, 0]) rotate([0, 0, -90]) #motorholes(6);
2021-02-26 17:33:03 +00:00
}
module M3MountHoles(){
edgeDistance = (MountSize-20)/2;
2021-08-27 20:32:05 +00:00
translate([0, edgeDistance, edgeDistance]) #M3Hole(6);
translate([0, MountSize-edgeDistance, edgeDistance]) #M3Hole(6);
translate([0, edgeDistance, MountSize-edgeDistance]) #M3Hole(6);
translate([0, MountSize-edgeDistance, MountSize-edgeDistance]) #M3Hole(6);
2021-02-26 17:33:03 +00:00
}
2021-02-27 17:05:26 +00:00
module BottomZRodHoles(){
holedistance = 10.6;
2021-08-28 15:45:11 +00:00
translate([holedistance/2, holedistance/2, 0]) rotate([0,270,0]) M3Hole(6);
translate([-holedistance/2, holedistance/2, 0]) rotate([0,270,0]) M3Hole(6);
translate([holedistance/2, -holedistance/2, 0]) rotate([0,270,0]) M3Hole(6);
translate([-holedistance/2, -holedistance/2, 0]) rotate([0,270,0]) M3Hole(6);
2021-02-27 17:05:26 +00:00
// center hole
2021-08-28 15:45:11 +00:00
cylinder(h = 6, d = 10.3);
2021-08-27 20:32:05 +00:00
}
module YRodHoles(){
translate([55, 30, 52.5]) rotate([0, 90, 0]) #cylinder(h = 6, d = 8);
translate([55, 30, -12.5]) rotate([0, 90, 0]) #cylinder(h = 6, d = 8);
2021-08-28 15:45:11 +00:00
translate([55, 25, 10]) #union() {
// create the ovale hole with the hull of two holes
hull() {
translate([0, 5, 0]) rotate([0, 90, 0]) cylinder(h = 6, d = 10);
translate([0, 5, 20]) rotate([0, 90, 0]) cylinder(h = 6, d = 10);
}
2021-08-27 20:32:05 +00:00
}
2021-02-27 17:05:26 +00:00
}
2021-02-26 17:33:03 +00:00
module MainBody() {
// left mount plate
2021-08-27 20:32:05 +00:00
translate([0,0,-5]) cube([5, MountSize, MountSize+10]);
2021-02-26 17:33:03 +00:00
// bottom frame plate
2021-08-27 20:32:05 +00:00
translate([5, 0,-5 ]) cube([BodyWidth, MountSize, 5]);
// up frame plate
translate([5, 20,40 ]) cube([BodyWidth, 20, 3]);
2021-02-26 17:33:03 +00:00
// motorholder plate
2021-08-27 20:32:05 +00:00
translate([0, MountSize,-5 ]) cube([40+20, 5, 50]);
2021-02-27 17:05:26 +00:00
2021-08-27 20:32:05 +00:00
// rod holder
translate([BodyWidth, 20,-20 ]) cube([5, 25, 80]);
2021-08-28 17:19:35 +00:00
// stabilizetriangle
translate([BodyWidth, MountSize, 45]) rotate([90, 0, 180]) linear_extrude(5) polygon([[0, 0], [0, 15], [20, 0]]);
translate([BodyWidth, MountSize + 5, -5]) rotate([-90, 0, 180]) linear_extrude(5) polygon([[0, 0], [0, 15], [20, 0]]);
2021-02-26 17:33:03 +00:00
}