From 9d782841934a4abfc9d3fe3ddeab8e2dc59e8eba Mon Sep 17 00:00:00 2001 From: gianpaolopalma Date: Thu, 7 Dec 2017 13:53:24 +0100 Subject: [PATCH] Added HasVertexRef function --- vcg/simplex/face/component_polygon.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/simplex/face/component_polygon.h b/vcg/simplex/face/component_polygon.h index e63bd653..dde27016 100644 --- a/vcg/simplex/face/component_polygon.h +++ b/vcg/simplex/face/component_polygon.h @@ -108,6 +108,7 @@ public: T::Dealloc(); } + static bool HasVertexRef() { return true; } static bool HasFVAdjacency() { return true; } static void Name(std::vector & name){name.push_back(std::string("PFVAdj"));T::Name(name);}