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-276-g3d6bff6232 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
►
Curve
►
Integration
►
InterpolationAlgorithms
►
LinAlg
►
Nonlinear
►
ODE
►
EigenBlockMatrixView.h
FormattingUtils.cpp
►
FormattingUtils.h
►
GeometricBasics.cpp
►
GeometricBasics.h
►
KahanSum.h
►
KelvinVector-impl.h
►
KelvinVector.cpp
►
KelvinVector.h
►
MathTools.cpp
►
MathTools.h
►
Point3d.cpp
►
Point3d.h
►
Point3dWithID.h
►
VectorizedTensor.cpp
►
VectorizedTensor.h
►
WeightedPoint.cpp
►
WeightedPoint.h
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
WeightedPoint.cpp
Go to the documentation of this file.
1
10
#include "
WeightedPoint.h
"
11
12
#include <ostream>
13
14
namespace
MathLib
15
{
16
// Used to output helpful information if the unit tests fail.
17
std::ostream&
operator<<
(std::ostream& os,
MathLib::WeightedPoint
const
& wp)
18
{
19
auto
const
dim = wp.
getDimension
();
20
os <<
"WP["
<< dim <<
"D]{{"
;
21
for
(std::size_t comp = 0; comp < 3; ++comp)
22
{
23
if
(comp != 0)
24
{
25
os <<
", "
;
26
}
27
os << wp[comp];
28
}
29
os <<
"}, weight="
<< wp.
getWeight
() <<
'}'
;
30
return
os;
31
}
17
std::ostream&
operator<<
(std::ostream& os,
MathLib::WeightedPoint
const
& wp) {
…
}
32
}
// namespace MathLib
WeightedPoint.h
MathLib::WeightedPoint
Definition
WeightedPoint.h:22
MathLib::WeightedPoint::getWeight
constexpr double getWeight() const
Definition
WeightedPoint.h:82
MathLib::WeightedPoint::getDimension
constexpr std::size_t getDimension() const
The point dimension, i.e., the number of its coordinates.
Definition
WeightedPoint.h:85
MathLib
Definition
CreateComponent.h:32
MathLib::operator<<
std::ostream & operator<<(std::ostream &os, const Point3d &p)
Definition
Point3d.h:92
MathLib
WeightedPoint.cpp
Generated by
1.12.0