operator *= operators

Multiplication assignment operators

Overload list

Operator Description
XMVECTOR::operator *= (XMVECTOR&,float) Multiplies an XMVECTOR instance by a floating point value and returns a reference to the updated instance.
The operator *= multiplies each component of the current instance of XMVECTOR Data Type by a specified floating point value, returning a reference to the updated current instance.

Note:
This operator is only available under C++.


XMVECTOR::operator *= (XMVECTOR&,XMVECTOR) Multiplies one XMVECTOR instance by a second instance, returning a reference to the updated initial instance.
The operator *= multiplies each component of the current instance of XMVECTOR Data Type by the corresponding component in a second specified instance of XMVECTOR, returning a reference to the updated initial instance.

Note:
This operator is only available under C++.


See also

XMVECTOR Operators

Reference

XMVECTOR Data Type