Clamps the length of a 2D vector to a given range.
XMVECTOR XMVector2ClampLengthV(
XMVECTOR V,
XMVECTOR LengthMin,
XMVECTOR LengthMax
)
V
Type: XMVECTOR
2D vector to clamp.
LengthMin
Type: XMVECTOR
2D vector whose x and y-components are both equal to the minimum clamp length. The x and y-components must be greater-than-or-equal to zero.
LengthMax
Type: XMVECTOR
2D vector whose x and y-components are both equal to the maximum clamp length. The x and y-components must be greater-than-or-equal to zero.
Type: XMVECTOR
Returns a 2D vector whose length is clamped to the specified minimum and maximum.
This function is identical to XMVector2ClampLength except that LengthMin and LengthMax are supplied using 2D vectors instead of float values.
Header: Declared in directxmath.h.