Skip to content
Snippets Groups Projects
Commit 00e98dca authored by Tom Fischer's avatar Tom Fischer
Browse files

[A/U/ME] ResetPropertyInPolygonalRegion: Generate non-existing int-property.

parent fe712794
No related branches found
No related tags found
No related merge requests found
......@@ -224,6 +224,18 @@ int main (int argc, char* argv[])
if (int_property_arg.isSet()) {
int int_property_val(int_property_arg.getValue());
// check if PropertyVector exists
boost::optional<MeshLib::PropertyVector<int> &> opt_pv(
mesh->getProperties().getPropertyVector<int>(property_name)
);
if (!opt_pv) {
opt_pv = mesh->getProperties().createNewPropertyVector<int>(
property_name, MeshLib::MeshItemType::Cell, 1);
opt_pv.get().resize(mesh->getElements().size());
INFO("Created PropertyVector with name \"%s\".", property_name.c_str());
}
resetMeshElementProperty(*mesh, polygon, property_name, int_property_val);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment