added HasPerVertexVFAdjacency and HasPerFaceVFAdjacency. Removed

generic HasVFAdjacency which made the logical AND of the two and updated the 
relative calls.
This commit is contained in:
ganovelli 2010-06-24 18:48:40 +00:00
parent eb3f1a97fc
commit f890ce75ee
1 changed files with 1 additions and 1 deletions

View File

@ -1280,7 +1280,7 @@ static void VertexCoordPasoDobleFast(MeshType &m, int NormalSmoothStep, typename
PDFaceInfo lpzf;
lpzf.m=CoordType(0,0,0);
assert(HasVFAdjacency(m));
assert(HasPerVertexVFAdjacency(m) && HasPerFaceVFAdjacency(m));
SimpleTempData< typename MeshType::VertContainer, PDVertInfo> TDV(m.vert,lpzv);
SimpleTempData< typename MeshType::FaceContainer, PDFaceInfo> TDF(m.face,lpzf);