From abe971f15d5b45f8eb71c4d1fc730ca71dedf945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Sch=C3=B6berl?= Date: Mon, 23 Sep 2019 11:22:34 +0200 Subject: [PATCH] export ANALYSE geometry --- libsrc/meshing/python_mesh.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libsrc/meshing/python_mesh.cpp b/libsrc/meshing/python_mesh.cpp index 727d476b..5db1a615 100644 --- a/libsrc/meshing/python_mesh.cpp +++ b/libsrc/meshing/python_mesh.cpp @@ -1000,9 +1000,10 @@ DLL_HEADER void ExportNetgenMeshing(py::module &m) Pro/ENGINEER format (*.fnf) )delimiter"); py::enum_(m,"MeshingStep") - .value("MESHEDGES",MESHCONST_MESHEDGES) - .value("MESHSURFACE",MESHCONST_OPTSURFACE) - .value("MESHVOLUME",MESHCONST_OPTVOLUME) + .value("ANALYSE", MESHCONST_ANALYSE) + .value("MESHEDGES", MESHCONST_MESHEDGES) + .value("MESHSURFACE", MESHCONST_OPTSURFACE) + .value("MESHVOLUME", MESHCONST_OPTVOLUME) ; typedef MeshingParameters MP;