Computes the floor of each component of an XMVECTOR.
The following pseudocode shows how this function is implemented.
XMVECTOR Result;
Result.x = floorf(V.x);
Result.y = floorf(V.y);
Result.z = floorf(V.z);
Result.w = floorf(V.w);
return Result;
XMVECTOR XMVectorFloor(
XMVECTOR V
)
V
Type: XMVECTOR
Vector for which to compute the floor.
Type: XMVECTOR
Returns a vector whose components are the floor of the corresponding components of V.
Header: Declared in directxmath.h.