fix identify periodic

This commit is contained in:
Christopher Lackner
2020-03-17 15:32:42 +01:00
parent b8d313f056
commit ff60ca3f55
2 changed files with 7 additions and 5 deletions

View File

@@ -856,6 +856,10 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
py::arg("identnr"),
py::arg("type"))
.def("IdentifyPeriodicBoundaries", &Mesh::IdentifyPeriodicBoundaries)
.def("GetNrIdentifications", [](Mesh& self)
{
return self.GetIdentifications().GetMaxNr();
})
.def ("CalcLocalH", &Mesh::CalcLocalH)
.def ("SetMaxHDomain", [] (Mesh& self, py::list maxhlist)
{