Add steering part of rc-car

This commit is contained in:
Michal Szczepanski 2020-03-31 00:49:19 +02:00
parent bcd2f01d94
commit dc5c2669ca
2 changed files with 31 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# lets ignore slt and gcode models
*.stl
*.gcode

View File

@ -0,0 +1,28 @@
translate([0,0,0]) {
// cube([4.5,4.5,38], center=true);
// cylinder(10);
// circle(r = 10);
}
translate([0,0,-2]) {
union() {
difference() {
cylinder( d = 10, h = 4);
cylinder( d = 6, h = 4);
}
}
}
translate([14,0,0]) {
cube([20,4,4], center=true);
}
rotate([90,0,0]) {
translate([27,0,-2]) {
union() {
difference() {
cylinder( d = 10, h = 4);
cylinder( d = 6, h = 4);
}
}
}
}