pub struct Matrix4x4Array { /* private fields */ }Expand description
Wraps the corresponding Model I/O matrix4x4array counterpart.
Implementations§
Source§impl Matrix4x4Array
impl Matrix4x4Array
Sourcepub fn new(element_count: usize) -> Result<Self>
pub fn new(element_count: usize) -> Result<Self>
Wraps the corresponding Model I/O initializer for the wrapped Model I/O matrix4x4array counterpart.
Sourcepub fn info(&self) -> Result<Matrix4x4ArrayInfo>
pub fn info(&self) -> Result<Matrix4x4ArrayInfo>
Calls the corresponding Model I/O method on the wrapped Model I/O matrix4x4array counterpart.
Sourcepub fn clear(&self)
pub fn clear(&self)
Calls the corresponding Model I/O method on the wrapped Model I/O matrix4x4array counterpart.
Sourcepub fn set_float_matrices(&self, values: &[[f32; 16]])
pub fn set_float_matrices(&self, values: &[[f32; 16]])
Calls the corresponding Model I/O method on the wrapped Model I/O matrix4x4array counterpart.
Trait Implementations§
Source§impl Clone for Matrix4x4Array
impl Clone for Matrix4x4Array
Source§fn clone(&self) -> Matrix4x4Array
fn clone(&self) -> Matrix4x4Array
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 moreAuto Trait Implementations§
impl Freeze for Matrix4x4Array
impl RefUnwindSafe for Matrix4x4Array
impl !Send for Matrix4x4Array
impl !Sync for Matrix4x4Array
impl Unpin for Matrix4x4Array
impl UnsafeUnpin for Matrix4x4Array
impl UnwindSafe for Matrix4x4Array
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