operator / operators
Division operator.
Overload list
Operator | Description |
---|---|
XMVECTOR::operator / (XMVECTOR,float) | Divides an XMVECTOR instance by a floating point value, returning the result a new instance of XMVECTOR . The operator / divides each component of an instance of XMVECTOR Data Type by a floating point value, returning a new XMVECTOR instance containing the result. Note: This operator is only available under C++. |
XMVECTOR::operator / (XMVECTOR,XMVECTOR) | Divides one instance of XMVECTOR by a second instance, returning the result in a third instance. The operator / divides each component of an instance of XMVECTOR Data Type by the corresponding component in a second instance of XMVECTOR , returning a new XMVECTOR instance containing the result. Note: This operator is only available under C++. |
See also
-
Reference