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

COMP: surfaceCheck: edgei vs edgeI

parent b6ecdded
Branches
Tags
No related merge requests found
......@@ -896,12 +896,12 @@ int main(int argc, char *argv[])
forAll(surf.edges(), edgei)
{
const edge& e = surf.edges()[edgeI];
const edge& e = surf.edges()[edgei];
const point& start = surf.points()[surf.meshPoints()[e[0]]];
const point& end = surf.points()[surf.meshPoints()[e[1]]];
// Exclude hits of connected triangles
treeDataTriSurface::findSelfIntersectOp exclOp(tree, edgeI);
treeDataTriSurface::findSelfIntersectOp exclOp(tree, edgei);
pointIndexHit hitInfo(tree.findLineAny(start, end, exclOp));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment