Returns true if the given 3D vector is deep equal with this 3D vector.
bool equals(Vector3 v ) { return ( ( v.x == x ) && ( v.y == y ) && ( v.z == z ) ); }