bevy_math::bounding

Trait Bounded2d

Source
pub trait Bounded2d {
    // Required methods
    fn aabb_2d(&self, isometry: impl Into<Isometry2d>) -> Aabb2d;
    fn bounding_circle(&self, isometry: impl Into<Isometry2d>) -> BoundingCircle;
}
Expand description

A trait with methods that return 2D bounding volumes for a shape.

Required Methods§

Source

fn aabb_2d(&self, isometry: impl Into<Isometry2d>) -> Aabb2d

Get an axis-aligned bounding box for the shape translated and rotated by the given isometry.

Source

fn bounding_circle(&self, isometry: impl Into<Isometry2d>) -> BoundingCircle

Get a bounding circle for the shape translated and rotated by the given isometry.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§