Stores an XMVECTOR in an XMFLOAT3A.
void XMStoreFloat3A(
XMFLOAT3A *pDestination,
XMVECTOR V
)
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.
The following pseudocode demonstrates the operation of the function.
return (XMFLOAT3A*)XMStoreVector3A(pDestination, V);
Header: Declared in directxmath.h.