Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
3D-models
/
naaimachine
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Add kabelklem model
master
Wouter Horlings
4 anni fa
parent
db0e11339e
commit
f9f2842a66
1 ha cambiato i file
con
33 aggiunte
e
0 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+33
-0
kabelklem/kabelklem.scad
+ 33
- 0
kabelklem/kabelklem.scad
Vedi File
@@ -0,0 +1,33 @@
$fn = $preview ? 16 : 72;
module test(){
difference(){
cylinder(r=5, h = 4);
cylinder(r=3, h = 4);
}
}
module screw_hole(){
difference(){
cylinder(d=9.34, h=7);
cylinder(d=3.9, h=9);
}
}
difference(){
hull(){
translate([7,0,0])
cylinder(d=9.34, h=7);
translate([-7,0,0])
cylinder(d=9.34, h=7);
}
translate([7,0,0])
cylinder(d=3.9, h=9);
translate([-7,0,0])
cylinder(d=3.9, h=9);
translate([0,0,-4.5])
rotate([90,0,0])
cylinder(r=7,center=true,h=20);
}
Write
Preview
Loading…
Annulla
Salva