Trait rhusics::collide::ComputeBound [] [src]

pub trait ComputeBound<B> where
    B: Bound
{ fn compute_bound(&self) -> B; }

Utilities for computing bounding volumes of primitives

Required Methods

Compute the bounding volume

Implementations on Foreign Types

impl<S> ComputeBound<Aabb3<S>> for Cylinder<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Aabb3<S>> for Capsule<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Sphere<S>> for Primitive3<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Sphere<S>> for Capsule<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Aabb3<S>> for Primitive3<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Aabb2<S>> for Primitive2<S> where
    S: BaseFloat
[src]

[src]

impl<S> ComputeBound<Sphere<S>> for Cylinder<S> where
    S: BaseFloat
[src]

[src]

Implementors