Trait BoundingBox

Source
pub trait BoundingBox<T> {
    // Required method
    fn bounding_box(&self) -> BBox<T>;
}

Required Methods§

Source

fn bounding_box(&self) -> BBox<T>

Compute the bounding box of this object.

Implementors§

Source§

impl<M, T: Real> BoundingBox<T> for M
where M: VertexPositions<Element = [T; 3]>,