Fixed several unused variables

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1150 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2014-08-29 08:28:47 +00:00
parent 7e0d758ad2
commit 24bd7be273
5 changed files with 14 additions and 14 deletions

View File

@@ -129,7 +129,7 @@ distPointTriangleSquared( const Point& _p,
s01 = ( v0v1 | v0p ) * inv_v0v1_2;
if (s01 < 0.0)
{
const Point n = v0v1 % v0v2; // not normalized !
// const Point n = v0v1 % v0v2; // not normalized !
s02 = ( v0v2 | v0p ) * inv_v0v2_2;
if (s02 <= 0.0) {
v0p = _v0;