pub fn XMVector4Less(V1: FXMVECTOR, V2: FXMVECTOR) -> boolExpand description
Tests whether one 4D vector is less than another 4D vector.
§Parameters
V1 4D vector.
V2 4D vector.
§Return value
Returns true if V1 is less than V2 and false otherwise. See the remarks section.
§Remarks
The following pseudocode demonstrates the operation of the function:
return ( V1.x < V2.x && V1.y < V2.y &&
V1.z < V2.z && V1.w < V2.w );§Reference
https://docs.microsoft.com/en-us/windows/win32/api/directxmath/nf-directxmath-XMVector4Less