We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2571d1b commit 5c64a09Copy full SHA for 5c64a09
src/model/mesh/pywrap/include/bindings_model.h
@@ -61,7 +61,10 @@ void bind_modelapi(py::module_ &m)
61
.def("get_number_of_faces", &T::getNumberOfFaces)
62
.def("is_boundary_face", &T::isBoundaryFace)
63
.def("get_global_node_from_face", &T::getGlobalNodeFromFace)
64
- .def("get_global_face", &T::getGlobalFace);
+ .def("get_global_face", &T::getGlobalFace)
65
+ .def("set_free_surface_enabled", &T::setFreeSurfaceEnabled)
66
+ .def("init_free_surface", &T::initFreeSurface)
67
+ .def("is_free_surface", &T::isFreeSurface);
68
}
69
70
// templated binder for one ModelStruct instantiation
0 commit comments