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
Operate
Environments
Monitor
Incidents
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
Larry Price
gmsh
Commits
1046f405
Commit
1046f405
authored
11 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
help
parent
e3fb89fa
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+4
-4
4 additions, 4 deletions
CMakeLists.txt
Fltk/helpWindow.cpp
+1
-0
1 addition, 0 deletions
Fltk/helpWindow.cpp
utils/solvers/python/pend.py
+3
-0
3 additions, 0 deletions
utils/solvers/python/pend.py
with
8 additions
and
4 deletions
CMakeLists.txt
+
4
−
4
View file @
1046f405
...
...
@@ -52,7 +52,7 @@ opt(GRAPHICS "Enable building graphics lib even without GUI (advanced)" OFF)
opt
(
KBIPACK
"Enable Kbipack (neeeded by homology solver)"
${
DEFAULT
}
)
opt
(
MATHEX
"Enable math expression parser (used by plugins and options)"
${
DEFAULT
}
)
opt
(
MED
"Enable MED mesh and post file formats"
${
DEFAULT
}
)
opt
(
MESH
"Enable mesh module"
${
DEFAULT
}
)
opt
(
MESH
"Enable mesh module
(required by GUI)
"
${
DEFAULT
}
)
opt
(
METIS
"Enable Metis mesh partitioner"
${
DEFAULT
}
)
opt
(
MMG3D
"Enable MMG3D 3D anisotropic mesh refinement"
${
DEFAULT
}
)
opt
(
MPEG_ENCODE
"Enable built-in MPEG movie encoder"
${
DEFAULT
}
)
...
...
@@ -70,7 +70,7 @@ opt(OSMESA "Enable OSMesa for offscreen rendering (experimental)" OFF)
opt
(
PARSER
"Enable GEO file parser (required for .geo/.pos files)"
${
DEFAULT
}
)
opt
(
PETSC
"Enable PETSc linear solvers (required for SLEPc)"
${
DEFAULT
}
)
opt
(
PLUGINS
"Enable post-processing plugins"
${
DEFAULT
}
)
opt
(
POST
"Enable post-processing module"
${
DEFAULT
}
)
opt
(
POST
"Enable post-processing module
(required by GUI)
"
${
DEFAULT
}
)
opt
(
POPPLER
"Enable Poppler for displaying PDF documents (experimental)"
OFF
)
opt
(
QT
"Enable dummy QT graphical interface proof-of-concept (experimental)"
OFF
)
opt
(
RTREE
"Enable RTREE (used for quad/hex mesh generation)"
${
DEFAULT
}
)
...
...
@@ -81,8 +81,8 @@ opt(SOLVER "Enable built-in finite element solvers (required for compounds)" ${D
opt
(
TAUCS
"Enable Taucs linear solver (alternative to PETSc)"
${
DEFAULT
}
)
opt
(
TETGEN
"Enable Tetgen 3D initial mesh generator"
${
DEFAULT
}
)
opt
(
TETGEN_OLD
"Enable older version of Tetgen"
OFF
)
opt
(
VORO3D
"Enable Voro3D (experimental)"
${
DEFAULT
}
)
opt
(
WRAP_JAVA
"Enable generation of Java wrappers"
OFF
)
opt
(
VORO3D
"Enable Voro3D (
for hex meshing,
experimental)"
${
DEFAULT
}
)
opt
(
WRAP_JAVA
"Enable generation of Java wrappers
(experimental)
"
OFF
)
opt
(
WRAP_PYTHON
"Enable generation of Python wrappers"
OFF
)
set
(
GMSH_MAJOR_VERSION 2
)
...
...
This diff is collapsed.
Click to expand it.
Fltk/helpWindow.cpp
+
1
−
0
View file @
1046f405
...
...
@@ -361,6 +361,7 @@ helpWindow::helpWindow()
browser
->
textsize
(
FL_NORMAL_SIZE
-
2
);
browser
->
type
(
FL_MULTI_BROWSER
);
browser
->
callback
(
browser_cb
);
browser
->
tooltip
(
"Double-click to edit option"
);
options
->
resizable
(
browser
);
options
->
position
(
Fl
::
x
()
+
Fl
::
w
()
/
2
-
width
/
2
,
...
...
This diff is collapsed.
Click to expand it.
utils/solvers/python/pend.py
+
3
−
0
View file @
1046f405
...
...
@@ -7,6 +7,9 @@
import
onelab
import
math
,
os
# import sys
# sys.stderr = open('ErrorLog.txt', 'wt')
def
exportMsh
(
le1
,
le2
):
mshFile
=
open
(
onelab
.
path
(
__file__
,
"
pend.msh
"
),
'
w
'
)
mshFile
.
write
(
'
$MeshFormat
\n
2.2 0 8
\n
$EndMeshFormat
\n
'
)
...
...
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