Make Hausdorff module thread safe. Removed static point vector. (Thanks to Falko Löffler for the fix)

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@796 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-01-29 09:00:06 +00:00
parent feaf69d499
commit 9ed294c929
2 changed files with 11 additions and 7 deletions

View File

@@ -137,7 +137,10 @@ class ModHausdorffT: public ModBaseT<MeshT> {
private:
Mesh& mesh_;
/// Temporary point storage
Points tmp_points_;
Mesh& mesh_;
Scalar tolerance_;
OpenMesh::FPropHandleT<Points> points_;