| 513 | } |
| 514 | |
| 515 | void Matrix::postConcat(const Matrix& mat) { |
| 516 | // check for identity first, so we don't do a needless copy of ourselves |
| 517 | // to ourselves inside setConcat() |
| 518 | if (!mat.isIdentity()) { |
| 519 | this->setConcat(mat, *this); |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | /////////////////////////////////////////////////////////////////////////////// |
| 524 |
no test coverage detected