Trait euclid::approxeq::ApproxEq

source ·
pub trait ApproxEq<Eps> {
    fn approx_epsilon() -> Eps;
    fn approx_eq(&self, other: &Self) -> bool;
    fn approx_eq_eps(&self, other: &Self, approx_epsilon: &Eps) -> bool;
}
Expand description

Trait for testing approximate equality

Required Methods

Implementations on Foreign Types

Implementors