diff --git a/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.cpp b/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.cpp index 0c55f83b02259734877c901a23f2250130979d12..0d37e5998c1f10ccd7a746147cb9a4a80619ec4b 100644 --- a/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.cpp +++ b/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.cpp @@ -30,8 +30,12 @@ namespace MeshLib { -Mesh2MeshPropertyInterpolation::Mesh2MeshPropertyInterpolation(Mesh const*const src_mesh, std::vector<double> const*const src_properties) : - _src_mesh(src_mesh), _src_properties(src_properties) +Mesh2MeshPropertyInterpolation::Mesh2MeshPropertyInterpolation( + Mesh const*const src_mesh, + std::string const& property_name, + std::vector<double> const*const src_properties) + : _src_mesh(src_mesh), _property_name(property_name), + _src_properties(src_properties) {} bool Mesh2MeshPropertyInterpolation::setPropertiesForMesh(Mesh *dest_mesh, std::vector<double>& dest_properties) const diff --git a/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.h b/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.h index 3d4a55257785d3f7fa85f5235535b9191d5e5773..63b6565386a874d1fdd7485cfce7873f1e3b3482 100644 --- a/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.h +++ b/MeshLib/MeshEditing/Mesh2MeshPropertyInterpolation.h @@ -31,13 +31,13 @@ public: * Constructor taking the source or input mesh and properties. * @param source_mesh the mesh the given property information is * assigned to. - * @param source_properties a vector containing property information - * assigned to the mesh. The number of entries in the property vector - * must be at least the number of different properties stored in mesh. - * For instance if mesh has \f$n\f$ (pairwise) different property - * indices the vector of properties must have \f$\ge n\f$ entries. + * @param property_name is the name of a PropertyVector in the \c + * source_mesh */ - Mesh2MeshPropertyInterpolation(Mesh const*const source_mesh, std::vector<double> const*const source_properties); + Mesh2MeshPropertyInterpolation( + Mesh const* const source_mesh, + std::string const& property_name, + std::vector<double> const* const source_properties); /** * Calculates entries for the property vector and sets appropriate indices in the @@ -65,6 +65,7 @@ private: void interpolateElementPropertiesToNodeProperties(std::vector<double> &interpolated_node_properties) const; Mesh const*const _src_mesh; + std::string const& _property_name; std::vector<double> const*const _src_properties; };