mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-30 01:03:30 +01:00
fixed p2t::Point inequility operator
This commit is contained in:
parent
544aec554c
commit
c08527deb3
@ -254,7 +254,7 @@ inline bool operator ==(const Point& a, const Point& b)
|
|||||||
|
|
||||||
inline bool operator !=(const Point& a, const Point& b)
|
inline bool operator !=(const Point& a, const Point& b)
|
||||||
{
|
{
|
||||||
return a.x != b.x && a.y != b.y;
|
return !(a == b);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Peform the dot product on two vectors.
|
/// Peform the dot product on two vectors.
|
||||||
|
Loading…
Reference in New Issue
Block a user