Removed the ComputeNormal functions from the face. Almost never used and superfluous

This commit is contained in:
Paolo Cignoni 2014-11-12 00:05:45 +00:00
parent 16f4795588
commit b1b3068ba9
1 changed files with 0 additions and 6 deletions

View File

@ -207,12 +207,6 @@ private:
typename T::VertexType *v[3];
};
template <class T>
void ComputeNormal(T &f) { f.N().Import(vcg::Normal<T>(f)); }
template <class T>
void ComputeNormalizedNormal(T &f) { f.N().Import(vcg::NormalizedNormal<T>(f)); }
template <class A, class T> class NormalAbs: public T {
public:
typedef A NormalType;