pub struct SkinningParams {
pub vertex_count: u32,
pub bone_count: u32,
pub max_bones_per_vertex: u32,
}Expand description
Parameters for skeletal skinning.
Fields§
§vertex_count: u32§bone_count: u32§max_bones_per_vertex: u32Trait Implementations§
Source§impl Clone for SkinningParams
impl Clone for SkinningParams
Source§fn clone(&self) -> SkinningParams
fn clone(&self) -> SkinningParams
Returns a duplicate 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 Debug for SkinningParams
impl Debug for SkinningParams
Source§impl Default for SkinningParams
impl Default for SkinningParams
impl Copy for SkinningParams
Auto Trait Implementations§
impl Freeze for SkinningParams
impl RefUnwindSafe for SkinningParams
impl Send for SkinningParams
impl Sync for SkinningParams
impl Unpin for SkinningParams
impl UnsafeUnpin for SkinningParams
impl UnwindSafe for SkinningParams
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