Struct nalgebra::geometry::Perspective3[][src]

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

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

Implementations

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

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

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

pub fn from_matrix_unchecked(matrix: Matrix4<T>) -> Self[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) -> Matrix4<T>[src]

Retrieves the inverse of the underlying homogeneous matrix.

pub fn to_homogeneous(&self) -> Matrix4<T>[src]

Computes the corresponding homogeneous matrix.

pub fn as_matrix(&self) -> &Matrix4<T>[src]

A reference to the underlying homogeneous transformation matrix.

pub fn as_projective(&self) -> &Projective3<T>[src]

A reference to this transformation seen as a Projective3.

pub fn to_projective(&self) -> Projective3<T>[src]

This transformation seen as a Projective3.

pub fn into_inner(self) -> Matrix4<T>[src]

Retrieves the underlying homogeneous matrix.

pub fn unwrap(self) -> Matrix4<T>[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: &Point3<T>) -> Point3<T>[src]

Projects a point. Faster than matrix multiplication.

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

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

pub fn project_vector<SB>(&self, p: &Vector<T, U3, SB>) -> Vector3<T> where
    SB: Storage<T, U3>, 
[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: RealField> Clone for Perspective3<T>[src]

fn clone(&self) -> Self[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

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

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl<T: RealField> From<Perspective3<T>> for Matrix4<T>[src]

fn from(pers: Perspective3<T>) -> Self[src]

Performs the conversion.

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

fn eq(&self, right: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<T: RealField> Copy for Perspective3<T>[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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

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

Immutably borrows from an owned value. Read more

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

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

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

pub fn to_subset(&self) -> Option<SS>[src]

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

pub fn is_in_subset(&self) -> bool[src]

Checks if self is actually part of its subset T (and can be converted to it).

pub fn to_subset_unchecked(&self) -> SS[src]

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

pub fn from_subset(element: &SS) -> SP[src]

The inclusion map: converts self to the equivalent element of its superset.

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

type Owned = T

The resulting type after obtaining ownership.

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

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V