Compare commits

..

No commits in common. "aa3e6e67df0e250562833bf567c12864a9c51318" and "ae368cdfb4272820003ef0fbf8b9c8fbbec301db" have entirely different histories.

View File

@ -52,8 +52,6 @@ double pointTriangleDistance(double *p, vtkCell *triangle, double *direction) {
double db = vtkMath::Dot(vecTB, bp);
double dc = vtkMath::Dot(vecTC, cp);
double distance = 0;
if(da <= 0 && db <= 0 && dc <= 0) {
double na[3] = {
n[0] * a[0],
@ -80,7 +78,7 @@ double pointTriangleDistance(double *p, vtkCell *triangle, double *direction) {
direction[1] = nt[1];
direction[2] = nt[2];
vtkMath::Normalize(direction);
distance = vtkMath::Norm(nt);
return vtkMath::Norm(nt);
} else {
double normalA[3];
@ -107,16 +105,6 @@ double pointTriangleDistance(double *p, vtkCell *triangle, double *direction) {
direction[2] = normalC[2];
}
distance = min;
return min;
}
if(vtkMath::Dot(direction, n) < 0) {
direction[0] = -direction[0];
direction[1] = -direction[1];
direction[2] = -direction[2];
return -distance;
} else {
return distance;
}
}