pub enum Fixed<N: Copy + RealField> {
Hor(N),
Ver(N),
Upp(N),
}
Expand description
Fixed quantity wrt field of view.
- Implements
Default
and can be created withFixed::default()
returningFixed::Ver(N::frac_pi_4())
. - Implements
From<N>
and can be created withN::into()
returningFixed::Ver()
.
Variants§
Hor(N)
Fixed horizontal field of view aka Vert- scaling.
Ver(N)
Fixed vertical field of view aka Hor+ scaling.
Upp(N)
Fixed unit per pixel on focus plane at distance from eye of one aka Pixel-based scaling.
Implementations§
Source§impl<N: Copy + RealField> Fixed<N>
impl<N: Copy + RealField> Fixed<N>
Sourcepub fn to_hor(self, max: &Point2<N>) -> Self
pub fn to_hor(self, max: &Point2<N>) -> Self
Converts to fixed horizontal field of view wrt maximum position in screen space.
Sourcepub fn to_ver(self, max: &Point2<N>) -> Self
pub fn to_ver(self, max: &Point2<N>) -> Self
Converts to fixed vertical field of view wrt maximum position in screen space.
Sourcepub fn to_upp(self, max: &Point2<N>) -> Self
pub fn to_upp(self, max: &Point2<N>) -> Self
Converts to fixed unit per pixel on focus plane at distance from eye of one wrt maximum position in screen space.
Sourcepub fn max_and_upp(&self, zat: N, max: &Point2<N>) -> (Point2<N>, N)
pub fn max_and_upp(&self, zat: N, max: &Point2<N>) -> (Point2<N>, N)
Maximum position in camera space and unit per pixel on focus plane wrt distance between eye and target and maximum position in screen space.
Sourcepub const fn into_inner(self) -> N
pub const fn into_inner(self) -> N
Underlying quantity.
Trait Implementations§
Source§impl<'de, N> Deserialize<'de> for Fixed<N>
impl<'de, N> Deserialize<'de> for Fixed<N>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<N: Copy + Copy + RealField> Copy for Fixed<N>
impl<N: Eq + Copy + RealField> Eq for Fixed<N>
impl<N: Copy + RealField> StructuralPartialEq for Fixed<N>
Auto Trait Implementations§
impl<N> Freeze for Fixed<N>where
N: Freeze,
impl<N> RefUnwindSafe for Fixed<N>where
N: RefUnwindSafe,
impl<N> Send for Fixed<N>
impl<N> Sync for Fixed<N>
impl<N> Unpin for Fixed<N>where
N: Unpin,
impl<N> UnwindSafe for Fixed<N>where
N: UnwindSafe,
Blanket Implementations§
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
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
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.