minor fix

This commit is contained in:
Luigi Malomo 2017-12-05 18:27:17 +01:00
parent 17d89e705a
commit 950b95f9d5
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ public:
{ {
VertexPointer v0 = FindVertexSnap(f0,ip0); VertexPointer v0 = FindVertexSnap(f0,ip0);
VertexPointer v1 = FindVertexSnap(f1,ip1); VertexPointer v1 = FindVertexSnap(f1,ip1);
assert(v1>0 && v0>0 && v0!=v1); assert(v1 != NULL && v1 != NULL && v0 != v1);
FacePointer ff0,ff1; FacePointer ff0,ff1;
int e0,e1; int e0,e1;
ret &= face::FindSharedFaces<FaceType>(v0,v1,ff0,ff1,e0,e1); ret &= face::FindSharedFaces<FaceType>(v0,v1,ff0,ff1,e0,e1);