Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Romin Tomasetti
gmsh
Commits
f51e32e4
Commit
f51e32e4
authored
7 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
doc
parent
24490de4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Common/gmsh.h
+13
-0
13 additions, 0 deletions
Common/gmsh.h
with
13 additions
and
0 deletions
Common/gmsh.h
+
13
−
0
View file @
f51e32e4
...
@@ -748,14 +748,27 @@ GMSH_API void gmshModelOccSynchronize();
...
@@ -748,14 +748,27 @@ GMSH_API void gmshModelOccSynchronize();
// Module gmshModelField: per-model mesh size field functions
// Module gmshModelField: per-model mesh size field functions
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
// Creates a new mesh size field of type `type'. If `tag' is positive, assign
// the tag explcitly; otherwise a new tag is assigned automatically. Returns the
// field tag.
GMSH_API
int
gmshModelFieldCreate
(
const
std
::
string
&
type
,
const
int
tag
=
-
1
);
GMSH_API
int
gmshModelFieldCreate
(
const
std
::
string
&
type
,
const
int
tag
=
-
1
);
// Deletes the field with tag `tag'.
GMSH_API
void
gmshModelFieldDelete
(
const
int
tag
);
GMSH_API
void
gmshModelFieldDelete
(
const
int
tag
);
// Sets the numerical option `option' to value `value' for field `tag'.
GMSH_API
void
gmshModelFieldSetNumber
(
const
int
tag
,
const
std
::
string
&
option
,
GMSH_API
void
gmshModelFieldSetNumber
(
const
int
tag
,
const
std
::
string
&
option
,
const
double
value
);
const
double
value
);
// Sets the string option `option' to value `value' for field `tag'.
GMSH_API
void
gmshModelFieldSetString
(
const
int
tag
,
const
std
::
string
&
option
,
GMSH_API
void
gmshModelFieldSetString
(
const
int
tag
,
const
std
::
string
&
option
,
const
std
::
string
&
value
);
const
std
::
string
&
value
);
// Sets the numerical list option `option' to value `value' for field `tag'.
GMSH_API
void
gmshModelFieldSetNumbers
(
const
int
tag
,
const
std
::
string
&
option
,
GMSH_API
void
gmshModelFieldSetNumbers
(
const
int
tag
,
const
std
::
string
&
option
,
const
std
::
vector
<
double
>
&
value
);
const
std
::
vector
<
double
>
&
value
);
// Sets the field `tag' as background mesh size field.
GMSH_API
void
gmshModelFieldSetAsBackground
(
const
int
tag
);
GMSH_API
void
gmshModelFieldSetAsBackground
(
const
int
tag
);
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment