Function: detectCircleCircleCollision()
detectCircleCircleCollision(
bodyA,bodyB):null|CollisionManifold
Defined in: physics/collision/detect-circle-circle-collision.ts:13
Detects a collision between two circle-shaped bodies.
Parameters
bodyA
The first body, with a CircleShape.
bodyB
The second body, with a CircleShape.
Returns
null | CollisionManifold
A CollisionManifold if the circles overlap, otherwise
null.