Struct lnkit::prelude::Perspective3[][src]

pub struct Perspective3<T> where
    T: Scalar
{ /* fields omitted */ }

A 3D perspective projection stored as a homogeneous 4x4 matrix.

Implementations

impl<T> Perspective3<T> where
    T: RealField
[src]

pub fn new(aspect: T, fovy: T, znear: T, zfar: T) -> Perspective3<T>[src]

Creates a new perspective matrix from the aspect ratio, y field of view, and near/far planes.

pub fn from_matrix_unchecked(
    matrix: Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
) -> Perspective3<T>
[src]

Wraps the given matrix to interpret it as a 3D perspective matrix.

It is not checked whether or not the given matrix actually represents a perspective projection.

pub fn inverse(
    &self
) -> Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
[src]

Retrieves the inverse of the underlying homogeneous matrix.

pub fn to_homogeneous(
    &self
) -> Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
[src]

Computes the corresponding homogeneous matrix.

pub fn as_matrix(
    &self
) -> &Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
[src]

A reference to the underlying homogeneous transformation matrix.

pub fn as_projective(&self) -> &Transform<T, TProjective, 3_usize>[src]

A reference to this transformation seen as a Projective3.

pub fn to_projective(&self) -> Transform<T, TProjective, 3_usize>[src]

This transformation seen as a Projective3.

pub fn into_inner(
    self
) -> Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
[src]

Retrieves the underlying homogeneous matrix.

pub fn unwrap(
    self
) -> Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>>
[src]

👎 Deprecated:

use .into_inner() instead

Retrieves the underlying homogeneous matrix. Deprecated: Use Perspective3::into_inner instead.

pub fn aspect(&self) -> T[src]

Gets the width / height aspect ratio of the view frustum.

pub fn fovy(&self) -> T[src]

Gets the y field of view of the view frustum.

pub fn znear(&self) -> T[src]

Gets the near plane offset of the view frustum.

pub fn zfar(&self) -> T[src]

Gets the far plane offset of the view frustum.

pub fn project_point(&self, p: &Point<T, 3_usize>) -> Point<T, 3_usize>[src]

Projects a point. Faster than matrix multiplication.

pub fn unproject_point(&self, p: &Point<T, 3_usize>) -> Point<T, 3_usize>[src]

Un-projects a point. Faster than multiplication by the matrix inverse.

pub fn project_vector<SB>(
    &self,
    p: &Matrix<T, Const<{_: usize}>, Const<1_usize>, SB>
) -> Matrix<T, Const<{_: usize}>, Const<1_usize>, ArrayStorage<T, 3_usize, 1_usize>> where
    SB: Storage<T, Const<{_: usize}>, Const<1_usize>>, 
[src]

Projects a vector. Faster than matrix multiplication.

pub fn set_aspect(&mut self, aspect: T)[src]

Updates this perspective matrix with a new width / height aspect ratio of the view frustum.

pub fn set_fovy(&mut self, fovy: T)[src]

Updates this perspective with a new y field of view of the view frustum.

pub fn set_znear(&mut self, znear: T)[src]

Updates this perspective matrix with a new near plane offset of the view frustum.

pub fn set_zfar(&mut self, zfar: T)[src]

Updates this perspective matrix with a new far plane offset of the view frustum.

pub fn set_znear_and_zfar(&mut self, znear: T, zfar: T)[src]

Updates this perspective matrix with new near and far plane offsets of the view frustum.

Trait Implementations

impl<T> Clone for Perspective3<T> where
    T: RealField
[src]

impl<T> Copy for Perspective3<T> where
    T: RealField
[src]

impl<T> Debug for Perspective3<T> where
    T: RealField
[src]

impl<'a, T> Deserialize<'a> for Perspective3<T> where
    T: RealField + Deserialize<'a>, 
[src]

impl<T> From<Perspective3<T>> for Matrix<T, Const<{_: usize}>, Const<{_: usize}>, ArrayStorage<T, 4_usize, 4_usize>> where
    T: RealField
[src]

impl<T> PartialEq<Perspective3<T>> for Perspective3<T> where
    T: RealField
[src]

impl<T> Serialize for Perspective3<T> where
    T: RealField + Serialize
[src]

Auto Trait Implementations

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

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

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

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

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

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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,