mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 05:50:32 +05:00
Compress and DeleteSurfaceElements
This commit is contained in:
parent
775d998235
commit
5a940b0b13
@ -447,6 +447,17 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m)
|
||||
return self.AddFaceDescriptor (fd);
|
||||
}))
|
||||
|
||||
.def ("DeleteSurfaceElement", FunctionPointer ([](Mesh & self, int i)
|
||||
{
|
||||
return self.DeleteSurfaceElement (i);
|
||||
}))
|
||||
|
||||
.def ("Compress", FunctionPointer ([](Mesh & self)
|
||||
{
|
||||
return self.Compress ();
|
||||
}))
|
||||
|
||||
|
||||
.def ("SetBCName", &Mesh::SetBCName)
|
||||
.def ("GetBCName", FunctionPointer([](Mesh & self, int bc)->string
|
||||
{ return self.GetBCName(bc); }))
|
||||
|
Loading…
Reference in New Issue
Block a user