[−][src]Struct geng_core::prelude::AABB
Axis aligned bounding box.
Fields
x_min: Tx_max: Ty_min: Ty_max: TImplementations
impl<T> AABB<T> where
T: UNum, [src]
T: UNum,
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>) -> AABB<T>[src]
pub fn pos_size(pos: Vec2<T>, size: Vec2<T>) -> AABB<T>[src]
pub fn map<U, F>(self, f: F) -> AABB<U> where
F: Fn(T) -> U,
U: UNum, [src]
F: Fn(T) -> U,
U: UNum,
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: &AABB<T>) -> bool[src]
pub fn translate(self, v: Vec2<T>) -> AABB<T>[src]
impl<T> AABB<T> where
T: Float, [src]
T: Float,
pub fn distance_to(&self, other: &AABB<T>) -> T[src]
Trait Implementations
impl<T> Clone for AABB<T> where
T: Clone, [src]
T: Clone,
impl<T> Copy for AABB<T> where
T: Copy, [src]
T: Copy,
impl<T> Debug for AABB<T> where
T: Debug, [src]
T: Debug,
impl<T> Eq for AABB<T> where
T: Eq, [src]
T: Eq,
impl<T> PartialEq<AABB<T>> for AABB<T> where
T: PartialEq<T>, [src]
T: PartialEq<T>,
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,
T: RefUnwindSafe,
impl<T> Send for AABB<T> where
T: Send,
T: Send,
impl<T> Sync for AABB<T> where
T: Sync,
T: Sync,
impl<T> Unpin for AABB<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for AABB<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DynClone for T where
T: Clone, [src]
T: Clone,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,