[]Struct geng::prelude::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

Implementations

impl<T> AABB<T> where
    T: UNum

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

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

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

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

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

pub fn from_corners(p1: Vec2<T>, p2: Vec2<T>) -> AABB<T>

pub fn pos_size(pos: Vec2<T>, size: Vec2<T>) -> AABB<T>

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

pub fn width(&self) -> T

pub fn height(&self) -> T

Get rect's height.

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

Get rect's size.

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

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: &AABB<T>) -> bool

pub fn translate(self, v: Vec2<T>) -> AABB<T>

pub fn points(&self) -> impl Iterator<Item = Vec2<T>> where
    Range<T>: Iterator,
    <Range<T> as Iterator>::Item == T, 

impl<T> AABB<T> where
    T: Float

pub fn distance_to(&self, other: &AABB<T>) -> T

Trait Implementations

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

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

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

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

impl<T> PartialEq<AABB<T>> for AABB<T> where
    T: PartialEq<T>, 

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

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>,