pub struct BipedLargeSkeleton {Show 26 fields
head: Bone,
jaw: Bone,
upper_torso: Bone,
lower_torso: Bone,
tail: Bone,
main: Bone,
second: Bone,
shoulder_l: Bone,
shoulder_r: Bone,
hand_l: Bone,
hand_r: Bone,
leg_l: Bone,
leg_r: Bone,
foot_l: Bone,
foot_r: Bone,
hold: Bone,
torso: Bone,
control: Bone,
control_l: Bone,
control_r: Bone,
weapon_l: Bone,
weapon_r: Bone,
leg_control_l: Bone,
leg_control_r: Bone,
arm_control_l: Bone,
arm_control_r: Bone,
}
Fields§
§head: Bone
§jaw: Bone
§upper_torso: Bone
§lower_torso: Bone
§tail: Bone
§main: Bone
§second: Bone
§shoulder_l: Bone
§shoulder_r: Bone
§hand_l: Bone
§hand_r: Bone
§leg_l: Bone
§leg_r: Bone
§foot_l: Bone
§foot_r: Bone
§hold: Bone
§torso: Bone
§control: Bone
§control_l: Bone
§control_r: Bone
§weapon_l: Bone
§weapon_r: Bone
§leg_control_l: Bone
§leg_control_r: Bone
§arm_control_l: Bone
§arm_control_r: Bone
Trait Implementations§
source§impl Clone for BipedLargeSkeleton
impl Clone for BipedLargeSkeleton
source§fn clone(&self) -> BipedLargeSkeleton
fn clone(&self) -> BipedLargeSkeleton
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for BipedLargeSkeleton
impl Default for BipedLargeSkeleton
source§fn default() -> BipedLargeSkeleton
fn default() -> BipedLargeSkeleton
Returns the “default value” for a type. Read more
source§impl<'a, Factor> Lerp<Factor> for &'a BipedLargeSkeleton
impl<'a, Factor> Lerp<Factor> for &'a BipedLargeSkeleton
§type Output = BipedLargeSkeleton
type Output = BipedLargeSkeleton
The resulting type after performing the LERP operation.
source§fn lerp_unclamped_precise(from: Self, to: Self, factor: Factor) -> Self::Output
fn lerp_unclamped_precise(from: Self, to: Self, factor: Factor) -> Self::Output
Returns the linear interpolation of
from
to to
with factor
unconstrained,
using a possibly slower but more precise operation. Read moresource§fn lerp_unclamped(from: Self, to: Self, factor: Factor) -> Self::Output
fn lerp_unclamped(from: Self, to: Self, factor: Factor) -> Self::Output
Returns the linear interpolation of
from
to to
with factor
unconstrained,
using the supposedly fastest but less precise implementation. Read moresource§fn lerp_unclamped_inclusive_range(
range: RangeInclusive<Self>,
factor: Factor,
) -> Self::Output
fn lerp_unclamped_inclusive_range( range: RangeInclusive<Self>, factor: Factor, ) -> Self::Output
Version of
lerp_unclamped()
that used a single RangeInclusive
parameter instead of two values.source§fn lerp_unclamped_precise_inclusive_range(
range: RangeInclusive<Self>,
factor: Factor,
) -> Self::Output
fn lerp_unclamped_precise_inclusive_range( range: RangeInclusive<Self>, factor: Factor, ) -> Self::Output
Version of
lerp_unclamped_precise()
that used a single RangeInclusive
parameter instead of two values.source§impl Skeleton for BipedLargeSkeleton
impl Skeleton for BipedLargeSkeleton
type Attr = SkeletonAttr
type Body = Body
const BONE_COUNT: usize = 16usize
fn compute_matrices_inner( &self, base_mat: Mat4<f32>, buf: &mut [FigureBoneData; 16], body: Self::Body, ) -> Offsets
fn compute_matrices( &self, base_mat: Mat4<f32>, buf: &mut [FigureBoneData; 16], body: Self::Body, ) -> Offsets
Auto Trait Implementations§
impl Freeze for BipedLargeSkeleton
impl RefUnwindSafe for BipedLargeSkeleton
impl Send for BipedLargeSkeleton
impl Sync for BipedLargeSkeleton
impl Unpin for BipedLargeSkeleton
impl UnwindSafe for BipedLargeSkeleton
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Pointee for T
impl<T> Pointee for T
§impl<Context> SubContext<Context> for Context
impl<Context> SubContext<Context> for Context
fn sub_context(self) -> Context
§impl<T> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default
and panics on an error case.