pub struct AnimRotation {
pub timestamps: Vec<u32>,
pub rotations: Vec<Quaternion>,
}Expand description
Rotation data for an animation
Fields§
§timestamps: Vec<u32>Animation timelines
rotations: Vec<Quaternion>Rotation quaternions
Trait Implementations§
Source§impl Clone for AnimRotation
impl Clone for AnimRotation
Source§fn clone(&self) -> AnimRotation
fn clone(&self) -> AnimRotation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnimRotation
impl RefUnwindSafe for AnimRotation
impl Send for AnimRotation
impl Sync for AnimRotation
impl Unpin for AnimRotation
impl UnwindSafe for AnimRotation
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