[][src]Struct batbox::AABB

pub struct AABB<T> {
    pub x_min: T,
    pub x_max: T,
    pub y_min: T,
    pub y_max: T,
}

Axis aligned bounding box.

Fields

x_min: Tx_max: Ty_min: Ty_max: T

Methods

impl<T: UNum> AABB<T>[src]

pub fn bottom_left(&self) -> Vec2<T>[src]

pub fn bottom_right(&self) -> Vec2<T>[src]

pub fn top_left(&self) -> Vec2<T>[src]

pub fn top_right(&self) -> Vec2<T>[src]

pub fn center(&self) -> Vec2<T>[src]

pub fn from_corners(p1: Vec2<T>, p2: Vec2<T>) -> Self[src]

pub fn pos_size(pos: Vec2<T>, size: Vec2<T>) -> Self[src]

pub fn map<U: UNum, F: Fn(T) -> U>(self, f: F) -> AABB<U>[src]

pub fn width(&self) -> T[src]

pub fn height(&self) -> T[src]

Get rect's height.

pub fn size(&self) -> Vec2<T>[src]

Get rect's size.

pub fn contains(&self, point: Vec2<T>) -> bool[src]

Check if a point is inside the rect.

Examples

use batbox::*;
let rect = AABB::from_corners(vec2(1, 2), vec2(3, 4));
assert!(rect.contains(vec2(2, 3)));
assert!(!rect.contains(vec2(5, 5)));

pub fn intersects(&self, other: &Self) -> bool[src]

pub fn translate(self, v: Vec2<T>) -> Self[src]

impl<T: Float> AABB<T>[src]

pub fn distance_to(&self, other: &Self) -> T[src]

Trait Implementations

impl<T: Clone> Clone for AABB<T>[src]

impl<T: Copy> Copy for AABB<T>[src]

impl<T: Debug> Debug for AABB<T>[src]

impl<T: Eq> Eq for AABB<T>[src]

impl<T: PartialEq> PartialEq<AABB<T>> for AABB<T>[src]

impl<T> StructuralEq for AABB<T>[src]

impl<T> StructuralPartialEq for AABB<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for AABB<T> where
    T: RefUnwindSafe

impl<T> Send for AABB<T> where
    T: Send

impl<T> Sync for AABB<T> where
    T: Sync

impl<T> Unpin for AABB<T> where
    T: Unpin

impl<T> UnwindSafe for AABB<T> where
    T: UnwindSafe

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> DynClone for T where
    T: Clone
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,