Tests whether the components of a given vector are within set bounds.
XMVECTOR XMVectorInBounds(
XMVECTOR V,
XMVECTOR Bounds
)
V
Type: XMVECTOR
Vector to test.
Bounds
Type: XMVECTOR
Vector that determines the bounds.
Type: XMVECTOR
Returns a vector containing the results of each component test.
The following pseudocode demonstrates the operation of the function:
XMVECTOR Control;
Control.x = (V.x <= Bounds.x && V.x >= -Bounds.x) ? 0xFFFFFFFF : 0;
Control.y = (V.y <= Bounds.y && V.y >= -Bounds.y) ? 0xFFFFFFFF : 0;
Control.z = (V.z <= Bounds.z && V.z >= -Bounds.z) ? 0xFFFFFFFF : 0;
Control.w = (V.w <= Bounds.w && V.w >= -Bounds.w) ? 0xFFFFFFFF : 0;
return Control;
Header: Declared in directxmath.h.