From 015d94f73629f9865b24f797836dd696d03bf340 Mon Sep 17 00:00:00 2001 From: dibenedetto Date: Mon, 29 Jun 2009 05:46:43 +0000 Subject: [PATCH] fixed typo in normal and color (was ImporLocal()). --- vcg/simplex/vertex/component_ocf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vcg/simplex/vertex/component_ocf.h b/vcg/simplex/vertex/component_ocf.h index 8071fa07..a8e87dd7 100644 --- a/vcg/simplex/vertex/component_ocf.h +++ b/vcg/simplex/vertex/component_ocf.h @@ -429,7 +429,7 @@ public: void ImportLocal(const LeftV & leftV){ if((*this).Base().NormalEnabled && leftV.Base().NormalEnabled ) // copy the data only if they are enabled in both vertices N().Import(leftV.cN()); - T::ImporLocal(leftV);} + T::ImportLocal(leftV);} }; template class Normal3sOcf: public NormalOcf {}; @@ -448,7 +448,7 @@ public: { if((*this).Base().ColorEnabled && leftV.Base().ColorEnabled ) // copy the data only if they are enabled in both vertices C() = leftV.cC(); - T::ImporLocal(leftV); + T::ImportLocal(leftV); } static bool HasColor() { return true; } @@ -468,7 +468,7 @@ public: { if((*this).Base().QualityEnabled && leftV.Base().QualityEnabled ) // copy the data only if they are enabled in both vertices Q() = leftV.cQ(); - T::ImporLocal(leftV); + T::ImportLocal(leftV); } static bool HasQuality() { return true; } static bool HasQualityOcf() { assert(!T::HasQualityOcf()); return true; }