Trait collision::PlaneBound [] [src]

pub trait PlaneBound<S: BaseFloat>: Debug {
    fn relate_plane(&self, _: Plane<S>) -> Relation;

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

Generic 3D bound.

Required Methods

Classify the spatial relation with a plane.

Provided Methods

Classify the relation with a projection matrix.

Implementations on Foreign Types

impl<S: BaseFloat> PlaneBound<S> for Point3<S>
[src]

[src]

[src]

Implementors