XMStoreFloat3A

Stores an XMVECTOR in an XMFLOAT3A.

Syntax

void XMStoreFloat3A(
         XMFLOAT3A *pDestination,
         XMVECTOR V
)  

Parameters

pDestination
Type: XMFLOAT3A *

[out]

Address at which to store the data. This address must be 16-byte aligned.

V
Type: XMVECTOR 

[in]

Vector containing the data to store.

Return value

None.

Remarks

The following pseudocode demonstrates the operation of the function.

return (XMFLOAT3A*)XMStoreVector3A(pDestination, V);  

Requirements

Header: Declared in directxmath.h.