Registriert seit: 7. Aug 2008
Ort: Brandenburg
1.464 Beiträge
Delphi 12 Athens
|
Re: 3D Koordinaten darstellen
1. Mär 2010, 16:10
Delphi-Quellcode:
sl := TStringList.Create;
sl.Add(Format('%d %d %d', [x, y, z])); // x, y und z sind Ganzzahlen
{oder}
sl.Add(Format('%f %f %f', [x, y, z])); // x, y und z sind Kommazahlen
sl.SaveToFile(AFilename);
Die weiteren Möglichkeiten der Formatfunktion bitte in der Hilfe nachlesen.
|
|
Zitat
|