pub fn nearest_point_on_curve_newton_raphson<C>(
    curve: &C,
    point: &C::Point
) -> f64where
    C: BezierCurve + BezierCurve2D,
Expand description

Optimises an estimate of a nearest point on a bezier curve using the newton-raphson method