(PImage tex)
| 597 | } |
| 598 | |
| 599 | public void texture(PImage tex) { |
| 600 | if (!openShape) { |
| 601 | PGraphics.showWarning(OUTSIDE_BEGIN_END_ERROR, "texture()"); |
| 602 | return; |
| 603 | } |
| 604 | |
| 605 | image = tex; |
| 606 | } |
| 607 | |
| 608 | public void noTexture() { |
| 609 | if (!openShape) { |
no test coverage detected