()
| 1387 | |
| 1388 | |
| 1389 | protected void vertexCheck() { |
| 1390 | if (vertexCount == vertices.length) { |
| 1391 | float temp[][] = new float[vertexCount << 1][VERTEX_FIELD_COUNT]; |
| 1392 | System.arraycopy(vertices, 0, temp, 0, vertexCount); |
| 1393 | vertices = temp; |
| 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | |
| 1398 | public void vertex(float x, float y) { |