Added better documentation (with an example and the V0 V1 V2 access members

This commit is contained in:
Paolo Cignoni 2005-01-03 11:22:31 +00:00
parent 7a2475edd5
commit 8b88b2520e
1 changed files with 17 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.14 2004/10/28 00:50:48 cignoni
Better Doxygen documentation
Revision 1.13 2004/10/18 17:14:42 ganovelli Revision 1.13 2004/10/18 17:14:42 ganovelli
error FFP -> FFp error FFP -> FFp
@ -337,6 +340,14 @@ public:
/** Class VFIterator. /** Class VFIterator.
This class is used as an iterator over the VF adjacency. This class is used as an iterator over the VF adjacency.
It allow to easily traverse all the faces around a given vertex;
typical example:
vcg::face::VFIterator<FaceType> vfi(v[1]);
while (!vfi.End()){
vfi.V1()->ClearV();
++vfi;
}
*/ */
template <typename FaceType> template <typename FaceType>
@ -367,7 +378,12 @@ public:
VFIterator(VertexType * _v){f = _v->VFp(); z = _v->VFi();} VFIterator(VertexType * _v){f = _v->VFp(); z = _v->VFi();}
VFIFaceType *& F() { return f;} VFIFaceType *& F() { return f;}
int & I() { return z;} int & I() { return z;}
inline VertexType *V() const { return f->V(z);}
inline VertexType * const & V0() const { return f->V0(z);}
inline VertexType * const & V1() const { return f->V1(z);}
inline VertexType * const & V2() const { return f->V2(z);}
bool End() const {return f==0;} bool End() const {return f==0;}
VFIFaceType *operator++() { VFIFaceType *operator++() {