diff --git a/src/meshlabplugins/filter_func/filter_func.cpp b/src/meshlabplugins/filter_func/filter_func.cpp index d47a10eca..55d94d295 100644 --- a/src/meshlabplugins/filter_func/filter_func.cpp +++ b/src/meshlabplugins/filter_func/filter_func.cpp @@ -1310,7 +1310,7 @@ void FilterFunctionPlugin::setPerVertexVariables(Parser &p, CMeshO &m) tri::Allocator::GetAllPerVertexAttribute< Point3f >(m,AllVertexAttribName); for(int i = 0; i < (int) AllVertexAttribName.size(); i++) { - CMeshO::PerVertexAttributeHandle hh3 = tri::Allocator::GetPerVertexAttribute(m, AllVertexAttribName[i]); + CMeshO::PerVertexAttributeHandle hh3 = tri::Allocator::GetPerVertexAttribute(m, AllVertexAttribName[i]); v3_handlers.push_back(hh3); diff --git a/src/meshlabplugins/filter_func/filter_func.h b/src/meshlabplugins/filter_func/filter_func.h index 7b004c1f0..04834b0b9 100644 --- a/src/meshlabplugins/filter_func/filter_func.h +++ b/src/meshlabplugins/filter_func/filter_func.h @@ -43,13 +43,13 @@ protected: double fr,fg,fb,fa,fnx,fny,fnz,fq,fsel; double v,f,v0i,v1i,v2i,ti; std::vector v_attrNames; // names of the per vertex attributes - std::vector v_attrValue; // values of the per vertex attributes + std::vector v_attrValue; // values of the per vertex attributes std::vector v3_attrNames; // names of the per vertex attributes There are 3x (one foreach coord _x, _y, _z) - std::vector v3_attrValue; // values of the per vertex attributes. There are 3x (one foreach coord _x, _y, _z) + std::vector v3_attrValue; // values of the per vertex attributes. There are 3x (one foreach coord _x, _y, _z) std::vector f_attrNames; - std::vector f_attrValue; + std::vector f_attrValue; std::vector > v_handlers; - std::vector > v3_handlers; + std::vector > v3_handlers; std::vector > f_handlers; public: