commonlibsse_ng\re\h/hkSweptTransform.rs
1use crate::re::hkQuaternion::hkQuaternion;
2use crate::re::hkVector4::hkVector4;
3
4#[repr(C)]
5#[derive(Debug, Clone, Default)]
6pub struct hkSweptTransform {
7 pub centerOfMass0: hkVector4, // 0x00
8 pub centerOfMass1: hkVector4, // 0x10
9 pub rotation0: hkQuaternion, // 0x20
10 pub rotation1: hkQuaternion, // 0x30
11 pub centerOfMassLocal: hkVector4, // 0x40
12}
13const _: () = assert!(std::mem::size_of::<hkSweptTransform>() == 0x50);