add sliderright

This commit is contained in:
lukas 2021-08-28 19:19:35 +02:00
parent 7eb0b52c8d
commit be6e100a7f
3 changed files with 26 additions and 0 deletions

View File

@ -8,6 +8,7 @@ Build_STL:
- openscad -o angle_bracket.stl angle_bracket.scad
- openscad -o horizontal_angle_bracket.stl horizontal_angle_bracket.scad
- openscad -o ZMotorHalter.stl ZMotorHalter.scad
- openscad -o SliderRight.stl SliderRight.scad
artifacts:
expire_in: 2 days
paths:

View File

@ -69,4 +69,8 @@ module MainBody() {
// rod holder
translate([BodyWidth, 20,-20 ]) cube([5, 25, 80]);
// 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]]);
}

21
SliderRight.scad Normal file
View File

@ -0,0 +1,21 @@
use <SliderLeft.scad>;
$fn = 100;
M3HoleDiam = 3.4;
MountSize = 40;
BodyWidth = 55;
translate([BodyWidth+5, 0, 0]) mirror([180, 0, 0]) difference() {
MainBody();
M3MountHoles();
xcenter = 49;
ycenter = MountSize/2 - 10;
translate([xcenter, ycenter, -5]) #BottomZRodHoles();
YRodHoles();
// M3 Hole for role
translate([60/2, 45, (50/2) - 5]) rotate([0, 0, -90]) #M3Hole(6);
}