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
c6f62db8
Commit
c6f62db8
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
add API to acceess parts in polyg/polyh
parent
a38b2157
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Geo/MElementCut.h
+4
-0
4 additions, 0 deletions
Geo/MElementCut.h
Plugin/Plugin.cpp
+1
-1
1 addition, 1 deletion
Plugin/Plugin.cpp
doc/VERSIONS.txt
+4
-2
4 additions, 2 deletions
doc/VERSIONS.txt
with
9 additions
and
3 deletions
Geo/MElementCut.h
+
4
−
0
View file @
c6f62db8
...
...
@@ -156,6 +156,8 @@ class MPolyhedron : public MElement {
}
virtual
void
writeMSH
(
FILE
*
fp
,
double
version
=
1.0
,
bool
binary
=
false
,
int
num
=
0
,
int
elementary
=
1
,
int
physical
=
1
);
virtual
int
getNumParts
()
const
{
return
_parts
.
size
();
}
virtual
MElement
*
getPart
(
int
i
)
const
{
_parts
[
i
];
}
};
class
MPolygon
:
public
MElement
{
...
...
@@ -269,6 +271,8 @@ class MPolygon : public MElement {
}
virtual
void
writeMSH
(
FILE
*
fp
,
double
version
=
1.0
,
bool
binary
=
false
,
int
num
=
0
,
int
elementary
=
1
,
int
physical
=
1
);
virtual
int
getNumParts
()
const
{
return
_parts
.
size
();
}
virtual
MElement
*
getPart
(
int
i
)
const
{
_parts
[
i
];
}
};
class
MTriangleBorder
:
public
MTriangle
{
...
...
This diff is collapsed.
Click to expand it.
Plugin/Plugin.cpp
+
1
−
1
View file @
c6f62db8
...
...
@@ -12,7 +12,7 @@
void
(
*
GMSH_Plugin
::
draw
)(
void
*
)
=
0
;
void
GMSH_Plugin
::
setDrawFunction
(
void
(
*
fct
)(
void
*
context
))
void
GMSH_Plugin
::
setDrawFunction
(
void
(
*
fct
)(
void
*
))
{
#if defined(HAVE_FLTK)
draw
=
fct
;
...
...
This diff is collapsed.
Click to expand it.
doc/VERSIONS.txt
+
4
−
2
View file @
c6f62db8
$Id: VERSIONS.txt,v 1.4
8
2009-08-
14
08:
25:37
geuzaine Exp $
$Id: VERSIONS.txt,v 1.4
9
2009-08-
20
08:
52:42
geuzaine Exp $
2.4.0 (?): switched build system to CMake; optionally copy transfinite
mesh contraints during geometry transformations; bumped mesh version
format to 2.1 (small change in the $PhysicalNames section, where the
group dimension is now required); ported most plugins to the new
post-processing API.
post-processing API; switched from MathEval to MathEx and
Flu_Tree_Browser to Fl_Tree; small bug fixes and improvements all over
the place.
2.3.1 (Mar 18, 2009): removed GSL dependency (Gmsh now simply uses
Blas and Lapack); new per-window visibility; added support for
...
...
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