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

Method beginContourImpl

core/src/processing/core/PShape.java:648–655  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

646
647
648 protected void beginContourImpl() {
649 if (vertexCodes == null) {
650 vertexCodes = new int[10];
651 } else if (vertexCodes.length == vertexCodeCount) {
652 vertexCodes = PApplet.expand(vertexCodes);
653 }
654 vertexCodes[vertexCodeCount++] = BREAK;
655 }
656
657
658 /**

Callers 1

beginContourMethod · 0.95

Calls 1

expandMethod · 0.95

Tested by

no test coverage detected