first version
This commit is contained in:
parent
655207e1dd
commit
affcaabe96
|
@ -0,0 +1,39 @@
|
|||
#include <vector>
|
||||
|
||||
#include <vcg/simplex/vertexplus/base.h>
|
||||
#include <vcg/simplex/vertexplus/component.h>
|
||||
#include <vcg/simplex/faceplus/base.h>
|
||||
#include <vcg/simplex/faceplus/component.h>
|
||||
|
||||
#include <vcg/complex/trimesh/base.h>
|
||||
#include<vcg/complex/trimesh/create/platonic.h>
|
||||
|
||||
#include<vcg/complex/trimesh/update/topology.h>
|
||||
|
||||
#include <vcg/simplex/face/pos.h>
|
||||
|
||||
class MyEdge;
|
||||
class MyFace;
|
||||
|
||||
class MyVertex: public vcg::VertexSimp2<MyVertex,MyEdge,MyFace, vcg::vert::Coord3d, vcg::vert::Normal3f,vcg::vert::VFAdj>{};
|
||||
class MyFace: public vcg::FaceSimp2<MyVertex,MyEdge,MyFace, vcg::face::VertexRef,vcg::face::VFAdj>{};
|
||||
class MyMesh: public vcg::tri::TriMesh< std::vector<MyVertex>, std::vector<MyFace> > {};
|
||||
|
||||
void OneRingNeighborhoodVF( MyVertex * v)
|
||||
{
|
||||
vcg::face::VFIterator<MyFace> vfi(v); //initialize the iterator tohe first face
|
||||
for(;!vfi.End();++vfi)
|
||||
{
|
||||
MyFace* f = vfi.F();
|
||||
// ...do something with face f
|
||||
}
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
MyMesh m;
|
||||
vcg::tri::Tetrahedron(m);
|
||||
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(mesh);
|
||||
OneRingNeighborhoodVF(&(*m.vert.begin()));
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue