(int index1, int index2)
| 248 | |
| 249 | |
| 250 | protected void writeLine(int index1, int index2) { |
| 251 | writer.println("0"); |
| 252 | writer.println("LINE"); |
| 253 | |
| 254 | // write out the layer |
| 255 | writer.println("8"); |
| 256 | writer.println(String.valueOf(currentLayer)); |
| 257 | |
| 258 | write("10", vertices[index1][X]); |
| 259 | write("20", vertices[index1][Y]); |
| 260 | write("30", vertices[index1][Z]); |
| 261 | |
| 262 | write("11", vertices[index2][X]); |
| 263 | write("21", vertices[index2][Y]); |
| 264 | write("31", vertices[index2][Z]); |
| 265 | } |
| 266 | |
| 267 | |
| 268 | /* |