| 439 | } |
| 440 | |
| 441 | bool CircleIntersects(const Vector3& circle0, const Vector3& circle1) |
| 442 | { |
| 443 | return (sqrt(SQUARE(circle1.x - circle0.x) + SQUARE(circle1.y - circle0.y)) <= (circle0.z + circle1.z)); |
| 444 | } |
| 445 | } |
no outgoing calls
no test coverage detected