diff --git a/Common/Gmsh.cpp b/Common/Gmsh.cpp index 62e960cafb69422ef3395b4c08cce91adc6acee2..f6ca2db0230d43a2091272853ae1c5d3209e7225 100644 --- a/Common/Gmsh.cpp +++ b/Common/Gmsh.cpp @@ -84,8 +84,9 @@ int GmshInitialize(int argc, char **argv) PluginManager::instance()->registerDefaultPlugins(); #endif - // Initialize robust predicates (no static filter for now, we do not know the size of the domain) - robustPredicates::exactinit(0,1.0,1.0,1.0); + // Initialize robust predicates (no static filter for now, we do not know the + // size of the domain) + robustPredicates::exactinit(0, 1.0, 1.0, 1.0); if(dummy) delete dummy; return 1; @@ -113,37 +114,43 @@ int GmshSetBoundingBox(double xmin, double xmax, int GmshSetOption(const std::string &category, const std::string &name, std::string value, int index) { - return StringOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + return StringOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } int GmshSetOption(const std::string &category, const std::string &name, double value, int index) { - return NumberOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + return NumberOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } int GmshSetOption(const std::string &category, const std::string &name, unsigned int value, int index) { - return ColorOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + return ColorOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } void GmshSetStringOption(const std::string &category, const std::string &name, std::string value, int index) { - StringOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + StringOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } void GmshSetNumberOption(const std::string &category, const std::string &name, double value, int index) { - NumberOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + NumberOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } void GmshSetColorOption(const std::string &category, const std::string &name, unsigned int value, int index) { - ColorOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), value); + ColorOption(GMSH_SET|GMSH_GUI, category.c_str(), index, name.c_str(), + value, false); } int GmshGetOption(const std::string &category, const std::string &name,