[][src]Struct collision::primitive::Quad

pub struct Quad<S> { /* fields omitted */ }

Rectangular plane primitive. Will lie on the xy plane when not transformed.

Have a cached set of corner points to speed up computation.

Methods

impl<S> Quad<S> where
    S: BaseFloat
[src]

pub fn new(dim_x: S, dim_y: S) -> Self
[src]

Create a new rectangle primitive from component dimensions

pub fn new_impl(dim: Vector2<S>) -> Self
[src]

Create a new rectangle primitive from a vector of component dimensions

pub fn dim(&self) -> &Vector2<S>
[src]

Get the dimensions of the Rectangle

pub fn half_dim(&self) -> &Vector2<S>
[src]

Get the half dimensions of the Rectangle

Trait Implementations

impl<S> Continuous<Ray<S, Point3<S>, Vector3<S>>> for Quad<S> where
    S: BaseFloat
[src]

type Result = Point3<S>

Result returned by the intersection test

fn intersection(&self, ray: &Ray3<S>) -> Option<Point3<S>>
[src]

Ray must be in object space of the rectangle

impl<S> Discrete<Ray<S, Point3<S>, Vector3<S>>> for Quad<S> where
    S: BaseFloat
[src]

fn intersects(&self, ray: &Ray3<S>) -> bool
[src]

Ray must be in object space of the rectangle

impl<S> ComputeBound<Aabb3<S>> for Quad<S> where
    S: BaseFloat
[src]

impl<S> ComputeBound<Sphere<S>> for Quad<S> where
    S: BaseFloat
[src]

impl<S> Primitive for Quad<S> where
    S: BaseFloat
[src]

type Point = Point3<S>

Point type

impl<S> From<Quad<S>> for Primitive3<S> where
    S: BaseFloat
[src]

impl<S: Clone> Clone for Quad<S>
[src]

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

Performs copy-assignment from source. Read more

impl<S: PartialEq> PartialEq<Quad<S>> for Quad<S>
[src]

impl<S: Debug> Debug for Quad<S>
[src]

Auto Trait Implementations

impl<S> Send for Quad<S> where
    S: Send

impl<S> Sync for Quad<S> where
    S: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.