Struct gltf::accessor::Accessor [−][src]
pub struct Accessor<'a> { /* fields omitted */ }
Expand description
A typed view into a buffer view.
Implementations
Returns the buffer view this accessor reads from.
This may be None
if the corresponding accessor is sparse.
Returns the offset relative to the start of the parent buffer view in bytes.
Returns the number of components within the buffer view - not to be confused with the number of bytes in the buffer view.
Specifies if the attribute is a scalar, vector, or matrix.
Returns the minimum value of each component in this attribute.
Returns the maximum value of each component in this attribute.
Specifies whether integer data values should be normalized.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Accessor<'a>
impl<'a> UnwindSafe for Accessor<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more