removed minor bugs

This commit is contained in:
granzuglia 2008-05-06 16:05:20 +00:00
parent affcaabe96
commit ae12059ff8
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ int main()
{
MyMesh m;
vcg::tri::Tetrahedron(m);
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(mesh);
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(m);
OneRingNeighborhood(&(*m.face.begin()));
OneRingNeighborhoodJP(&(*m.face.begin()));
return 0;

View File

@ -33,7 +33,7 @@ int main()
{
MyMesh m;
vcg::tri::Tetrahedron(m);
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(mesh);
vcg::tri::UpdateTopology<MyVCGMesh>::VertexFace(m);
OneRingNeighborhoodVF(&(*m.vert.begin()));
return 0;
}