pub struct hkAabbUint32 {
pub __ptr: Option<Pointer>,
pub m_min: [u32; 3],
pub m_expansionMin: [u8; 3],
pub m_expansionShift: u8,
pub m_max: [u32; 3],
pub m_expansionMax: [u8; 3],
pub m_shapeKeyByte: u8,
}
Expand description
§C++ Info
- name:
hkAabbUint32
- version:
0
- signature:
0x11e7c11
- size:
32
(x86)/32
(x86_64) - vtable:
false
Fields§
§__ptr: Option<Pointer>
§Unique index for this class
- Represents a pointer on XML (
<hkobject name="#0001"></hkobject>
) Option::None
=> This class isclass in field
.(<hkobject></hkobject>
)
§Note
Not present in the binary & Not exist actual C++ field.
m_min: [u32; 3]
§C++ Info
- name:
min
(ctype:hkUint32[3]
) - offset:
0
(x86)/0
(x86_64) - type_size:
12
(x86)/12
(x86_64) - flags:
ALIGN_16
m_expansionMin: [u8; 3]
§C++ Info
- name:
expansionMin
(ctype:hkUint8[3]
) - offset:
12
(x86)/12
(x86_64) - type_size:
3
(x86)/3
(x86_64)
m_expansionShift: u8
§C++ Info
- name:
expansionShift
(ctype:hkUint8
) - offset:
15
(x86)/15
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_max: [u32; 3]
§C++ Info
- name:
max
(ctype:hkUint32[3]
) - offset:
16
(x86)/16
(x86_64) - type_size:
12
(x86)/12
(x86_64)
m_expansionMax: [u8; 3]
§C++ Info
- name:
expansionMax
(ctype:hkUint8[3]
) - offset:
28
(x86)/28
(x86_64) - type_size:
3
(x86)/3
(x86_64)
m_shapeKeyByte: u8
§C++ Info
- name:
shapeKeyByte
(ctype:hkUint8
) - offset:
31
(x86)/31
(x86_64) - type_size:
1
(x86)/1
(x86_64)
Trait Implementations§
Source§impl Clone for hkAabbUint32
impl Clone for hkAabbUint32
Source§impl Debug for hkAabbUint32
impl Debug for hkAabbUint32
Source§impl Default for hkAabbUint32
impl Default for hkAabbUint32
Source§impl<'de> Deserialize<'de> for hkAabbUint32
impl<'de> Deserialize<'de> for hkAabbUint32
Source§fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl HavokClass for hkAabbUint32
impl HavokClass for hkAabbUint32
Source§impl PartialEq for hkAabbUint32
impl PartialEq for hkAabbUint32
Auto Trait Implementations§
impl Freeze for hkAabbUint32
impl RefUnwindSafe for hkAabbUint32
impl Send for hkAabbUint32
impl Sync for hkAabbUint32
impl Unpin for hkAabbUint32
impl UnwindSafe for hkAabbUint32
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more