@webref shape @see PShape @see PShape#endShape() @see PApplet#loadShape(String)
()
| 1767 | * @see PApplet#loadShape(String) |
| 1768 | */ |
| 1769 | public PShape createShape() { |
| 1770 | // Defaults to GEOMETRY (rather than GROUP like the default constructor) |
| 1771 | // because that's how people will use it within a sketch. |
| 1772 | return createShape(PShape.GEOMETRY); |
| 1773 | } |
| 1774 | |
| 1775 | |
| 1776 | // POINTS, LINES, TRIANGLES, TRIANGLE_FAN, TRIANGLE_STRIP, QUADS, QUAD_STRIP |
nothing calls this directly
no test coverage detected