You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB
OpenSCAD

6 years ago
difference(){
6 years ago
union(){
6 years ago
linear_extrude (height=3)
import (file="chassis.dxf", layer="chassis", $fn=100);
6 years ago
//pates de fixation des moteurs
6 years ago
translate ([0,0,2.99])
linear_extrude (height=25)
6 years ago
import (file="chassis.dxf", layer="chassis-fixation-moteur", $fn=100);
//fixation 3ème roue
hull(){
translate ([0,0,2.99])
linear_extrude (height=1)
import (file="chassis.dxf", layer="3emeRoueG", $fn=100);
translate ([18.5,-26,23])
sphere(r=1.5, $fn=50);
}
hull(){
translate ([0,0,2.99])
linear_extrude (height=1)
import (file="chassis.dxf", layer="3emeRoueD", $fn=100);
translate ([31.5,-26,23])
sphere(r=1.5, $fn=50);
}
6 years ago
}
6 years ago
6 years ago
union(){
6 years ago
//trous pour les vis
6 years ago
translate([-50,38.8,5.5])
6 years ago
rotate([0,90,0])
cylinder(h = 150, r1 = 1.5, r2 = 1.5, center = true/false, $fn=100);
6 years ago
translate([-50,38.8, 23])
6 years ago
rotate([0,90,0])
cylinder(h = 150, r1 = 1.5, r2 = 1.5, center = true/false, $fn=100);
6 years ago
//14.25
translate([-50,-26, 18])
rotate([0,90,0])
cylinder(h = 150, r1 = 1.5, r2 = 1.5, center = true/false, $fn=100);
6 years ago
}
6 years ago
6 years ago
}