#[repr(C)]pub struct hkVector4Comparison {
pub mask: hkQuadReal,
}
Expand description
Represents a comparison mask for hkVector4
operations in the Havok system.
This struct uses a hkQuadReal
to store a mask for vector component comparisons.
§Memory Layout:
mask
: SSE-aligned 128-bit vector (0x00 - 0x0F)
Fields§
§mask: hkQuadReal
The 128-bit SSE vector used as a comparison mask.
- Offset: 0x00
Trait Implementations§
Source§impl Clone for hkVector4Comparison
impl Clone for hkVector4Comparison
Source§fn clone(&self) -> hkVector4Comparison
fn clone(&self) -> hkVector4Comparison
Returns a copy 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 Default for hkVector4Comparison
impl Default for hkVector4Comparison
impl Copy for hkVector4Comparison
Auto Trait Implementations§
impl Freeze for hkVector4Comparison
impl RefUnwindSafe for hkVector4Comparison
impl Send for hkVector4Comparison
impl Sync for hkVector4Comparison
impl Unpin for hkVector4Comparison
impl UnwindSafe for hkVector4Comparison
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