(float x, float y)
| 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 |
nothing calls this directly
no test coverage detected