Disabled unused variables

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@493 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-01-13 09:42:22 +00:00
parent 807f5973fb
commit 738dc609c4

View File

@@ -956,7 +956,7 @@ point2triangle_residual(const Vec3f &p, const Vec3f tri[3], float &s, float &t)
float c = dot(E1, E1); // fA11 float c = dot(E1, E1); // fA11
float d = dot(E0, D); // fB0 float d = dot(E0, D); // fB0
float e = dot(E1, D); // fB1 float e = dot(E1, D); // fB1
float f = dot(D, D); // fC //float f = dot(D, D); // fC
float det = fabsf(a*c - b*b); float det = fabsf(a*c - b*b);
s = b*e-c*d; s = b*e-c*d;
t = b*d-a*e; t = b*d-a*e;