[][src]Trait ezcgmath::approx::AbsDiffEq

pub trait AbsDiffEq<Rhs = Self>: PartialEq<Rhs> where
    Rhs: ?Sized
{ type Epsilon; fn default_epsilon() -> Self::Epsilon;
fn abs_diff_eq(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool; fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool { ... } }

Equality that is defined using the absolute difference of two numbers.

Associated Types

type Epsilon

Used for specifying relative comparisons.

Loading content...

Required methods

fn default_epsilon() -> Self::Epsilon

The default tolerance to use when testing values that are close together.

This is used when no epsilon value is supplied to the abs_diff_eq!, relative_eq!, or ulps_eq! macros.

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

A test for equality that uses the absolute difference to compute the approximate equality of two numbers.

Loading content...

Provided methods

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

The inverse of ApproxEq::abs_diff_eq.

Loading content...

Implementations on Foreign Types

impl AbsDiffEq<u16> for u16[src]

type Epsilon = u16

impl AbsDiffEq<u8> for u8[src]

type Epsilon = u8

impl AbsDiffEq<i64> for i64[src]

type Epsilon = i64

impl<'a, T> AbsDiffEq<&'a mut T> for &'a mut T where
    T: AbsDiffEq<T> + ?Sized
[src]

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

impl AbsDiffEq<f64> for f64[src]

type Epsilon = f64

impl AbsDiffEq<usize> for usize[src]

type Epsilon = usize

impl AbsDiffEq<i8> for i8[src]

type Epsilon = i8

impl AbsDiffEq<i32> for i32[src]

type Epsilon = i32

impl AbsDiffEq<u64> for u64[src]

type Epsilon = u64

impl<T> AbsDiffEq<RefCell<T>> for RefCell<T> where
    T: AbsDiffEq<T> + ?Sized
[src]

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

impl<'a, T> AbsDiffEq<&'a T> for &'a T where
    T: AbsDiffEq<T> + ?Sized
[src]

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

impl<A, B> AbsDiffEq<[B]> for [A] where
    A: AbsDiffEq<B>,
    <A as AbsDiffEq<B>>::Epsilon: Clone
[src]

type Epsilon = <A as AbsDiffEq<B>>::Epsilon

impl AbsDiffEq<u32> for u32[src]

type Epsilon = u32

impl AbsDiffEq<i16> for i16[src]

type Epsilon = i16

impl AbsDiffEq<isize> for isize[src]

type Epsilon = isize

impl AbsDiffEq<f32> for f32[src]

type Epsilon = f32

impl<T> AbsDiffEq<Cell<T>> for Cell<T> where
    T: AbsDiffEq<T> + Copy
[src]

type Epsilon = <T as AbsDiffEq<T>>::Epsilon

Loading content...

Implementors

impl AbsDiffEq<Matrix1x3> for Matrix1x3[src]

type Epsilon = Scalar

impl AbsDiffEq<Matrix2x2> for Matrix2x2[src]

type Epsilon = Scalar

impl AbsDiffEq<Matrix3x3> for Matrix3x3[src]

type Epsilon = Scalar

impl AbsDiffEq<Matrix4x4> for Matrix4x4[src]

type Epsilon = Scalar

impl AbsDiffEq<Quaternion> for Quaternion[src]

type Epsilon = Scalar

impl AbsDiffEq<Degrees> for Degrees[src]

type Epsilon = Scalar

impl AbsDiffEq<Radians> for Radians[src]

type Epsilon = Scalar

impl AbsDiffEq<Vector2> for Vector2[src]

type Epsilon = Scalar

impl AbsDiffEq<Vector3> for Vector3[src]

type Epsilon = Scalar

impl AbsDiffEq<Vector4> for Vector4[src]

type Epsilon = Scalar

Loading content...