[][src]Trait collision::MinMax

pub trait MinMax {
    fn min(a: Self, b: Self) -> Self;
fn max(a: Self, b: Self) -> Self; }

Compute the minimum/maximum of the given values

Required methods

fn min(a: Self, b: Self) -> Self

Compute the minimum

fn max(a: Self, b: Self) -> Self

Compute the maximum

Loading content...

Implementations on Foreign Types

impl<S: PartialOrd> MinMax for Point2<S> where
    S: BaseNum
[src]

impl<S: PartialOrd> MinMax for Point3<S> where
    S: BaseNum
[src]

Loading content...

Implementors

Loading content...