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§
Sourcefn bounding_box_maybe(&self) -> Result<BoundingBox3D>
fn bounding_box_maybe(&self) -> Result<BoundingBox3D>
Should return the bounding box if it can be calculated