Skip to content
Snippets Groups Projects
Commit 611d1700 authored by Oliver Sander's avatar Oliver Sander
Browse files

remove a few lines of dead code

[[Imported from SVN: r2011]]
parent 6c336ebc
No related branches found
No related tags found
No related merge requests found
......@@ -79,12 +79,6 @@ UGGridIntersectionIterator <GridImp>::outerNormal () const
ca[i] = cPos[i] - aPos[i];
}
// #define V3_VECTOR_PRODUCT(A,B,C) {(C)[0] = (A)[1]*(B)[2] - (A)[2]*(B)[1];\
// (C)[1] = (A)[2]*(B)[0] - (A)[0]*(B)[2];\
// (C)[2] = (A)[0]*(B)[1] - (A)[1]*(B)[0];}
// V3_VECTOR_PRODUCT(ba, ca, outerNormal_);
// #undef V3_VECTOR_PRODUCT
outerNormal_[0] = ba[1]*ca[2] - ba[2]*ca[1];
outerNormal_[1] = ba[2]*ca[0] - ba[0]*ca[2];
outerNormal_[2] = ba[0]*ca[1] - ba[1]*ca[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment