(PImage tex)
| 2518 | |
| 2519 | |
| 2520 | public void setTexture(PImage tex) { |
| 2521 | if (openShape) { |
| 2522 | PGraphics.showWarning(INSIDE_BEGIN_END_ERROR, "setTexture()"); |
| 2523 | return; |
| 2524 | } |
| 2525 | |
| 2526 | image = tex; |
| 2527 | } |
| 2528 | |
| 2529 | |
| 2530 | public int getFill(int index) { |
no test coverage detected