[][src]Trait mini_math::NearlyEqual

pub trait NearlyEqual {
    fn nearly_equals(self, rhs: Self) -> bool;
}

Compare floating-point values using an epsilon

Required methods

fn nearly_equals(self, rhs: Self) -> bool

Loading content...

Implementations on Foreign Types

impl NearlyEqual for f32[src]

impl<T> NearlyEqual for Option<T> where
    T: NearlyEqual
[src]

Loading content...

Implementors

impl<'_> NearlyEqual for &'_ Matrix[src]

impl<'_> NearlyEqual for &'_ Point[src]

impl<'_> NearlyEqual for &'_ Vector[src]

Loading content...