mismatch in the VertexVectorHasVFAdjacency and FaceVectorHasVFAdjacency names

This commit is contained in:
Paolo Cignoni 2012-11-14 12:37:18 +00:00
parent eaf97c0bf3
commit f2be4a4d95
2 changed files with 2 additions and 2 deletions

View File

@ -775,7 +775,7 @@ public:
namespace tri
{
template < class FaceType >
bool FaceVectorHasPerFaceVFAdjacency(const face::vector_ocf<FaceType> &fv)
bool FaceVectorHasVFAdjacency(const face::vector_ocf<FaceType> &fv)
{
if(FaceType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled();
else return FaceType::HasVFAdjacency();

View File

@ -596,7 +596,7 @@ public:
namespace tri
{
template < class VertexType >
bool VertexVectorHasPerVertexVFAdjacency(const vertex::vector_ocf<VertexType> &fv)
bool VertexVectorHasVFAdjacency(const vertex::vector_ocf<VertexType> &fv)
{
if(VertexType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled();
else return VertexType::HasVFAdjacency();