[][src]Trait arcs::algorithms::Bounded

pub trait Bounded<S> {
    fn bounding_box(&self) -> BoundingBox<S>;
}

Calculate an axis-aligned bounding box around the item.

Required methods

fn bounding_box(&self) -> BoundingBox<S>

Calculate the approximate location this object is located in.

Loading content...

Implementations on Foreign Types

impl<'a, S, B> Bounded<S> for &'a B where
    B: Bounded<S> + ?Sized
[src]

impl<S> Bounded<S> for Point2D<f64, S>[src]

Loading content...

Implementors

impl Bounded<DrawingSpace> for Geometry[src]

impl<S> Bounded<S> for Arc<S>[src]

impl<S> Bounded<S> for Line<S>[src]

impl<S> Bounded<S> for BoundingBox<S>[src]

Loading content...