Trait HasBoundingBox3DMaybe

Source
pub trait HasBoundingBox3DMaybe {
    // Required method
    fn bounding_box_maybe(&self) -> Result<BoundingBox3D>;
}
Expand description

HasBoundingBox3DMaybe is a trait for types which might have a bounding box

Required Methods§

Source

fn bounding_box_maybe(&self) -> Result<BoundingBox3D>

Should return the bounding box if it can be calculated

Implementors§