mirror of
https://github.com/jhasse/poly2tri.git
synced 2025-09-10 15:35:40 +02:00
fixed p2t::Point inequility operator
This commit is contained in:
@@ -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.
|
||||||
|
Reference in New Issue
Block a user