XMVector2ClampLengthV

Clamps the length of a 2D vector to a given range.

Syntax

XMVECTOR XMVector2ClampLengthV(
         XMVECTOR V,
         XMVECTOR LengthMin,
         XMVECTOR LengthMax
)  

Parameters

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.

Return value

Type: XMVECTOR 

Returns a 2D vector whose length is clamped to the specified minimum and maximum.

Remarks

This function is identical to XMVector2ClampLength except that LengthMin and LengthMax are supplied using 2D vectors instead of float values.

Requirements

Header: Declared in directxmath.h.