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

Method getVertexCodes

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

Source from the content-addressed store, hash-verified

2926
2927
2928 public int[] getVertexCodes() {
2929 if (vertexCodes == null) {
2930 return null;
2931 }
2932 if (vertexCodes.length != vertexCodeCount) {
2933 vertexCodes = PApplet.subset(vertexCodes, 0, vertexCodeCount);
2934 }
2935 return vertexCodes;
2936 }
2937
2938
2939 public int getVertexCodeCount() {

Callers

nothing calls this directly

Calls 1

subsetMethod · 0.95

Tested by

no test coverage detected