-------------------------------------------------------------------------------- Description: GetBoundingSphere. See EveSpaceObject2 --------------------------------------------------------------------------------
| 799 | // GetBoundingSphere. See EveSpaceObject2 |
| 800 | // -------------------------------------------------------------------------------- |
| 801 | bool EveSwarm::GetBoundingSphere( Vector4& sphere, BoundingSphereQuery query ) const |
| 802 | { |
| 803 | Vector4 s; |
| 804 | EveShip2::GetBoundingSphere( s, query ); |
| 805 | BoundingSphereFromBox( sphere, m_squadBoundsMin, m_squadBoundsMax ); |
| 806 | sphere.w += s.w; |
| 807 | return true; |
| 808 | } |
| 809 | |
| 810 | // -------------------------------------------------------------------------------- |
| 811 | // Description: |
no test coverage detected