git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1135 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/5/head
aramis_acg 2012-02-02 03:05:41 +00:00
parent 8252a31e82
commit 02fc5effba
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,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.x != b.x || a.y != b.y;
} }
/// Peform the dot product on two vectors. /// Peform the dot product on two vectors.