mismatch in the VertexVectorHasVFAdjacency and FaceVectorHasVFAdjacency names
This commit is contained in:
parent
eaf97c0bf3
commit
f2be4a4d95
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue