Trait collision::Bound [] [src]

pub trait Bound<S: BaseFloat + 'static>: Sized + Copy {
    fn relate_plane(self, _: Plane<S>) -> Relation;

    fn relate_clip_space(self, projection: Matrix4<S>) -> Relation { ... }
}

Generic bound.

Required Methods

Classify the spatial relation with a plane.

Provided Methods

Classify the relation with a projection matrix.

Implementors