mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-30 01:03:30 +01:00
changed inequality
This commit is contained in:
parent
d5b79b043b
commit
e662a5c446
@ -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 == b);
|
return !(a.x == b.x) && !(a.y == b.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Peform the dot product on two vectors.
|
/// Peform the dot product on two vectors.
|
||||||
|
Loading…
Reference in New Issue
Block a user