pub fn nearest_point_on_curve_newton_raphson_with_estimate<C>(
    curve: &C,
    point: &C::Point,
    estimated_t: f64
) -> f64where
    C: BezierCurve,
Expand description

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