[][src]Struct rs_math3d::primitives::Box3

#[repr(C)]pub struct Box3<T: Scalar> {
    pub min: Vector3<T>,
    pub max: Vector3<T>,
}

Box3

Fields

min: Vector3<T>max: Vector3<T>

Implementations

impl<T: Scalar> Box3<T>[src]

pub fn new(v0: &Vector3<T>, v1: &Vector3<T>) -> Self[src]

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

pub fn extent(&self) -> Vector3<T>[src]

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

pub fn add(&self, p: &Vector3<T>) -> Self[src]

pub fn subdivide(&self) -> [Self; 8][src]

Trait Implementations

impl<T: Clone + Scalar> Clone for Box3<T>[src]

impl<T: Copy + Scalar> Copy for Box3<T>[src]

impl<T: Debug + Scalar> Debug for Box3<T>[src]

impl<T: FloatNum> Intersect<Ray3<T>> for Box3<T>[src]

Intersect Queries

impl<T: FloatNum> Intersect<Sphere3<T>> for Box3<T>[src]

Auto Trait Implementations

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

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

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

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> From<T> for T[src]

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

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.