Skip to content
Snippets Groups Projects
Commit 30529400 authored by mattijs's avatar mattijs
Browse files

STYLE: tetrahedronI.H: unused variables

parent 624237bf
Branches
Tags
No related merge requests found
...@@ -704,8 +704,6 @@ tetSliceWithPlane ...@@ -704,8 +704,6 @@ tetSliceWithPlane
// Tet cut into two prisms. Determine the positive one. // Tet cut into two prisms. Determine the positive one.
label pos0 = -1; label pos0 = -1;
label pos1 = -1; label pos1 = -1;
label neg0 = -1;
label neg1 = -1;
forAll(d, i) forAll(d, i)
{ {
if (d[i] > 0) if (d[i] > 0)
...@@ -719,17 +717,6 @@ tetSliceWithPlane ...@@ -719,17 +717,6 @@ tetSliceWithPlane
pos1 = i; pos1 = i;
} }
} }
else
{
if (neg0 == -1)
{
neg0 = i;
}
else
{
neg1 = i;
}
}
} }
//Pout<< "Split 2pos tet " << tet << " d:" << d //Pout<< "Split 2pos tet " << tet << " d:" << d
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment