[][src]Struct c2::AABB

pub struct AABB(_);

Rectangle with a min vector and a max vector

Implementations

impl AABB[src]

pub fn new<V: Into<Vec2>>(min: V, max: V) -> AABB[src]

Creates a new AABB rectangle

pub fn min(self) -> Vec2[src]

The minimum position

pub fn max(self) -> Vec2[src]

The maximum position

Trait Implementations

impl AdvancedShape for AABB[src]

impl BasicShape for AABB[src]

impl Clone for AABB[src]

impl Copy for AABB[src]

impl Debug for AABB[src]

impl Shape for AABB[src]

Auto Trait Implementations

impl RefUnwindSafe for AABB

impl Send for AABB

impl Sync for AABB

impl Unpin for AABB

impl UnwindSafe for AABB

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.