#[repr(C)]pub struct Perspective3<T> { /* private fields */ }
Expand description
A 3D perspective projection stored as a homogeneous 4x4 matrix.
Implementations§
Source§impl<T> Perspective3<T>
impl<T> Perspective3<T>
Sourcepub const fn from_matrix_unchecked(
matrix: Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>,
) -> Perspective3<T>
pub const fn from_matrix_unchecked( matrix: Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>, ) -> Perspective3<T>
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.
Source§impl<T> Perspective3<T>where
T: RealField,
impl<T> Perspective3<T>where
T: RealField,
Sourcepub fn new(aspect: T, fovy: T, znear: T, zfar: T) -> Perspective3<T>
pub fn new(aspect: T, fovy: T, znear: T, zfar: T) -> Perspective3<T>
Creates a new perspective matrix from the aspect ratio, y field of view, and near/far planes.
Sourcepub fn inverse(&self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
pub fn inverse(&self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
Retrieves the inverse of the underlying homogeneous matrix.
Sourcepub fn to_homogeneous(
self,
) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
pub fn to_homogeneous( self, ) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
Computes the corresponding homogeneous matrix.
Sourcepub fn as_matrix(&self) -> &Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
pub fn as_matrix(&self) -> &Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
A reference to the underlying homogeneous transformation matrix.
Sourcepub fn as_projective(&self) -> &Transform<T, TProjective, 3>
pub fn as_projective(&self) -> &Transform<T, TProjective, 3>
A reference to this transformation seen as a Projective3
.
Sourcepub fn to_projective(self) -> Transform<T, TProjective, 3>
pub fn to_projective(self) -> Transform<T, TProjective, 3>
This transformation seen as a Projective3
.
Sourcepub fn into_inner(self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
pub fn into_inner(self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
Retrieves the underlying homogeneous matrix.
Sourcepub fn unwrap(self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
👎Deprecated: use .into_inner()
instead
pub fn unwrap(self) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
.into_inner()
insteadRetrieves the underlying homogeneous matrix.
Deprecated: Use Perspective3::into_inner
instead.
Sourcepub fn project_point(&self, p: &OPoint<T, Const<3>>) -> OPoint<T, Const<3>>
pub fn project_point(&self, p: &OPoint<T, Const<3>>) -> OPoint<T, Const<3>>
Projects a point. Faster than matrix multiplication.
Sourcepub fn unproject_point(&self, p: &OPoint<T, Const<3>>) -> OPoint<T, Const<3>>
pub fn unproject_point(&self, p: &OPoint<T, Const<3>>) -> OPoint<T, Const<3>>
Un-projects a point. Faster than multiplication by the matrix inverse.
Sourcepub fn project_vector<SB>(
&self,
p: &Matrix<T, Const<3>, Const<1>, SB>,
) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>
pub fn project_vector<SB>( &self, p: &Matrix<T, Const<3>, Const<1>, SB>, ) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>
Projects a vector. Faster than matrix multiplication.
Sourcepub fn set_aspect(&mut self, aspect: T)
pub fn set_aspect(&mut self, aspect: T)
Updates this perspective matrix with a new width / height
aspect ratio of the view
frustum.
Sourcepub fn set_fovy(&mut self, fovy: T)
pub fn set_fovy(&mut self, fovy: T)
Updates this perspective with a new y field of view of the view frustum.
Sourcepub fn set_znear(&mut self, znear: T)
pub fn set_znear(&mut self, znear: T)
Updates this perspective matrix with a new near plane offset of the view frustum.
Sourcepub fn set_zfar(&mut self, zfar: T)
pub fn set_zfar(&mut self, zfar: T)
Updates this perspective matrix with a new far plane offset of the view frustum.
Sourcepub fn set_znear_and_zfar(&mut self, znear: T, zfar: T)
pub fn set_znear_and_zfar(&mut self, znear: T, zfar: T)
Updates this perspective matrix with new near and far plane offsets of the view frustum.
Trait Implementations§
Source§impl<T> Clone for Perspective3<T>where
T: Clone,
impl<T> Clone for Perspective3<T>where
T: Clone,
Source§fn clone(&self) -> Perspective3<T>
fn clone(&self) -> Perspective3<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T> Debug for Perspective3<T>where
T: RealField,
impl<T> Debug for Perspective3<T>where
T: RealField,
Source§impl<'a, T> Deserialize<'a> for Perspective3<T>where
T: RealField + Deserialize<'a>,
impl<'a, T> Deserialize<'a> for Perspective3<T>where
T: RealField + Deserialize<'a>,
Source§fn deserialize<Des>(
deserializer: Des,
) -> Result<Perspective3<T>, <Des as Deserializer<'a>>::Error>where
Des: Deserializer<'a>,
fn deserialize<Des>(
deserializer: Des,
) -> Result<Perspective3<T>, <Des as Deserializer<'a>>::Error>where
Des: Deserializer<'a>,
Source§impl<T> From<Perspective3<T>> for Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>where
T: RealField,
impl<T> From<Perspective3<T>> for Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>where
T: RealField,
Source§fn from(
pers: Perspective3<T>,
) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
fn from( pers: Perspective3<T>, ) -> Matrix<T, Const<4>, Const<4>, ArrayStorage<T, 4, 4>>
Source§impl<T> PartialEq for Perspective3<T>where
T: RealField,
impl<T> PartialEq for Perspective3<T>where
T: RealField,
Source§impl<T> Serialize for Perspective3<T>
impl<T> Serialize for Perspective3<T>
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl<T> Zeroable for Perspective3<T>
impl<T> Zeroable for Perspective3<T>
impl<T> Copy for Perspective3<T>where
T: Copy,
impl<T> Pod for Perspective3<T>
Auto Trait Implementations§
impl<T> Freeze for Perspective3<T>where
T: Freeze,
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§
Source§impl<T> AsyncTaskResult for T
impl<T> AsyncTaskResult for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self
.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Any
. Could be used to downcast a trait object
to a particular type.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Any
. Could be used to downcast a trait object
to a particular type.fn into_any(self: Box<T>) -> Box<dyn Any>
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> FieldValue for Twhere
T: 'static,
impl<T> FieldValue for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MessageData for T
impl<T> MessageData for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ScriptMessagePayload for T
impl<T> ScriptMessagePayload for T
Source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
self
as &dyn Any
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
self
as &dyn Any
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.