@@ -538,7 +538,7 @@ template <int D> void bindApi(py::module &module) {
538538 " Get the level set grids of layers in the domain." )
539539 .def (" getSurfaceMesh" , &Domain<T, D>::getSurfaceMesh,
540540 py::arg (" addInterfaces" ) = false , py::arg (" sharpCorners" ) = false ,
541- py::arg (" wrappingLayerEpsilon " ) = 0.01 ,
541+ py::arg (" minNodeDistanceFactor " ) = 0.01 ,
542542 " Get the surface mesh of the domain" )
543543 .def (" getHullMesh" , &Domain<T, D>::getHullMesh,
544544 py::arg (" bottomExtension" ) = 0.0 , py::arg (" sharpCorners" ) = false )
@@ -549,7 +549,7 @@ template <int D> void bindApi(py::module &module) {
549549 .def (" saveSurfaceMesh" , &Domain<T, D>::saveSurfaceMesh,
550550 py::arg (" filename" ), py::arg (" addInterfaces" ) = false ,
551551 py::arg (" sharpCorners" ) = false ,
552- py::arg (" wrappingLayerEpsilon " ) = 1e-2 ,
552+ py::arg (" minNodeDistanceFactor " ) = 0.01 ,
553553 " Save the surface of the domain." )
554554 .def (" saveHullMesh" , &Domain<T, D>::saveHullMesh, py::arg (" filename" ),
555555 py::arg (" bottomExtension" ) = 0.0 , py::arg (" sharpCorners" ) = false ,
0 commit comments