Apply the 3D equivalent of the 2D matrix supplied to the left of this one.
(PMatrix2D left)
| 376 | * Apply the 3D equivalent of the 2D matrix supplied to the left of this one. |
| 377 | */ |
| 378 | public void preApply(PMatrix2D left) { |
| 379 | preApply(left.m00, left.m01, 0, left.m02, |
| 380 | left.m10, left.m11, 0, left.m12, |
| 381 | 0, 0, 1, 0, |
| 382 | 0, 0, 0, 1); |
| 383 | } |
| 384 | |
| 385 | |
| 386 | /** |
no outgoing calls
no test coverage detected