From be10b9167bb1376dc8e588b313c61dbb32e7d921 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 7 Oct 2006 14:24:26 +0000 Subject: [PATCH] Explained the use of V() operator of a pos --- vcg/simplex/face/pos.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vcg/simplex/face/pos.h b/vcg/simplex/face/pos.h index 8f7a2d88..f08f1ac4 100644 --- a/vcg/simplex/face/pos.h +++ b/vcg/simplex/face/pos.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.21 2006/09/25 09:57:49 cignoni +Better comment on usage of VF iterators + Revision 1.20 2005/12/15 11:57:48 corsini Replace Pos with PosType @@ -418,6 +421,9 @@ public: VFIFaceType *& F() { return f;} int & I() { return z;} + + // Access to the vertex. Having a VFIterator vfi, it corresponds to + // vfi.V() = vfi.F()->V(vfi.I()) inline VertexType *V() const { return f->V(z);} inline VertexType * const & V0() const { return f->V0(z);}