#[non_exhaustive]pub struct BoneLoopContinuityMetrics {
pub position_delta_m: f64,
pub rotation_delta_deg: f64,
pub seam_velocity_delta_mps: f64,
pub seam_angular_velocity_delta_degps: f64,
}Expand description
Model-space loop-continuity measurements for one skeleton bone.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.position_delta_m: f64Last-sample to first-sample model-space position distance (metres).
rotation_delta_deg: f64Shortest-path model-space rotation difference (degrees).
seam_velocity_delta_mps: f64Difference between the model-space linear velocities immediately before and after the wrap (metres per second).
seam_angular_velocity_delta_degps: f64Difference between the model-space angular velocities immediately before and after the wrap (degrees per second).
Trait Implementations§
Source§impl Clone for BoneLoopContinuityMetrics
impl Clone for BoneLoopContinuityMetrics
Source§fn clone(&self) -> BoneLoopContinuityMetrics
fn clone(&self) -> BoneLoopContinuityMetrics
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 BoneLoopContinuityMetrics
impl Debug for BoneLoopContinuityMetrics
impl StructuralPartialEq for BoneLoopContinuityMetrics
Auto Trait Implementations§
impl Freeze for BoneLoopContinuityMetrics
impl RefUnwindSafe for BoneLoopContinuityMetrics
impl Send for BoneLoopContinuityMetrics
impl Sync for BoneLoopContinuityMetrics
impl Unpin for BoneLoopContinuityMetrics
impl UnsafeUnpin for BoneLoopContinuityMetrics
impl UnwindSafe for BoneLoopContinuityMetrics
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