Loading [MathJax]/extensions/MathMenu.js
OGS
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-293-gce72897f source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
►
Applications
►
BaseLib
►
build
►
ChemistryLib
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
►
MathLib
▼
MeshGeoToolsLib
►
MeshEditing
►
AppendLinesAlongPolyline.cpp
►
AppendLinesAlongPolyline.h
►
BoundaryElementsAlongPolyline.cpp
►
BoundaryElementsAlongPolyline.h
BoundaryElementsAtPoint.cpp
►
BoundaryElementsAtPoint.h
BoundaryElementsOnSurface.cpp
►
BoundaryElementsOnSurface.h
►
BoundaryElementsSearcher.cpp
►
BoundaryElementsSearcher.h
►
ConstructMeshesFromGeometries.cpp
►
ConstructMeshesFromGeometries.h
►
CreateSearchLength.cpp
►
CreateSearchLength.h
►
GeoMapper.cpp
►
GeoMapper.h
HeuristicSearchLength.cpp
►
HeuristicSearchLength.h
►
IdentifySubdomainMesh.cpp
►
IdentifySubdomainMesh.h
MeshNodesAlongPolyline.cpp
►
MeshNodesAlongPolyline.h
MeshNodesAlongSurface.cpp
►
MeshNodesAlongSurface.h
►
MeshNodeSearcher.cpp
►
MeshNodeSearcher.h
MeshNodesOnPoint.cpp
►
MeshNodesOnPoint.h
►
SearchAllNodes.h
►
SearchLength.h
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
BoundaryElementsAlongPolyline.h
Go to the documentation of this file.
1
9
#pragma once
10
11
#include <vector>
12
13
namespace
GeoLib
14
{
15
class
Polyline;
16
}
17
18
namespace
MeshLib
19
{
20
class
Mesh;
21
class
Element;
22
}
// namespace MeshLib
23
24
namespace
MeshGeoToolsLib
25
{
26
class
MeshNodeSearcher;
27
32
class
BoundaryElementsAlongPolyline
33
{
34
public
:
42
BoundaryElementsAlongPolyline
(
MeshLib::Mesh
const
& mesh,
43
MeshNodeSearcher
const
& mshNodeSearcher,
44
GeoLib::Polyline
const
& ply);
45
47
virtual
~BoundaryElementsAlongPolyline
();
48
54
GeoLib::Polyline
const
&
getPolyline
()
const
{
return
_ply
; }
55
61
std::vector<MeshLib::Element*>
const
&
getBoundaryElements
()
const
62
{
63
return
_boundary_elements
;
64
}
61
std::vector<MeshLib::Element*>
const
&
getBoundaryElements
()
const
{
…
}
65
66
private
:
67
GeoLib::Polyline
const
&
_ply
;
68
std::vector<MeshLib::Element*>
_boundary_elements
;
69
};
32
class
BoundaryElementsAlongPolyline
{
…
};
70
71
}
// end namespace MeshGeoToolsLib
GeoLib::Polyline
Class Polyline consists mainly of a reference to a point vector and a vector that stores the indices ...
Definition
Polyline.h:40
MeshGeoToolsLib::BoundaryElementsAlongPolyline
Definition
BoundaryElementsAlongPolyline.h:33
MeshGeoToolsLib::BoundaryElementsAlongPolyline::getBoundaryElements
std::vector< MeshLib::Element * > const & getBoundaryElements() const
Definition
BoundaryElementsAlongPolyline.h:61
MeshGeoToolsLib::BoundaryElementsAlongPolyline::~BoundaryElementsAlongPolyline
virtual ~BoundaryElementsAlongPolyline()
destructor
Definition
BoundaryElementsAlongPolyline.cpp:172
MeshGeoToolsLib::BoundaryElementsAlongPolyline::BoundaryElementsAlongPolyline
BoundaryElementsAlongPolyline(MeshLib::Mesh const &mesh, MeshNodeSearcher const &mshNodeSearcher, GeoLib::Polyline const &ply)
Definition
BoundaryElementsAlongPolyline.cpp:102
MeshGeoToolsLib::BoundaryElementsAlongPolyline::getPolyline
GeoLib::Polyline const & getPolyline() const
Definition
BoundaryElementsAlongPolyline.h:54
MeshGeoToolsLib::BoundaryElementsAlongPolyline::_ply
GeoLib::Polyline const & _ply
Definition
BoundaryElementsAlongPolyline.h:67
MeshGeoToolsLib::BoundaryElementsAlongPolyline::_boundary_elements
std::vector< MeshLib::Element * > _boundary_elements
Definition
BoundaryElementsAlongPolyline.h:68
MeshGeoToolsLib::MeshNodeSearcher
Definition
MeshNodeSearcher.h:53
MeshLib::Mesh
Definition
Mesh.h:45
GeoLib
Definition
ProjectData.h:36
MeshGeoToolsLib
Definition
AppendLinesAlongPolyline.cpp:24
MeshLib
Definition
ProjectData.h:41
MeshGeoToolsLib
BoundaryElementsAlongPolyline.h
Generated by
1.12.0