From 755eb7dda7770745a81636886ab44851ce0c8f20 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Mon, 3 Dec 2012 17:47:15 +0000 Subject: [PATCH] added HasNormal to EmptyCore --- vcg/simplex/face/component.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index 6e2f460d..f5ed7c29 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -52,6 +52,7 @@ public: NormalType &WN(int) { static NormalType dummy_normal(0, 0, 0); assert(0); return dummy_normal; } NormalType cWN(int) const { static NormalType dummy_normal(0, 0, 0); return dummy_normal; } + static bool HasNormal() { return false; } static bool HasWedgeNormal() { return false; } static bool HasFaceNormal() { return false; }