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
Snippets
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
wenqing
ogs
Commits
a02e0d21
Commit
a02e0d21
authored
6 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[MGTL] Add docu in class BoundaryElementSearcher.
parent
de7eb263
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/BoundaryElementsSearcher.h
+17
-0
17 additions, 0 deletions
MeshGeoToolsLib/BoundaryElementsSearcher.h
with
17 additions
and
0 deletions
MeshGeoToolsLib/BoundaryElementsSearcher.h
+
17
−
0
View file @
a02e0d21
...
@@ -56,6 +56,13 @@ public:
...
@@ -56,6 +56,13 @@ public:
*/
*/
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElements
(
GeoLib
::
GeoObject
const
&
geoObj
);
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElements
(
GeoLib
::
GeoObject
const
&
geoObj
);
/// For each boundary element found the corresponding bulk element id and
/// bulk element face id are returned.
///
/// @param geometry The boundary elements, bulk element ids and bulk
/// element face ids will be extracted for the given geometry (point,
/// polyline or surface).
/// @return @copydoc BoundaryElementsAtPoint::_bulk_ids
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDs
(
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDs
(
GeoLib
::
GeoObject
const
&
geometry
);
GeoLib
::
GeoObject
const
&
geometry
);
...
@@ -66,6 +73,9 @@ public:
...
@@ -66,6 +73,9 @@ public:
*/
*/
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsAtPoint
(
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsAtPoint
(
GeoLib
::
Point
const
&
point
);
GeoLib
::
Point
const
&
point
);
/// @copybrief BoundaryElementsSearcher::getBulkIDs()
/// @param point The given point the boundary element will be searched for.
/// @return @copydoc BoundaryElementsAtPoint::_bulk_ids
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDsAtPoint
(
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDsAtPoint
(
GeoLib
::
Point
const
&
point
);
GeoLib
::
Point
const
&
point
);
...
@@ -76,6 +86,9 @@ public:
...
@@ -76,6 +86,9 @@ public:
*/
*/
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsAlongPolyline
(
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsAlongPolyline
(
GeoLib
::
Polyline
const
&
ply
);
GeoLib
::
Polyline
const
&
ply
);
/// @copybrief BoundaryElementsSearcher::getBulkIDs()
/// @param ply The given polyline the boundary element will be searched for.
/// @return @copydoc BoundaryElementsAlongPolyline::_bulk_ids
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDsAlongPolyline
(
GeoLib
::
Polyline
const
&
ply
);
getBulkIDsAlongPolyline
(
GeoLib
::
Polyline
const
&
ply
);
...
@@ -86,6 +99,10 @@ public:
...
@@ -86,6 +99,10 @@ public:
*/
*/
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsOnSurface
(
std
::
vector
<
MeshLib
::
Element
*>
const
&
getBoundaryElementsOnSurface
(
GeoLib
::
Surface
const
&
sfc
);
GeoLib
::
Surface
const
&
sfc
);
/// @copybrief BoundaryElementsSearcher::getBulkIDs()
/// @param sfc The given surface the boundary element will be searched
/// for.
/// @return @copydoc BoundaryElementsOnSurface::_bulk_ids
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
std
::
vector
<
std
::
pair
<
std
::
size_t
,
unsigned
>>
const
&
getBulkIDsOnSurface
(
GeoLib
::
Surface
const
&
sfc
);
getBulkIDsOnSurface
(
GeoLib
::
Surface
const
&
sfc
);
...
...
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