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
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gmsh
gmsh
Commits
929beb06
Commit
929beb06
authored
Mar 9, 2023
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
thx
parent
0dacd204
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CREDITS.txt
+1
-1
1 addition, 1 deletion
CREDITS.txt
tutorials/c++/x3.cpp
+3
-0
3 additions, 0 deletions
tutorials/c++/x3.cpp
tutorials/julia/x3.jl
+3
-0
3 additions, 0 deletions
tutorials/julia/x3.jl
tutorials/python/x3.py
+3
-0
3 additions, 0 deletions
tutorials/python/x3.py
with
10 additions
and
1 deletion
CREDITS.txt
+
1
−
1
View file @
929beb06
...
...
@@ -60,7 +60,7 @@ Bruens, Luca Verzeroli, Tristan Seidlhofer, Ding Jiaming, Joost Gevaert, Marcus
Calhoun-Lopez, Michel Zou, Sir Sunsheep, Mariano Forti, Walter Steffe, Nico
Schloemer, Simon Tournier, Alexandru Dadalau, Thomas Ulrich, Matthias Diener,
Jamie Border; Kenneth Jansen; Steven Masfaraud; Sai Sumanth Moturu; Arie
Westland; Andreas Farley; Mahesh Madhav.
Westland; Andreas Farley; Mahesh Madhav
; Zoltan Csati
.
Special thanks to Bill Spitzak, Michael Sweet, Matthias Melcher, Greg Ercolano
and others for the Fast Light Tool Kit on which Gmsh's GUI is based. See
...
...
This diff is collapsed.
Click to expand it.
tutorials/c++/x3.cpp
+
3
−
0
View file @
929beb06
...
...
@@ -149,6 +149,9 @@ int main(int argc, char **argv)
gmsh
::
view
::
option
::
setNumber
(
t2
,
"TargetError"
,
1e-2
);
gmsh
::
view
::
option
::
setNumber
(
t2
,
"MaxRecursionLevel"
,
5
);
// Note that the adapted visualization data can be retrived by setting the
// `returnAdaptive' argument to the `gmsh::view::getListData()' function.
// Launch the GUI to see the results:
std
::
set
<
std
::
string
>
args
(
argv
,
argv
+
argc
);
if
(
!
args
.
count
(
"-nopopup"
))
gmsh
::
fltk
::
run
();
...
...
This diff is collapsed.
Click to expand it.
tutorials/julia/x3.jl
+
3
−
0
View file @
929beb06
...
...
@@ -142,6 +142,9 @@ gmsh.view.option.setNumber(t2, "AdaptVisualizationGrid", 1)
gmsh
.
view
.
option
.
setNumber
(
t2
,
"TargetError"
,
1e-2
)
gmsh
.
view
.
option
.
setNumber
(
t2
,
"MaxRecursionLevel"
,
5
)
# Note that the adapted visualization data can be retrived by setting the
# `returnAdaptive' argument to the `gmsh.view.getListData()' function.
# Launch the GUI to see the results:
if
!
(
"-nopopup"
in
ARGS
)
gmsh
.
fltk
.
run
()
...
...
This diff is collapsed.
Click to expand it.
tutorials/python/x3.py
+
3
−
0
View file @
929beb06
...
...
@@ -141,6 +141,9 @@ gmsh.view.option.setNumber(t2, "AdaptVisualizationGrid", 1)
gmsh
.
view
.
option
.
setNumber
(
t2
,
"
TargetError
"
,
1e-2
)
gmsh
.
view
.
option
.
setNumber
(
t2
,
"
MaxRecursionLevel
"
,
5
)
# Note that the adapted visualization data can be retrived by setting the
# `returnAdaptive' argument to the `gmsh.view.getListData()' function.
# Launch the GUI to see the results:
if
'
-nopopup
'
not
in
sys
.
argv
:
gmsh
.
fltk
.
run
()
...
...
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