diff --git a/vcg/simplex/faceplus/component.h b/vcg/simplex/faceplus/component.h index 005e9833..ffd257a3 100644 --- a/vcg/simplex/faceplus/component.h +++ b/vcg/simplex/faceplus/component.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.5 2005/11/21 21:44:47 cignoni +Moved ComputeNormal and ComputeNormalizedNormal out of the face class (no more a member function!) + Revision 1.4 2005/11/18 15:44:49 cignoni Access to constant normal changed from by val to by reference @@ -160,9 +163,6 @@ public: NormalType cN() const { return _norm; } static bool HasFaceNormal() { return true; } - void ComputeNormal() { _norm = vcg::Normal(*(static_cast(this))); } - void ComputeNormalizedNormal() { _norm = vcg::NormalizedNormal(*this);} - private: NormalType _norm; };