Fixed more warnings

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@878 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2013-07-24 13:18:49 +00:00
parent ff66925127
commit 6d04e56080
3 changed files with 3 additions and 3 deletions

View File

@@ -380,7 +380,7 @@ CatmullClarkT<MeshType,RealType>::update_vertex( MeshType& _m, const VertexHandl
Q /= valence*valence;//neigboring_faces;
pos += _m.point(_vh) * (valence-2.0)/valence + Q;
pos += _m.point(_vh) * (valence - RealType(2.0) )/valence + Q;
// pos = vector_cast<Vec>(_m.point(_vh));
}