diff --git a/vcg/simplex/face/component.h b/vcg/simplex/face/component.h index dc9c3827..050af978 100644 --- a/vcg/simplex/face/component.h +++ b/vcg/simplex/face/component.h @@ -247,10 +247,10 @@ private: template -void ComputeNormal(T &f) { f.N() = vcg::Normal(f); } +void ComputeNormal(T &f) { f.N().Import(vcg::Normal(f)); } template -void ComputeNormalizedNormal(T &f) { f.N() = vcg::NormalizedNormal(f); } +void ComputeNormalizedNormal(T &f) { f.N().Import(vcg::NormalizedNormal(f)); } template class NormalAbs: public T { public: