From b420c28eedac58c426b775d691ee5adc5e6651b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Thu, 25 Oct 2012 10:58:58 +0000 Subject: [PATCH] Missing int git-svn-id: http://www.openflipper.org/svnrepo/OpenFlipper/branches/Free@15713 383ad7c9-94d9-4d36-a494-682f7c89f535 --- MeshRepairPlugin.cc | 1 + MeshRepairPluginT.cc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/MeshRepairPlugin.cc b/MeshRepairPlugin.cc index 9b360c4..b38fad3 100644 --- a/MeshRepairPlugin.cc +++ b/MeshRepairPlugin.cc @@ -959,6 +959,7 @@ void MeshRepairPlugin::detectFlatValence3Vertices(int _objectId, double _angle) } + void MeshRepairPlugin::fixMesh(int _objectId, double _epsilon) { // get the target mesh diff --git a/MeshRepairPluginT.cc b/MeshRepairPluginT.cc index ba4f98b..d94ede3 100644 --- a/MeshRepairPluginT.cc +++ b/MeshRepairPluginT.cc @@ -73,7 +73,7 @@ void MeshRepairPlugin::flipOrientationSelected(MeshT *_mesh) pos += valence[i]; // add valence vertices in the inverse order - for (unsigned j = 1 ; j <= valence[i] ; ++j ) + for (unsigned int j = 1 ; j <= valence[i] ; ++j ) { typename MeshT::VertexHandle handle = handles[pos - j]; -- GitLab