• Given two circles (containing a x/y/radius attributes), returns the intersecting points if possible. note: doesn't handle cases where there are infinitely many intersection points (circles are equivalent):, or only one intersection point

    Parameters

    • p1: any
    • p2: any

    Returns ({ x: any; y: number } | { x: number; y: any })[]