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

Method vertex

core/src/processing/opengl/PShapeOpenGL.java:1012–1022  ·  view source on GitHub ↗
(float x, float y)

Source from the content-addressed store, hash-verified

1010
1011
1012 @Override
1013 public void vertex(float x, float y) {
1014 if (family == PShape.PATH) {
1015 super.vertex(x, y);
1016 return;
1017 }
1018 vertexImpl(x, y, 0, 0, 0);
1019 if (image != null) {
1020 PGraphics.showWarning(PGraphicsOpenGL.MISSING_UV_TEXCOORDS_ERROR);
1021 }
1022 }
1023
1024
1025 @Override

Callers

nothing calls this directly

Calls 3

vertexImplMethod · 0.95
showWarningMethod · 0.95
vertexMethod · 0.65

Tested by

no test coverage detected