| 507 | //----------------------------------------------------------------------------- |
| 508 | |
| 509 | void Frustum::setTransform( const MatrixF &mat ) |
| 510 | { |
| 511 | mTransform = mat; |
| 512 | mPosition = mTransform.getPosition(); |
| 513 | mDirty = true; |
| 514 | } |
| 515 | |
| 516 | //----------------------------------------------------------------------------- |
| 517 |
nothing calls this directly
no test coverage detected