Struct piet_common::kurbo::Nearest
Expand description
The nearest position on a curve to some point.
This is returned by ParamCurveNearest::nearest
Fields
distance_sq: f64The square of the distance from the nearest position on the curve to the given point.
t: f64The position on the curve of the nearest point, as a parameter.
To resolve this to a Point, use ParamCurve::eval.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Nearest
impl Send for Nearest
impl Sync for Nearest
impl Unpin for Nearest
impl UnwindSafe for Nearest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> RoundFrom<T> for T
impl<T> RoundFrom<T> for T
sourcefn round_from(x: T) -> T
fn round_from(x: T) -> T
Performs the conversion.
sourceimpl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
sourcefn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.