From 831d15a15af8f765d7c91d1ad30a442e98c0bc12 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Wed, 20 Feb 2019 22:45:06 +0100 Subject: [PATCH] [MeL] Add mesh equality/inequality comparison. --- MeshLib/Mesh.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/MeshLib/Mesh.h b/MeshLib/Mesh.h index 44d0059239e..5cf9460d5dd 100644 --- a/MeshLib/Mesh.h +++ b/MeshLib/Mesh.h @@ -188,6 +188,16 @@ protected: }; /* class */ +/// Meshes are equal if their id's are equal. +inline bool operator==(Mesh const& a, Mesh const& b) +{ + return a.getID() == b.getID(); +} + +inline bool operator!=(Mesh const& a, Mesh const& b) +{ + return !(a == b); +} /// Scales the mesh property with name \c property_name by given \c factor. /// \note The property must be a "double" property. -- GitLab