Trait kurbo::ParamCurveNearest[][src]

pub trait ParamCurveNearest {
    fn nearest(&self, p: Point, accuracy: f64) -> Nearest;
}
Expand description

A parametrized curve that reports the nearest point.

Required methods

Find the position on the curve that is nearest to the given point.

This returns a Nearest struct that contains information about the position.

Implementors