pub struct SourceInverseBindAccessor {
pub status: SourceInverseBindAccessorStatus,
pub declared_count: Option<usize>,
pub matrices: Vec<Mat4>,
}Expand description
Read-side evidence for one source skin inverse-bind declaration.
Fields§
§status: SourceInverseBindAccessorStatusWhether the source bind declaration was absent, complete, or malformed.
declared_count: Option<usize>Declared source matrix count, or None when no matrices were declared.
matrices: Vec<Mat4>Matrices in declared joint order when they were readable.
glTF retains raw accessor values. A format loader may instead retain a documented coordinate-normalized projection of the source bind declaration. This may contain non-finite values from a parseable binary accessor or equivalent source structure. Measurement serialization must classify those values rather than emit non-finite JSON numbers.
Trait Implementations§
Source§impl Clone for SourceInverseBindAccessor
impl Clone for SourceInverseBindAccessor
Source§fn clone(&self) -> SourceInverseBindAccessor
fn clone(&self) -> SourceInverseBindAccessor
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 SourceInverseBindAccessor
impl Debug for SourceInverseBindAccessor
Source§impl Default for SourceInverseBindAccessor
impl Default for SourceInverseBindAccessor
Source§fn default() -> SourceInverseBindAccessor
fn default() -> SourceInverseBindAccessor
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SourceInverseBindAccessor
impl RefUnwindSafe for SourceInverseBindAccessor
impl Send for SourceInverseBindAccessor
impl Sync for SourceInverseBindAccessor
impl Unpin for SourceInverseBindAccessor
impl UnsafeUnpin for SourceInverseBindAccessor
impl UnwindSafe for SourceInverseBindAccessor
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