Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yuhao Liu
ogs
Commits
1370bed3
Commit
1370bed3
authored
9 years ago
by
Karsten Rink
Committed by
Tom Fischer
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
added GeoMapper documentation
parent
29d5fca5
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
MeshGeoToolsLib/GeoMapper.h
+14
-2
14 additions, 2 deletions
MeshGeoToolsLib/GeoMapper.h
with
14 additions
and
2 deletions
MeshGeoToolsLib/GeoMapper.h
+
14
−
2
View file @
1370bed3
...
...
@@ -51,12 +51,24 @@ public:
/// Maps geometry based on a mesh file
void
mapOnMesh
(
const
std
::
string
&
file_name
);
/// Maps geometry based on a mesh
/**
* Maps the geometry based on the given mesh file. The elevation value of all geometric
* points are modified such that they are located on the mesh surface.
*/
void
mapOnMesh
(
const
MeshLib
::
Mesh
*
mesh
);
/// Maps geometry to constant elevation value
/// Maps geometry to
a
constant elevation value
void
mapToConstantValue
(
double
value
);
/**
* Maps the geometry based on the given mesh file. A new geometry is created where all
* geometric points are assigned an elevation value on the mesh surface. Additional points are
* inserted whenever a polyline from the original geometry intersects a mesh node or the edge
* of a mesh element.
* \param mesh Mesh the geometry is mapped on
* \param new_geo_name Name of the newly created geometry
* \result A new geometry with the given name is inserted into _geo_objects
*/
void
advancedMapOnMesh
(
const
MeshLib
::
Mesh
*
mesh
,
const
std
::
string
&
new_geo_name
);
private:
...
...
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