| 123 | } |
| 124 | |
| 125 | bool Tr2InteriorPlaceable::GetWorldBoundingBox( Vector3& min, Vector3& max ) const |
| 126 | { |
| 127 | // Get the local bounding box min & max |
| 128 | if( !GetLocalBoundingBox( min, max ) ) |
| 129 | { |
| 130 | return false; |
| 131 | } |
| 132 | |
| 133 | BoundingBoxTransform( min, max, m_transform ); |
| 134 | |
| 135 | return true; |
| 136 | } |
| 137 | |
| 138 | bool Tr2InteriorPlaceable::IsBoundingBoxReady( void ) const |
| 139 | { |
nothing calls this directly
no test coverage detected