pub struct Kfa {
pub kv6_name: Vec<u8>,
pub hinges: Vec<Hinge>,
pub frmval: Vec<Vec<i16>>,
pub seq: Vec<Seq>,
}Fields§
§kv6_name: Vec<u8>Associated .kv6 filename (raw bytes, no NUL terminator). Voxlap
uses this to locate the rigged kv6 model.
hinges: Vec<Hinge>§frmval: Vec<Vec<i16>>frmval[frame_idx][hinge_idx] — outer length is numfrm,
inner length must equal hinges.len() for every frame.
seq: Vec<Seq>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Kfa
impl RefUnwindSafe for Kfa
impl Send for Kfa
impl Sync for Kfa
impl Unpin for Kfa
impl UnsafeUnpin for Kfa
impl UnwindSafe for Kfa
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