Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/VectorAllLesserThan
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/UnrealMathVectorCommon.h |
| Include | #include "Math/UnrealMathVectorCommon.h" |
uint32 VectorAllLesserThan
(
VectorRegister4Float Vec1,
VectorRegister4Float Vec2
)
Remarks
Returns non-zero if all elements in Vec1 are lesser than the corresponding elements in Vec2, otherwise 0. Non-zero integer if (Vec1.x < Vec2.x) && (Vec1.y < Vec2.y) && (Vec1.z < Vec2.z) && (Vec1.w < Vec2.w)
Parameters
| Name | Description |
|---|---|
| Vec1 | 1st source vector |
| Vec2 | 2nd source vector |