Skip to content

Commit

Permalink
Merge branch 'mesh_update' into 'master'
Browse files Browse the repository at this point in the history
export update method for mesh

See merge request jschoeberl/netgen!317
  • Loading branch information
JSchoeberl committed Apr 7, 2020
2 parents d74061d + cb015c9 commit af25893
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libsrc/meshing/python_mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1016,6 +1016,10 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
res["tet"] = py::make_tuple( values[2], values[3] );
return res;
}, py::arg("badelement_limit")=175.0)
.def ("Update", [](Mesh & self)
{
self.SetNextTimeStamp();
})
.def ("CalcTotalBadness", &Mesh::CalcTotalBad)
.def ("GetQualityHistogram", &Mesh::GetQualityHistogram)
;
Expand Down

0 comments on commit af25893

Please sign in to comment.