Náhradní rozeta pro pohon
Napsal: 02.08.2019 13:40
Kolegovi se podařilo poškodit org. plastové kolečko s ocelovou vložkou, tak jsem mu udělal náhradní
(ocelovou vložku musíte nahřát a vložit do hotového výtisku).
Kovová náhrada (je to s nějaké slitiny hliníku cena s poštovným cca 1500 KČ.)
https://eshop.hanoka.cz/hanoka/eshop/17 ... GENIUS-CMS
Možná by to šlo vytisknout jako jeden kus , ale já to radši udělal jako skládačku.
Slíbené foto:
(ocelovou vložku musíte nahřát a vložit do hotového výtisku).
Kovová náhrada (je to s nějaké slitiny hliníku cena s poštovným cca 1500 KČ.)
https://eshop.hanoka.cz/hanoka/eshop/17 ... GENIUS-CMS
Možná by to šlo vytisknout jako jeden kus , ale já to radši udělal jako skládačku.
Slíbené foto:
- Kód: Vybrat vše
$fn=60;
module zakladV(){
difference (){
union(){
cylinder (d=54,h=5,center=true);
translate ([0,0,1])cylinder (d=54,h=5,center=true);
}
cylinder (d=23,h=7,center=true);
cube([40,5,7],center=true);
cylinder (d=23,h=7,center=true);
cube([5,40,7],center=true);
}}
module zub (){
hull (){
translate ([27,0,0]) cube([0.1,4,5],center=true);
translate ([29,0,0]) cube([1,3.5,5],center=true);
translate ([32,0,0]) cube([0.1,1.8,5],center=true);
}}
module velke (){
zakladV();
for (a=[0:12:360]){
rotate ([0,0,a]) zub();
}}
module male (){
difference (){
union(){
cylinder (d=54,h=3.5,center=true);
translate ([0,0,4]) cylinder (d=36,h=5,center=true);
translate ([0,0,9.5])cube([39.5,4.5,6],center=true);
translate ([0,0,9.5]) cube([4.5,39.5,6],center=true);
translate ([0,0,7.75])cylinder (d=23,h=19,center=true);
}
for (a=[0:30:360]){
rotate ([0,0,a])
translate ([26,0,0]) cylinder (d=10,h=5,center=true);
}
cylinder (d=17,h=50,center=true);
for (a=[15:30:360]){
rotate ([0,13,a])
translate ([28,0,8]) cube ([15,10,2],center=true);
}
for (a=[15:30:360]){
rotate ([0,-13,a])
translate ([28,0,-8]) cube ([15,10,2],center=true);
}
for (a=[0:30:360]){
rotate ([0,0,a])
translate ([28,0,0]) cylinder (d=12,h=5,center=true);
}}}
module nahled (){
translate ([0,0,10])rotate ([0,180,0]) velke ();
male ();
}
//male ();
//velke ();
nahled();