Skip to content
Snippets Groups Projects
Commit 1d803641 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

default arg for setTransfiniteVolume

parent dc4ddac1
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,8 @@ GMSH_API gmshModelSetTransfiniteSurface(const int tag, ...@@ -86,7 +86,8 @@ GMSH_API gmshModelSetTransfiniteSurface(const int tag,
const std::vector<int> &cornerTags = const std::vector<int> &cornerTags =
std::vector<int>()); std::vector<int>());
GMSH_API gmshModelSetTransfiniteVolume(const int tag, GMSH_API gmshModelSetTransfiniteVolume(const int tag,
const std::vector<int> &cornerTags); const std::vector<int> &cornerTags =
std::vector<int>());
GMSH_API gmshModelSetRecombine(const int dim, const int tag, const double angle = 45.); GMSH_API gmshModelSetRecombine(const int dim, const int tag, const double angle = 45.);
GMSH_API gmshModelSetSmoothing(const int dim, const int tag, const int val); GMSH_API gmshModelSetSmoothing(const int dim, const int tag, const int val);
GMSH_API gmshModelSetReverseMesh(const int dim, const int tag, const bool val = true); GMSH_API gmshModelSetReverseMesh(const int dim, const int tag, const bool val = true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment