MCPcopy Index your code
hub / github.com/processing/processing / vertexCheck

Method vertexCheck

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

Source from the content-addressed store, hash-verified

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

Callers 1

vertexMethod · 0.95

Calls 1

arraycopyMethod · 0.80

Tested by

no test coverage detected