pub enum AssemblyScaleSourceRest {
Trs {
translation_bits: [u32; 3],
rotation_bits: [u32; 4],
scale_bits: [u32; 3],
},
Matrix {
matrix_bits: [u32; 16],
},
}Expand description
Authored raw source-node rest representation retained by a basis.
Variants§
Trs
Decomposed translation, quaternion, and scale.
Fields
Matrix
Exact authored column-major local matrix bits.
Trait Implementations§
Source§impl Clone for AssemblyScaleSourceRest
impl Clone for AssemblyScaleSourceRest
Source§fn clone(&self) -> AssemblyScaleSourceRest
fn clone(&self) -> AssemblyScaleSourceRest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssemblyScaleSourceRest
impl Debug for AssemblyScaleSourceRest
impl Eq for AssemblyScaleSourceRest
Source§impl PartialEq for AssemblyScaleSourceRest
impl PartialEq for AssemblyScaleSourceRest
Source§impl Serialize for AssemblyScaleSourceRest
impl Serialize for AssemblyScaleSourceRest
impl StructuralPartialEq for AssemblyScaleSourceRest
Auto Trait Implementations§
impl Freeze for AssemblyScaleSourceRest
impl RefUnwindSafe for AssemblyScaleSourceRest
impl Send for AssemblyScaleSourceRest
impl Sync for AssemblyScaleSourceRest
impl Unpin for AssemblyScaleSourceRest
impl UnsafeUnpin for AssemblyScaleSourceRest
impl UnwindSafe for AssemblyScaleSourceRest
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