Find the intersections between a circle and a circle.
function intersectCircleCircle(
c1: VecLike,
r1: number,
c2: VecLike,
r2: number
): Vec[]
Parameters
Name | Description |
---|
c1
| The first circle's center. |
r1
| The first circle's radius. |
c2
| The second circle's center. |
r2
| The second circle's radius. |
Returns
We use cookies on this website.
Learn more in our Cookie Policy.