pub struct FQArrayTrans<F>{ /* private fields */ }Expand description
A transformation that is a translation . scaling . rotation (i.e. it applies the rotation to an object, then scales it, then translates it)
This should probably mirror the QArray in using an F, V3 and V4.
Trait Implementations§
Source§impl<F> Clone for FQArrayTrans<F>
impl<F> Clone for FQArrayTrans<F>
Source§fn clone(&self) -> FQArrayTrans<F>
fn clone(&self) -> FQArrayTrans<F>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<F> Debug for FQArrayTrans<F>
impl<F> Debug for FQArrayTrans<F>
Source§impl Default for FQArrayTrans<f32>
impl Default for FQArrayTrans<f32>
Source§impl Default for FQArrayTrans<f64>
impl Default for FQArrayTrans<f64>
Source§impl Display for FQArrayTrans<f32>
impl Display for FQArrayTrans<f32>
Source§impl Display for FQArrayTrans<f64>
impl Display for FQArrayTrans<f64>
Source§impl Transform<f32, FArray<f32, 3>, QArray<f32>> for FQArrayTrans<f32>
impl Transform<f32, FArray<f32, 3>, QArray<f32>> for FQArrayTrans<f32>
Source§impl Transform<f64, FArray<f64, 3>, QArray<f64>> for FQArrayTrans<f64>
impl Transform<f64, FArray<f64, 3>, QArray<f64>> for FQArrayTrans<f64>
impl<F> Copy for FQArrayTrans<F>
Auto Trait Implementations§
impl<F> Freeze for FQArrayTrans<F>
impl<F> RefUnwindSafe for FQArrayTrans<F>
impl<F> Send for FQArrayTrans<F>
impl<F> Sync for FQArrayTrans<F>
impl<F> Unpin for FQArrayTrans<F>
impl<F> UnwindSafe for FQArrayTrans<F>
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