import tool.Graph3D; import Math; // Open the coordinate data file "test.txt" in tab-separated read mode int inputFileID = open("test.txt", READ_TSV); // Open a temporary file to write the transformed coordinate data in tab-separated format int outputFileID = open("test_temp_converted.txt", WRITE_TSV); // Get the number of lines in the file int lineN = countln(inputFileID); // Loop through each line in the file for( int i=0; i