[][src]Trait rust_3d::HasBoundingBox2DMaybe

pub trait HasBoundingBox2DMaybe {
    fn bounding_box_maybe(&self) -> Result<BoundingBox2D>;
}

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

Required methods

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

Should return the bounding box if it can be calculated

Loading content...

Implementors

impl HasBoundingBox2DMaybe for BoundingBox2D[src]

impl HasBoundingBox2DMaybe for Box2D[src]

impl HasBoundingBox2DMaybe for Circle[src]

impl HasBoundingBox2DMaybe for FilterBox2D[src]

impl HasBoundingBox2DMaybe for FilterCircle[src]

impl HasBoundingBox2DMaybe for LineSegment2D[src]

impl<P> HasBoundingBox2DMaybe for PointCloud2D<P> where
    P: Is2D
[src]

impl<P> HasBoundingBox2DMaybe for Polygon2D<P> where
    P: Is2D
[src]

impl<T> HasBoundingBox2DMaybe for HasBoundingBox2DConverted<T> where
    T: HasBoundingBox2DMaybe
[src]

Loading content...