Called by the following (the shape() command adds the g) PShape s = loadShape("blah.svg"); shape(s);
(PGraphics g)
| 1592 | * shape(s); |
| 1593 | */ |
| 1594 | public void draw(PGraphics g) { |
| 1595 | if (visible) { |
| 1596 | pre(g); |
| 1597 | drawImpl(g); |
| 1598 | post(g); |
| 1599 | } |
| 1600 | } |
| 1601 | |
| 1602 | |
| 1603 | /** |
no test coverage detected