Skip to content
Snippets Groups Projects
Verified Commit 5dc9a940 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

collision: add operator != for Contact

parent 90665d88
No related branches found
No related tags found
No related merge requests found
......@@ -129,6 +129,11 @@ struct Contact
&& pos == other.pos
&& penetration_depth == other.penetration_depth;
}
bool operator != (const Contact& other) const
{
return !(*this == other);
}
};
struct CollisionResult;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment