pub fn search_parameter2d<S>(
    surface: &S,
    point: Point2<f64>,
    hint: (f64, f64),
    trials: usize
) -> Option<(f64, f64)>where
    S: ParametricSurface<Point = Point2<f64>, Vector = Vector2<f64>>,
Expand description

Searches the parameter by Newton’s method.