pub fn curve_intersects_curve_clip<'a, C: BezierCurve>(
    curve1: &'a C,
    curve2: &'a C,
    accuracy: f64
) -> SmallVec<[(f64, f64); 8]>where
    C::Point: 'a + Coordinate2D,
Expand description

Determines the points at which two curves intersect using the Bezier clipping algorihtm