[][src]Struct vek::geom::repr_simd::Aabr

pub struct Aabr<T> {
    pub min: Vec2<T>,
    pub max: Vec2<T>,
}

Axis-aligned Bounding Rectangle (2D), 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: Vec2<T>

Minimum coordinates of bounds.

max: Vec2<T>

Maximum coordinates of bounds.

Methods

impl<T> Aabr<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: Vec2<T>) -> Self where
    T: Copy
[src]

Creates a new bounding shape from a single point.

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

Converts this bounding shape to the matching rectangle representation.

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

Gets this bounding shape's center.

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

Gets this bounding shape's total size.

pub fn half_size(self) -> Extent2<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: Vec2<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: Vec2<T>) where
    T: Copy + PartialOrd
[src]

Expands this shape so that it contains the given point.

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

Does this bounding shape contain the given point ?

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

Does this bounding shape fully contain another ?

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

Does this bounding shape collide with another ?

pub fn collision_vector_with_aabr(self, other: Self) -> Vec2<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 map<D, F>(self, f: F) -> Aabr<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 Aabr<T>[src]

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

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

impl<T: Hash> Hash for Aabr<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 Aabr<T>[src]

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

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

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

impl<T: Clone> Clone for Aabr<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 Aabr<T>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> 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

The resulting type after obtaining ownership.