Trait cgmath::Bound
[−]
[src]
pub trait Bound<S: BaseFloat + 'static>: Sized {
fn relate_plane(&self, &Plane<S>) -> Relation;
fn relate_clip_space(&self, projection: &Matrix4<S>) -> Relation { ... }
}Generic bound.
Required Methods
fn relate_plane(&self, &Plane<S>) -> Relation
Classify the spatial relation with a plane.
Provided Methods
fn relate_clip_space(&self, projection: &Matrix4<S>) -> Relation
Classify the relation with a projection matrix.