Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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: |
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: |
See also
-
Reference