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.

49 lines
1.1 KiB
OpenSCAD

/*
Projet ReprapJeanne
Fixations à chaque bouts des bielles
(les bielles sont des barres de cerf-volant:
des cylindres de 4mm de diam et de 60 cm de long)
github: https://github.com/gnieark/reprapJeanne
wiki https://mail.jeannedhack.org/wicked/display.php?page=reprap_geante
By Gnieark https://blog-du-grouik.tinad.fr
& TranKILLoman
License GNU-GPL V3
*/
$fn=100;
fixation_biellette();
module fixation_biellette(){
difference(){
union(){
difference(){
cylinder(r=10.5,h=10);
translate([-11,0,-0.001]) cube([22,11,11]);
}
translate([-10.5,-0.001,0]) cube([3,3.5,10]);
translate([7.5,-0.001,0]) cube([3,3.5,10]);
translate ([-5,-49,0])cube([10,50,10]);
translate ([4.99,-49,0])cube([4.7,10,10]);
}
union(){
translate([0,0,-0.001]) cylinder(r=7.5,h=15);
//trou de la biellette
translate([0,-49.01,5])
rotate([270,0,0])
cylinder(r=2.3,h=50);
//trou pour l'écrou (serrage)
translate([2.85,-49.01,1.6]) cube([2.7,10,5.7]);
//trou pour vis de serrage
translate([0,-44,5])rotate([0,90,0]) #cylinder(r=1.5,h=10);
//axe
translate([-11,1,5]) rotate([0,90,0]) cylinder(r=1.5,h=23);
}
}
}