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
1bf74433
"Numeric/GaussQuadratureQuad.cpp" did not exist on "af796fa7a5ab029bfb25823e36982278a045f534"
Commit
1bf74433
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
visual fea
parent
c9e4a9c5
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
Fltk/menuWindow.cpp
+4
-0
4 additions, 0 deletions
Fltk/menuWindow.cpp
with
4 additions
and
0 deletions
Fltk/menuWindow.cpp
+
4
−
0
View file @
1bf74433
...
@@ -229,6 +229,8 @@ static int _save_mesh(const char *name){ return genericMeshFileDialog
...
@@ -229,6 +229,8 @@ static int _save_mesh(const char *name){ return genericMeshFileDialog
static
int
_save_bdf
(
const
char
*
name
){
return
bdfFileDialog
(
name
);
}
static
int
_save_bdf
(
const
char
*
name
){
return
bdfFileDialog
(
name
);
}
static
int
_save_p3d
(
const
char
*
name
){
return
genericMeshFileDialog
static
int
_save_p3d
(
const
char
*
name
){
return
genericMeshFileDialog
(
name
,
"P3D Options"
,
FORMAT_P3D
,
false
,
false
);
}
(
name
,
"P3D Options"
,
FORMAT_P3D
,
false
,
false
);
}
static
int
_save_fea
(
const
char
*
name
){
return
genericMeshFileDialog
(
name
,
"VisualFEA Options"
,
FORMAT_FEA
,
false
,
true
);
}
static
int
_save_stl
(
const
char
*
name
){
return
genericMeshFileDialog
static
int
_save_stl
(
const
char
*
name
){
return
genericMeshFileDialog
(
name
,
"STL Options"
,
FORMAT_STL
,
true
,
false
);
}
(
name
,
"STL Options"
,
FORMAT_STL
,
true
,
false
);
}
static
int
_save_vrml
(
const
char
*
name
){
return
genericMeshFileDialog
static
int
_save_vrml
(
const
char
*
name
){
return
genericMeshFileDialog
...
@@ -266,6 +268,7 @@ static int _save_auto(const char *name)
...
@@ -266,6 +268,7 @@ static int _save_auto(const char *name)
case
FORMAT_BDF
:
return
_save_bdf
(
name
);
case
FORMAT_BDF
:
return
_save_bdf
(
name
);
case
FORMAT_DIFF
:
return
_save_diff
(
name
);
case
FORMAT_DIFF
:
return
_save_diff
(
name
);
case
FORMAT_P3D
:
return
_save_p3d
(
name
);
case
FORMAT_P3D
:
return
_save_p3d
(
name
);
case
FORMAT_FEA
:
return
_save_fea
(
name
);
case
FORMAT_STL
:
return
_save_stl
(
name
);
case
FORMAT_STL
:
return
_save_stl
(
name
);
case
FORMAT_VRML
:
return
_save_vrml
(
name
);
case
FORMAT_VRML
:
return
_save_vrml
(
name
);
case
FORMAT_EPS
:
return
_save_eps
(
name
);
case
FORMAT_EPS
:
return
_save_eps
(
name
);
...
@@ -309,6 +312,7 @@ static void file_save_as_cb(Fl_Widget *w, void *data)
...
@@ -309,6 +312,7 @@ static void file_save_as_cb(Fl_Widget *w, void *data)
{
"Medit mesh"
TT
"*.mesh"
,
_save_mesh
},
{
"Medit mesh"
TT
"*.mesh"
,
_save_mesh
},
{
"Nastran bulk data file"
TT
"*.bdf"
,
_save_bdf
},
{
"Nastran bulk data file"
TT
"*.bdf"
,
_save_bdf
},
{
"Plot3D structured mesh"
TT
"*.p3d"
,
_save_p3d
},
{
"Plot3D structured mesh"
TT
"*.p3d"
,
_save_p3d
},
{
"VisualFEA mesh"
TT
"*.fea"
,
_save_fea
},
{
"STL surface mesh"
TT
"*.stl"
,
_save_stl
},
{
"STL surface mesh"
TT
"*.stl"
,
_save_stl
},
{
"VRML surface mesh"
TT
"*.wrl"
,
_save_vrml
},
{
"VRML surface mesh"
TT
"*.wrl"
,
_save_vrml
},
{
"Encapsulated PostScript"
TT
"*.eps"
,
_save_eps
},
{
"Encapsulated PostScript"
TT
"*.eps"
,
_save_eps
},
...
...
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