(PMatrix source)
| 3362 | |
| 3363 | |
| 3364 | public void applyMatrix(PMatrix source) { |
| 3365 | if (source instanceof PMatrix2D) { |
| 3366 | applyMatrix((PMatrix2D) source); |
| 3367 | } else if (source instanceof PMatrix3D) { |
| 3368 | applyMatrix((PMatrix3D) source); |
| 3369 | } |
| 3370 | } |
| 3371 | |
| 3372 | |
| 3373 | public void applyMatrix(PMatrix2D source) { |
no test coverage detected