(PMatrix source)
| 3272 | |
| 3273 | |
| 3274 | public void applyMatrix(PMatrix source) { |
| 3275 | if (source instanceof PMatrix2D) { |
| 3276 | applyMatrix((PMatrix2D) source); |
| 3277 | } else if (source instanceof PMatrix3D) { |
| 3278 | applyMatrix((PMatrix3D) source); |
| 3279 | } |
| 3280 | } |
| 3281 | |
| 3282 | |
| 3283 | public void applyMatrix(PMatrix2D source) { |
no test coverage detected