pub struct PoseReductionReport {
pub source_bone_key_count: usize,
pub reduced_bone_key_count: usize,
pub source_morph_key_count: usize,
pub reduced_morph_key_count: usize,
pub max_local_position_error: f32,
pub max_local_rotation_error_radians: f32,
pub max_world_position_error: f32,
pub max_world_rotation_error_radians: f32,
pub max_morph_weight_error: f32,
}Fields§
§source_bone_key_count: usize§reduced_bone_key_count: usize§source_morph_key_count: usize§reduced_morph_key_count: usize§max_local_position_error: f32§max_local_rotation_error_radians: f32§max_world_position_error: f32§max_world_rotation_error_radians: f32§max_morph_weight_error: f32Trait Implementations§
Source§impl Clone for PoseReductionReport
impl Clone for PoseReductionReport
Source§fn clone(&self) -> PoseReductionReport
fn clone(&self) -> PoseReductionReport
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 moreimpl Copy for PoseReductionReport
Source§impl Debug for PoseReductionReport
impl Debug for PoseReductionReport
Source§impl Default for PoseReductionReport
impl Default for PoseReductionReport
Source§fn default() -> PoseReductionReport
fn default() -> PoseReductionReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for PoseReductionReport
impl PartialEq for PoseReductionReport
impl StructuralPartialEq for PoseReductionReport
Auto Trait Implementations§
impl Freeze for PoseReductionReport
impl RefUnwindSafe for PoseReductionReport
impl Send for PoseReductionReport
impl Sync for PoseReductionReport
impl Unpin for PoseReductionReport
impl UnsafeUnpin for PoseReductionReport
impl UnwindSafe for PoseReductionReport
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more