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
3d658dbf
Commit
3d658dbf
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
note on internal polyg/polyh vertices
parent
20e1080b
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
Geo/MElement.h
+4
-2
4 additions, 2 deletions
Geo/MElement.h
with
4 additions
and
2 deletions
Geo/MElement.h
+
4
−
2
View file @
3d658dbf
...
...
@@ -99,7 +99,8 @@ class MElement
virtual
MVertex
*
getVertexDIFF
(
int
num
){
return
getVertex
(
num
);
}
// get the number of vertices associated with edges, faces and
// volumes (nonzero only for higher order elements)
// volumes (nonzero only for higher order elements, polygons or
// polyhedra)
virtual
int
getNumEdgeVertices
()
const
{
return
0
;
}
virtual
int
getNumFaceVertices
()
const
{
return
0
;
}
virtual
int
getNumVolumeVertices
()
const
{
return
0
;
}
...
...
@@ -210,7 +211,8 @@ class MElement
double
interpolateDiv
(
double
val
[],
double
u
,
double
v
,
double
w
,
int
stride
=
3
,
int
order
=-
1
);
// integration routine
// integration routines
virtual
int
getNumIntegrationPointsToAllocate
(
int
pOrder
)
const
{
return
0
;
}
virtual
void
getIntegrationPoints
(
int
pOrder
,
int
*
npts
,
IntPt
**
pts
)
const
{
Msg
::
Error
(
"No integration points defined for this type of element"
);
...
...
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