pub struct RwSkin {
pub bone_count: u8,
pub used_bone_count: u8,
pub max_weights_per_vertex: u8,
pub bone_vertex_indices: Vec<Vec<u8>>,
pub vertex_weights: Vec<Vec<f32>>,
pub inverse_bone_matrices: Vec<RwMatrix4>,
}
Fields§
§bone_count: u8
§used_bone_count: u8
§max_weights_per_vertex: u8
§bone_vertex_indices: Vec<Vec<u8>>
§vertex_weights: Vec<Vec<f32>>
§inverse_bone_matrices: Vec<RwMatrix4>
Trait Implementations§
impl StructuralPartialEq for RwSkin
Auto Trait Implementations§
impl Freeze for RwSkin
impl RefUnwindSafe for RwSkin
impl Send for RwSkin
impl Sync for RwSkin
impl Unpin for RwSkin
impl UnwindSafe for RwSkin
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