operator /= operators

Division Assignment operator.

Overload list

Operator Description
XMVECTOR::operator /= (XMVECTOR&,float) Divides an XMVECTOR instance by a floating point value and returns a reference to the updated instance.
The operator /= divides 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) Divides one XMVECTOR instance by a second instance, returning a reference to the updated initial instance.
The operator /= divides 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