Loading [MathJax]/extensions/tex2jax.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-382-ge8366d1cd6d 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
▼
MeshLib
►
Elements
►
IO
►
MeshSearch
►
Utils
►
Vtk
►
CoordinateSystem.cpp
►
CoordinateSystem.h
►
ElementCoordinatesMappingLocal.cpp
►
ElementCoordinatesMappingLocal.h
ElementStatus.cpp
►
ElementStatus.h
►
findElementsWithinRadius.cpp
►
findElementsWithinRadius.h
►
Location.cpp
►
Location.h
►
Mesh.cpp
►
Mesh.h
►
MeshEnums.cpp
►
MeshEnums.h
►
MeshSubset.h
Node.cpp
►
Node.h
►
NodeAdjacencyTable.h
►
NodePartitionedMesh.cpp
►
NodePartitionedMesh.h
►
Properties-impl.h
Properties.cpp
►
Properties.h
►
PropertyVector.h
►
VtkOGSEnum.cpp
►
VtkOGSEnum.h
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
Node.cpp
Go to the documentation of this file.
1
15
#include "
MeshLib/Node.h
"
16
17
#include "
Elements/Element.h
"
18
19
namespace
MeshLib
20
{
21
Node::Node
(
const
double
coords[3], std::size_t
id
)
22
:
MathLib
::Point3dWithID(
23
std::array<double, 3>{{coords[0], coords[1], coords[2]}}, id)
24
{
25
}
21
Node::Node
(
const
double
coords[3], std::size_t
id
) {
…
}
26
27
Node::Node
(std::array<double, 3>
const
& coords, std::size_t
id
)
28
:
MathLib
::Point3dWithID(coords, id)
29
{
30
}
27
Node::Node
(std::array<double, 3>
const
& coords, std::size_t
id
) {
…
}
31
32
Node::Node
(
double
x,
double
y,
double
z, std::size_t
id
)
33
:
MathLib
::Point3dWithID(std::array<double, 3>({{x, y, z}}),
id
)
34
{
35
}
32
Node::Node
(
double
x,
double
y,
double
z, std::size_t
id
) {
…
}
36
37
Node::Node
(
const
Node
& node) :
MathLib
::Point3dWithID(node, node.getID()) {}
38
}
// namespace MeshLib
Element.h
Definition of the Element class.
Node.h
Definition of the Node class.
MeshLib::Node
Definition
Node.h:39
MeshLib::Node::Node
Node(const double coords[3], std::size_t id=std::numeric_limits< std::size_t >::max())
Constructor using a coordinate array.
Definition
Node.cpp:21
MathLib
Definition
CreateComponent.h:32
MeshLib
Definition
ProjectData.h:41
MeshLib
Node.cpp
Generated by
1.12.0