Loading [MathJax]/extensions/MathZoom.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-301-gee1fb4d5 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
MeshNodesOnPoint.h
Go to the documentation of this file.
1
10
#pragma once
11
12
#include <vector>
13
14
#include "
GeoLib/Point.h
"
15
#include "
GeoLib/Grid.h
"
16
17
#include "
MeshGeoToolsLib/SearchAllNodes.h
"
18
19
#include "
MeshLib/Node.h
"
20
21
namespace
MeshLib
22
{
23
class
Mesh;
24
}
25
26
namespace
MeshGeoToolsLib
27
{
31
class
MeshNodesOnPoint
32
{
33
public
:
44
MeshNodesOnPoint
(
MeshLib::Mesh
const
& mesh,
45
GeoLib::Grid<MeshLib::Node>
const
& mesh_grid,
46
GeoLib::Point
const
& pnt,
double
epsilon_radius,
47
SearchAllNodes
search_all_nodes);
48
50
MeshLib::Mesh
const
&
getMesh
()
const
{
return
_mesh
; }
51
56
std::vector<std::size_t>
const
&
getNodeIDs
()
const
{
return
_msh_node_ids
; }
57
63
GeoLib::Point
const
&
getPoint
()
const
{
return
_pnt
; }
64
65
private
:
66
MeshLib::Mesh
const
&
_mesh
;
67
GeoLib::Point
const
&
_pnt
;
68
std::vector<std::size_t>
_msh_node_ids
;
69
};
31
class
MeshNodesOnPoint
{
…
};
70
}
// end namespace MeshGeoToolsLib
Point.h
Definition of the Point class.
Grid.h
Definition of the Grid class.
Node.h
Definition of the Node class.
SearchAllNodes.h
GeoLib::Grid
Definition
Grid.h:33
GeoLib::Point
Definition
Point.h:31
MeshGeoToolsLib::MeshNodesOnPoint
Definition
MeshNodesOnPoint.h:32
MeshGeoToolsLib::MeshNodesOnPoint::MeshNodesOnPoint
MeshNodesOnPoint(MeshLib::Mesh const &mesh, GeoLib::Grid< MeshLib::Node > const &mesh_grid, GeoLib::Point const &pnt, double epsilon_radius, SearchAllNodes search_all_nodes)
Definition
MeshNodesOnPoint.cpp:18
MeshGeoToolsLib::MeshNodesOnPoint::getPoint
GeoLib::Point const & getPoint() const
Definition
MeshNodesOnPoint.h:63
MeshGeoToolsLib::MeshNodesOnPoint::getNodeIDs
std::vector< std::size_t > const & getNodeIDs() const
Definition
MeshNodesOnPoint.h:56
MeshGeoToolsLib::MeshNodesOnPoint::_msh_node_ids
std::vector< std::size_t > _msh_node_ids
Definition
MeshNodesOnPoint.h:68
MeshGeoToolsLib::MeshNodesOnPoint::_mesh
MeshLib::Mesh const & _mesh
Definition
MeshNodesOnPoint.h:66
MeshGeoToolsLib::MeshNodesOnPoint::getMesh
MeshLib::Mesh const & getMesh() const
return the mesh object
Definition
MeshNodesOnPoint.h:50
MeshGeoToolsLib::MeshNodesOnPoint::_pnt
GeoLib::Point const & _pnt
Definition
MeshNodesOnPoint.h:67
MeshLib::Mesh
Definition
Mesh.h:45
MeshGeoToolsLib
Definition
AppendLinesAlongPolyline.cpp:24
MeshGeoToolsLib::SearchAllNodes
SearchAllNodes
Definition
SearchAllNodes.h:14
MeshLib
Definition
ProjectData.h:41
MeshGeoToolsLib
MeshNodesOnPoint.h
Generated by
1.12.0