| 3675 | } |
| 3676 | |
| 3677 | bool EveSpaceObject2::GetWorldBoundingBox( Vector3& min, Vector3& max ) const |
| 3678 | { |
| 3679 | min = m_localAabbMin; |
| 3680 | max = m_localAabbMax; |
| 3681 | BoundingBoxTransform( min, max, m_worldTransform ); |
| 3682 | return true; |
| 3683 | } |
| 3684 | |
| 3685 | bool EveSpaceObject2::IsBoundingBoxReady() const |
| 3686 | { |
nothing calls this directly
no test coverage detected