operator +(XMVECTOR, XMVECTOR) method
Adds two instances of XMVECTOR
, returning the result in a new instance.
The operator +
adds each component of two instances of XMVECTOR Data Type, and then returns the result in a new XMVECTOR
instance.
Note This operator is only available under C++.
XMVECTOR operator +(
XMVECTOR V1,
XMVECTOR V2
);
V1
Instance ofXMVECTOR
whose components added to those of V2.V2
Instance ofXMVECTOR
whose components added to those of V1.
XMVECTOR
instance whose components are the sum of the corresponding components of V1 and V2.
The following pseudocode demonstrates the operation of this operator:
XMVECTOR V1;
XMVECTOR V2;
XMVECTOR Vout;
Vout.x = V1.x + V2.x;
Vout.y = V1.y + V2.y;
Vout.z = V1.z + V2.z;
Vout.w = V1.w + V2.w;
Namespace |
Use DirectX. |
Header |
DirectXMath.h |
Reference