Trait cgmath::ApproxEq [] [src]

pub trait ApproxEq: Sized {
    type Epsilon: NumCast + Float;
    fn approx_eq_eps(&self, other: &Self, epsilon: &Self::Epsilon) -> bool;

    fn approx_epsilon() -> Self::Epsilon { ... }
    fn approx_eq(&self, other: &Self) -> bool { ... }
}

Associated Types

type Epsilon: NumCast + Float

Required Methods

fn approx_eq_eps(&self, other: &Self, epsilon: &Self::Epsilon) -> bool

Provided Methods

fn approx_epsilon() -> Self::Epsilon

fn approx_eq(&self, other: &Self) -> bool

Implementors