()
| 1352 | |
| 1353 | |
| 1354 | protected void vertexCheck() { |
| 1355 | if (vertexCount == vertices.length) { |
| 1356 | float[][] temp = new float[vertexCount << 1][VERTEX_FIELD_COUNT]; |
| 1357 | System.arraycopy(vertices, 0, temp, 0, vertexCount); |
| 1358 | vertices = temp; |
| 1359 | } |
| 1360 | } |
| 1361 | |
| 1362 | |
| 1363 | public void vertex(float x, float y) { |