[][src]Struct vek::geom::repr_c::Aabb

pub struct Aabb<T> {
    pub min: Vec3<T>,
    pub max: Vec3<T>,
}

Axis-aligned Bounding Box (3D), represented by min and max points.

N.B: You are responsible for ensuring that all respective elements of min are indeed less than or equal to those of max.
The is_valid(), make_valid() and made_valid() methods are designed to help you with this.

Fields

min: Vec3<T>

Minimum coordinates of bounds.

max: Vec3<T>

Maximum coordinates of bounds.

Methods

impl<T> Aabb<T>[src]

pub fn is_valid(&self) -> bool where
    T: PartialOrd
[src]

Is this bounding shape valid ? True only if all elements of self.min are less than or equal to those of self.max.

pub fn make_valid(&mut self) where
    T: PartialOrd
[src]

Makes this bounding shape valid by swapping elements of self.min with self.max as needed.

pub fn made_valid(self) -> Self where
    T: PartialOrd
[src]

Returns this bounding shape made valid by swapping elements of self.min with self.max as needed.

pub fn new_empty(p: Vec3<T>) -> Self where
    T: Copy
[src]

Creates a new bounding shape from a single point.

pub fn into_rect3(self) -> Rect3<T, T> where
    T: Copy + Sub<T, Output = T>, 
[src]

Converts this bounding shape to the matching rectangle representation.

pub fn center(self) -> Vec3<T> where
    T: Copy + One + Add<T, Output = T> + Div<T, Output = T>, 
[src]

Gets this bounding shape's center.

pub fn size(self) -> Extent3<T> where
    T: Copy + Sub<T, Output = T>, 
[src]

Gets this bounding shape's total size.

pub fn half_size(self) -> Extent3<T> where
    T: Copy + Sub<T, Output = T> + One + Div<T, Output = T> + Add<T, Output = T>, 
[src]

Gets this bounding shape's half size.

pub fn union(self, other: Self) -> Self where
    T: PartialOrd
[src]

Gets the smallest bounding shape that contains both this one and another.

pub fn intersection(self, other: Self) -> Self where
    T: PartialOrd
[src]

Gets the largest bounding shape contained by both this one and another.

pub fn expand_to_contain(&mut self, other: Self) where
    T: Copy + PartialOrd
[src]

Sets this bounding shape to the union of itself with another.

pub fn intersect(&mut self, other: Self) where
    T: Copy + PartialOrd
[src]

Sets this bounding shape to the intersection of itself with another.

pub fn expanded_to_contain_point(self, p: Vec3<T>) -> Self where
    T: Copy + PartialOrd
[src]

Gets a copy of this shape so that it contains the given point.

pub fn expand_to_contain_point(&mut self, p: Vec3<T>) where
    T: Copy + PartialOrd
[src]

Expands this shape so that it contains the given point.

pub fn contains_point(self, p: Vec3<T>) -> bool where
    T: PartialOrd
[src]

Does this bounding shape contain the given point ?

pub fn contains_aabb(self, other: Self) -> bool where
    T: PartialOrd
[src]

Does this bounding shape fully contain another ?

pub fn collides_with_aabb(self, other: Self) -> bool where
    T: PartialOrd
[src]

Does this bounding shape collide with another ?

pub fn collision_vector_with_aabb(self, other: Self) -> Vec3<T> where
    T: Copy + PartialOrd + Sub<T, Output = T> + One + Add<T, Output = T> + Div<T, Output = T>, 
[src]

Gets a vector that tells how much self penetrates other.

pub fn split_at_x(self, sp: T) -> (Self, Self) where
    T: Copy + PartialOrd
[src]

Splits this shape in two, by a straight plane along the x axis.
The returned tuple is (low, high).

Panics

sp is assumed to be a position along the x axis that is within this shape's bounds.

pub fn split_at_y(self, sp: T) -> (Self, Self) where
    T: Copy + PartialOrd
[src]

Splits this shape in two, by a straight plane along the y axis.
The returned tuple is (low, high).

Panics

sp is assumed to be a position along the y axis that is within this shape's bounds.

pub fn split_at_z(self, sp: T) -> (Self, Self) where
    T: Copy + PartialOrd
[src]

Splits this shape in two, by a straight plane along the z axis.
The returned tuple is (low, high).

Panics

sp is assumed to be a position along the z axis that is within this shape's bounds.

pub fn map<D, F>(self, f: F) -> Aabb<D> where
    F: FnMut(T) -> D, 
[src]

Returns this bounding shape, converted element-wise using the given closure.

Trait Implementations

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

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

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

impl<T> From<Aabb<T>> for Rect3<T, T> where
    T: Copy + Sub<T, Output = T>, 
[src]

impl<T> From<Rect3<T, T>> for Aabb<T> where
    T: Copy + Add<T, Output = T>, 
[src]

impl<T: Hash> Hash for Aabb<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

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

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Default> Default for Aabb<T>[src]

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T, U> Into for T where
    U: From<T>, 
[src]

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

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

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

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

type Owned = T