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.

23 lines
546 B
OpenSCAD

/*
* ReprapJeanne V2
*
* Fixation des poulies
* le long des axes
*
* NON TERMINE
*
* Copyleft (see license file):
* hackerspace Jeanned'Hack http://www.jeannedhack.org
* Timothee
*
*/
fixationPoulies();
module fixationPoulies(){
difference(){
linear_extrude(height=15)
import (file="profil-axe.dxf", layer="poulies", $fn=100);
translate([0, 69, 7.5])rotate([0, 90, 0]) cylinder(h=35, r=4);
translate([-8, 35, 7.5]) rotate([90, 0, 0]) cylinder(r=1.5, h=35);
translate([43.25, 35, 7.5]) rotate([90, 0, 0]) cylinder(r=1.5, h=35);
}
}