From f2be4a4d95de8f5e39e995b4be3cec4a59df11d2 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 14 Nov 2012 12:37:18 +0000 Subject: [PATCH] mismatch in the VertexVectorHasVFAdjacency and FaceVectorHasVFAdjacency names --- vcg/simplex/face/component_ocf.h | 2 +- vcg/simplex/vertex/component_ocf.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/simplex/face/component_ocf.h b/vcg/simplex/face/component_ocf.h index 2d29e8d9..bc07ba54 100644 --- a/vcg/simplex/face/component_ocf.h +++ b/vcg/simplex/face/component_ocf.h @@ -775,7 +775,7 @@ public: namespace tri { template < class FaceType > - bool FaceVectorHasPerFaceVFAdjacency(const face::vector_ocf &fv) + bool FaceVectorHasVFAdjacency(const face::vector_ocf &fv) { if(FaceType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled(); else return FaceType::HasVFAdjacency(); diff --git a/vcg/simplex/vertex/component_ocf.h b/vcg/simplex/vertex/component_ocf.h index 019377e2..0c0e6667 100644 --- a/vcg/simplex/vertex/component_ocf.h +++ b/vcg/simplex/vertex/component_ocf.h @@ -596,7 +596,7 @@ public: namespace tri { template < class VertexType > -bool VertexVectorHasPerVertexVFAdjacency(const vertex::vector_ocf &fv) +bool VertexVectorHasVFAdjacency(const vertex::vector_ocf &fv) { if(VertexType::HasVFAdjacencyOcf()) return fv.IsVFAdjacencyEnabled(); else return VertexType::HasVFAdjacency();