// サンプル座標値ファイルの書き出し("wtsv"はタブ区切り書き出し) int file = open("sample3d.txt", "wtsv"); for(int i=0; i<=10; i++){ float x = i; float y = x*x; writeln(file, x, y); } close(file);