From 4f73a93dd0def8122a3cf7414ecfa7b42778d3c1 Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 10 Nov 2005 15:36:42 +0000 Subject: [PATCH] Added clarifying comment in an assert --- vcg/complex/trimesh/update/topology.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/complex/trimesh/update/topology.h b/vcg/complex/trimesh/update/topology.h index b1519472..4732ff10 100644 --- a/vcg/complex/trimesh/update/topology.h +++ b/vcg/complex/trimesh/update/topology.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.15 2004/10/20 07:33:10 cignoni +removed FaceBorderFlags (already present in update/flags.h) + Revision 1.14 2004/10/18 17:10:22 ganovelli added ::FaceBorderFLags @@ -115,7 +118,7 @@ void Set( FacePointer pf, const int nz ) v[0] = pf->V(nz); v[1] = pf->V((nz+1)%3); - assert(v[0] != v[1]); + assert(v[0] != v[1]); // The face pointed by 'f' is Degenerate (two coincident vertexes) if( v[0] > v[1] ) math::Swap(v[0],v[1]); f = pf;