From b1b3068ba90cb238a95757a7e4621e88f205e557 Mon Sep 17 00:00:00 2001 From: cignoni Date: Wed, 12 Nov 2014 00:05:45 +0000 Subject: [PATCH] Removed the ComputeNormal functions from the face. Almost never used and superfluous --- vcg/simplex/face/component.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index a5802ab1..5b3d599b 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -207,12 +207,6 @@ private: typename T::VertexType *v[3]; }; -template -void ComputeNormal(T &f) { f.N().Import(vcg::Normal(f)); } - -template -void ComputeNormalizedNormal(T &f) { f.N().Import(vcg::NormalizedNormal(f)); } - template class NormalAbs: public T { public: typedef A NormalType;