Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Type-OpenVolumeMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenFlipper-Free
Type-OpenVolumeMesh
Commits
f8a4c4a9
Commit
f8a4c4a9
authored
Dec 05, 2017
by
Martin Heistermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add const mesh getter to VolumeMeshObject
parent
4f5fc9f3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
ObjectTypes/VolumeMeshObject/VolumeMeshObject.hh
ObjectTypes/VolumeMeshObject/VolumeMeshObject.hh
+1
-0
ObjectTypes/VolumeMeshObject/VolumeMeshObjectT.cc
ObjectTypes/VolumeMeshObject/VolumeMeshObjectT.cc
+5
-0
No files found.
ObjectTypes/VolumeMeshObject/VolumeMeshObject.hh
View file @
f8a4c4a9
...
...
@@ -122,6 +122,7 @@ public:
public:
/// return a pointer to the mesh
MeshT
*
mesh
();
const
MeshT
*
mesh
()
const
;
/** return a full copy of this object ( All scenegraph nodes will be created )
* but the object will not be a part of the object tree.
...
...
ObjectTypes/VolumeMeshObject/VolumeMeshObjectT.cc
View file @
f8a4c4a9
...
...
@@ -216,6 +216,11 @@ MeshT* VolumeMeshObject<MeshT>::mesh() {
return
mesh_
.
get
();
}
template
<
class
MeshT
>
const
MeshT
*
VolumeMeshObject
<
MeshT
>::
mesh
()
const
{
return
mesh_
.
get
();
}
/** Updates the visualization of the object. Calls VolumeMeshObject::updateGeometry,
* VolumeMeshObject::updateTopology, VolumeMeshObject::updateSelection and
* VolumeMeshObject::updateModelingRegions.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment