mirror of
				https://github.com/jhasse/poly2tri.git
				synced 2025-11-04 06:09:31 +01: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)
 | 
			
		||||
{
 | 
			
		||||
  return a.x != b.x && a.y != b.y;
 | 
			
		||||
  return !(a == b);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/// Peform the dot product on two vectors.
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user