Änderungen

Aus Hackerspace Ffm
Wechseln zu: Navigation, Suche

Zen Toolworks CNC Fräse

708 Byte hinzugefügt, 21:02, 28. Dez. 2011
+Kissen / Gußform Test
Datei:2011-12-24 00.31.40.jpg|Tests incl. Prusa Air Teil
</gallery>
 
 
=== Kissen / Gußform Test ===
[[Datei:Bildschirmfoto-Kissen ngc.png|320px|none|thumb|Kissen-Form in EMC]]
* Fräsen einer Kissen-Form in Schaustoff
* Erstellen des G-Code mit Processing als Überlagerung von zwei Sinus-Funktionen für die Z-Achse ("Tiefe")
* Anwendung: Guß-Vorlage für Lautsprecher-Boxen
 
<nowiki>[...]
for (float iy=0; iy <= my; iy += w) {
s.add(new String("G00 Z" + fpp(h_save)));
s.add(new String("G00 X0 Y" + fpp(iy)));
float ky = sin((iy / my) * pi);
for (float ix=0; ix <= mx; ix += w) {
float kx = sin((ix / mx) * pi);
z = h1 * kx * ky;
s.add(new String("G01 X" + fpp(ix) + " Z" + fpp(z) + " F" + fpp(f)));
}
}
[...]</nowiki>
[[Kategorie:Projekte]]
1.383
Bearbeitungen