pub struct JointPose {
pub translation: [f32; 3],
pub rotation_deg: [f32; 3],
pub scale: [f32; 3],
}Expand description
A joint’s local transform: translation, YXZ Euler rotation in degrees, and per-axis scale. Used both for the bind pose and for animation keyframes.
Fields§
§translation: [f32; 3]Local translation.
rotation_deg: [f32; 3]Local YXZ Euler rotation in degrees.
scale: [f32; 3]Per-axis local scale.
Implementations§
Source§impl JointPose
impl JointPose
Sourcepub fn blend_matrix(&self, other: &JointPose, f: f32) -> [[f32; 4]; 4]
pub fn blend_matrix(&self, other: &JointPose, f: f32) -> [[f32; 4]; 4]
Interpolate two poses into a column-major local matrix. Translation and
scale blend linearly; rotation is quaternion-slerped (shortest-arc,
constant angular velocity) rather than Euler-lerped, so multi-axis
joint rotation follows the correct path. f in [0, 1].
Slerps the poses’ own Euler rotations rather than going through
blend_matrices, which would
have to recover them from the composed matrices first.
Trait Implementations§
impl Copy for JointPose
Source§impl<'de> Deserialize<'de> for JointPose
impl<'de> Deserialize<'de> for JointPose
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<JointPose, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<JointPose, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for JointPose
impl Serialize for JointPose
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for JointPose
Auto Trait Implementations§
impl Freeze for JointPose
impl RefUnwindSafe for JointPose
impl Send for JointPose
impl Sync for JointPose
impl Unpin for JointPose
impl UnsafeUnpin for JointPose
impl UnwindSafe for JointPose
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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 moreSource§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
Source§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian().