Trait bevy_math::bounding::Bounded2d

source ·
pub trait Bounded2d {
    // Required methods
    fn aabb_2d(&self, translation: Vec2, rotation: impl Into<Rot2>) -> Aabb2d;
    fn bounding_circle(
        &self,
        translation: Vec2,
        rotation: impl Into<Rot2>,
    ) -> BoundingCircle;
}
Expand description

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

Required Methods§

source

fn aabb_2d(&self, translation: Vec2, rotation: impl Into<Rot2>) -> Aabb2d

Get an axis-aligned bounding box for the shape with the given translation and rotation. The rotation is in radians, counterclockwise, with 0 meaning no rotation.

source

fn bounding_circle( &self, translation: Vec2, rotation: impl Into<Rot2>, ) -> BoundingCircle

Get a bounding circle for the shape The rotation is in radians, counterclockwise, with 0 meaning no rotation.

Object Safety§

This trait is not object safe.

Implementors§