Bitwise Equality Operator (D3D_OVERLOADS)
This binary operator is an overloaded operator for the D3D_OVERLOADS extensions. The bitwise-equality operator is defined as follows:
int operator == (const _D3DVECTOR& v1, const _D3DVECTOR& v2);
inline int
operator == (const _D3DVECTOR& v1, const _D3DVECTOR& v2)
{
return v1.x==v2.x && v1.y==v2.y && v1.z == v2.z;
}