------------------------------------------------------------- Description: Sets this projection to a custom projection from a matrix Arguments: mat - the projection transform matrix to be used -------------------------------------------------------------
| 57 | // mat - the projection transform matrix to be used |
| 58 | // ------------------------------------------------------------- |
| 59 | void TriProjection::CustomProjection( const Matrix& mat ) |
| 60 | { |
| 61 | m_projectionType = TRIPROJECTION_CUSTOM; |
| 62 | m_customTransform = mat; |
| 63 | } |
| 64 | |
| 65 | int TriProjection::GetProjectionType() |
| 66 | { |
no outgoing calls
no test coverage detected