pub trait SearchNearestParameter<Dim>where
    Dim: SPDimension,
{ type Point; fn search_nearest_parameter<H>(
        &self,
        point: Self::Point,
        hint: H,
        trial: usize
    ) -> Option<<Dim as SPDimension>::Parameter>
    where
        H: Into<<Dim as SPDimension>::Hint>
; }
Expand description

Search parameter t such that self.subs(t) is nearest point.

Required Associated Types§

point

Required Methods§

Search nearest parameter t such that self.subs(t) is nearest point.
Returns None if could not find such parameter.

Implementations on Foreign Types§

Implementors§

Only derive from leading curve. Not precise.