MCPcopy Index your code
hub / github.com/benfry/processing4 / vertexCheck

Method vertexCheck

core/src/processing/core/PGraphics.java:1354–1360  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 1

vertexMethod · 0.95

Calls 1

arraycopyMethod · 0.80

Tested by

no test coverage detected