Trait meshx::ops::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]>,