removed minor bugs
This commit is contained in:
parent
affcaabe96
commit
ae12059ff8
|
|
@ -49,7 +49,7 @@ int main()
|
||||||
{
|
{
|
||||||
MyMesh m;
|
MyMesh m;
|
||||||
vcg::tri::Tetrahedron(m);
|
vcg::tri::Tetrahedron(m);
|
||||||
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(mesh);
|
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(m);
|
||||||
OneRingNeighborhood(&(*m.face.begin()));
|
OneRingNeighborhood(&(*m.face.begin()));
|
||||||
OneRingNeighborhoodJP(&(*m.face.begin()));
|
OneRingNeighborhoodJP(&(*m.face.begin()));
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ int main()
|
||||||
{
|
{
|
||||||
MyMesh m;
|
MyMesh m;
|
||||||
vcg::tri::Tetrahedron(m);
|
vcg::tri::Tetrahedron(m);
|
||||||
vcg::tri::UpdateTopology<MyVCGMesh>::FaceFace(mesh);
|
vcg::tri::UpdateTopology<MyVCGMesh>::VertexFace(m);
|
||||||
OneRingNeighborhoodVF(&(*m.vert.begin()));
|
OneRingNeighborhoodVF(&(*m.vert.begin()));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue