<static> intersects(a, b) → {boolean}
Determines whether the two Circle objects intersect.
This method checks the radius distances between the two Circle objects to see if they intersect.
Parameters
Name | Type | Description |
---|---|---|
a | Phaser.Circle | The first Circle object. |
b | Phaser.Circle | The second Circle object. |
Returns
boolean -
A value of true if the specified object intersects with this Circle object; otherwise false.
- Source code: geom/Circle.js (Line 496)
Please login to continue.