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.

47 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;
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,-29,0])cube([10,19.7669,10]);
translate ([-5,-29,-4.599])cube([10,10,4.6]);
}
union(){
translate([0,0,-0.001]) cylinder(r=7.5,h=15);
//trou de la biellette
translate([0,-29.01,5])
rotate([270,0,0])
cylinder(r=2.3,h=15);
//trou pour l'écrou (serrage)
translate([-3,-29.01,-1.6]) cube([6,10,2.5]);
//trou pour vis de serrage
translate([0,-24,-6]) cylinder(r=1.5,h=10);
//axe
translate([-11,1,5]) rotate([0,90,0]) cylinder(r=1.5,h=23);
}
}