pub struct hkpConvexVerticesShape {
pub __ptr: Option<Pointer>,
pub parent: hkpConvexShape,
pub m_aabbHalfExtents: Vector4,
pub m_aabbCenter: Vector4,
pub m_rotatedVertices: Vec<hkpConvexVerticesShapeFourVectors>,
pub m_numVertices: i32,
pub m_externalObject: Pointer,
pub m_getFaceNormals: Pointer,
pub m_planeEquations: Vec<Vector4>,
pub m_connectivity: Pointer,
}
Expand description
§C++ Info
- name:
hkpConvexVerticesShape
- version:
3
- signature:
0x28726ad8
- size:
112
(x86)/144
(x86_64) - vtable:
true
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.
parent: hkpConvexShape
Alternative to C++ class inheritance.
m_aabbHalfExtents: Vector4
§C++ Info
- name:
aabbHalfExtents
(ctype:hkVector4
) - offset:
32
(x86)/48
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_aabbCenter: Vector4
§C++ Info
- name:
aabbCenter
(ctype:hkVector4
) - offset:
48
(x86)/64
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_rotatedVertices: Vec<hkpConvexVerticesShapeFourVectors>
§C++ Info
- name:
rotatedVertices
(ctype:hkArray<struct hkpConvexVerticesShapeFourVectors>
) - offset:
64
(x86)/80
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_numVertices: i32
§C++ Info
- name:
numVertices
(ctype:hkInt32
) - offset:
76
(x86)/96
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_externalObject: Pointer
§C++ Info
- name:
externalObject
(ctype:void*
) - offset:
80
(x86)/104
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_getFaceNormals: Pointer
§C++ Info
- name:
getFaceNormals
(ctype:void*
) - offset:
84
(x86)/112
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_planeEquations: Vec<Vector4>
§C++ Info
- name:
planeEquations
(ctype:hkArray<hkVector4>
) - offset:
88
(x86)/120
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_connectivity: Pointer
§C++ Info
- name:
connectivity
(ctype:struct hkpConvexVerticesConnectivity*
) - offset:
100
(x86)/136
(x86_64) - type_size:
4
(x86)/8
(x86_64)
Trait Implementations§
Source§impl Clone for hkpConvexVerticesShape
impl Clone for hkpConvexVerticesShape
Source§impl Debug for hkpConvexVerticesShape
impl Debug for hkpConvexVerticesShape
Source§impl Default for hkpConvexVerticesShape
impl Default for hkpConvexVerticesShape
Source§impl<'de> Deserialize<'de> for hkpConvexVerticesShape
impl<'de> Deserialize<'de> for hkpConvexVerticesShape
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 hkpConvexVerticesShape
impl HavokClass for hkpConvexVerticesShape
Source§impl PartialEq for hkpConvexVerticesShape
impl PartialEq for hkpConvexVerticesShape
Auto Trait Implementations§
impl Freeze for hkpConvexVerticesShape
impl RefUnwindSafe for hkpConvexVerticesShape
impl Send for hkpConvexVerticesShape
impl Sync for hkpConvexVerticesShape
impl Unpin for hkpConvexVerticesShape
impl UnwindSafe for hkpConvexVerticesShape
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