pub struct XYZ<T>(/* private fields */);Expand description
Internal shared storage for 3D Cartesian coordinates.
This is a thin wrapper around nalgebra::Vector3<T> that provides
centralized implementations of component-wise operations.
§Type Parameter
T: The component type (e.g.,f64,Quantity<U>)
Implementations§
Source§impl XYZ<f64>
impl XYZ<f64>
Sourcepub fn magnitude_squared(&self) -> f64
pub fn magnitude_squared(&self) -> f64
Computes the squared magnitude (avoids sqrt).
Sourcepub fn try_normalize(&self) -> Option<Self>
pub fn try_normalize(&self) -> Option<Self>
Returns a normalized (unit length) version, or None if magnitude is zero.
Sourcepub fn normalize_unchecked(&self) -> Self
pub fn normalize_unchecked(&self) -> Self
Returns a normalized version, assuming non-zero magnitude.
§Safety
Caller must ensure the vector is non-zero.
Trait Implementations§
impl<T: Copy> Copy for XYZ<T>
impl<T> StructuralPartialEq for XYZ<T>
Auto Trait Implementations§
impl<T> Freeze for XYZ<T>where
T: Freeze,
impl<T> RefUnwindSafe for XYZ<T>where
T: RefUnwindSafe,
impl<T> Send for XYZ<T>where
T: Send,
impl<T> Sync for XYZ<T>where
T: Sync,
impl<T> Unpin for XYZ<T>where
T: Unpin,
impl<T> UnsafeUnpin for XYZ<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for XYZ<T>where
T: 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§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.