From 1548d6415aac61d62fc3787db34cfcdb37290782 Mon Sep 17 00:00:00 2001 From: granzuglia Date: Fri, 6 Apr 2012 08:10:32 +0000 Subject: [PATCH] added missing functions in Empty: - static bool HasCurvatureDir() { return false; } - static bool IsCurvatureEnabled(const typename TT::VertexType *) { return false; } --- vcg/simplex/vertex/component.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vcg/simplex/vertex/component.h b/vcg/simplex/vertex/component.h index d5fad229..6ee9db6a 100644 --- a/vcg/simplex/vertex/component.h +++ b/vcg/simplex/vertex/component.h @@ -145,10 +145,12 @@ public: const ScalarType &cK2()const {static ScalarType v = 0.0;assert(0);return v;} static bool HasCurvature() { return false; } + static bool HasCurvatureDir() { return false; } static bool HasCurvatureOcf() { return false; } static bool HasCurvatureDirOcf() { return false; } static bool IsCurvatureDirEnabled(const typename TT::VertexType *) { return false; } + static bool IsCurvatureEnabled(const typename TT::VertexType *) { return false; } template < class LeftV> void ImportData(const LeftV & /*left*/ ) {