(PShape shape)
| 185 | |
| 186 | |
| 187 | @Override |
| 188 | public void shape(PShape shape) { |
| 189 | if (shape.is2D()) { |
| 190 | super.shape(shape); |
| 191 | } else { |
| 192 | showWarning("The shape object is not 2D, cannot be displayed with " + |
| 193 | "this renderer"); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | |
| 198 | @Override |
nothing calls this directly
no test coverage detected