Enum ncollide3d::query::Proximity[][src]

pub enum Proximity {
    Intersecting,
    WithinMargin,
    Disjoint,
}

Proximity information.

Variants

The two objects are intersecting.

The two objects are non-intersecting but closer than a given distance.

The two objects are non-intersecting and further than a given distance.

Trait Implementations

impl Debug for Proximity
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Proximity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Proximity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Proximity
[src]

Auto Trait Implementations

impl Send for Proximity

impl Sync for Proximity