mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 18:09:16 +00:00
fixed CVector !=
This commit is contained in:
parent
080689589c
commit
b714103703
|
@ -95,6 +95,10 @@ public:
|
||||||
return x == right.x && y == right.y && z == right.z;
|
return x == right.x && y == right.y && z == right.z;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const bool operator!=(CVector const &right) {
|
||||||
|
return x != right.x || y != right.y || z != right.z;
|
||||||
|
}
|
||||||
|
|
||||||
bool IsZero(void) const { return x == 0.0f && y == 0.0f && z == 0.0f; }
|
bool IsZero(void) const { return x == 0.0f && y == 0.0f && z == 0.0f; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue