| 136 | } |
| 137 | |
| 138 | bool Tr2IntSkinnedObject::GetWorldBoundingBox( Vector3& min, Vector3& max ) const |
| 139 | { |
| 140 | if( !GetLocalBoundingBox( min, max ) ) |
| 141 | { |
| 142 | return false; |
| 143 | } |
| 144 | |
| 145 | BoundingBoxTransform( min, max, GetSkinningTransform() ); |
| 146 | |
| 147 | return true; |
| 148 | } |
| 149 | |
| 150 | bool Tr2IntSkinnedObject::IsBoundingBoxReady( void ) const |
| 151 | { |
no test coverage detected