This class implements a 3 element column vector.
- Author
- Jon S. Berndt, Tony Peden, et. al.
Definition at line 65 of file FGColumnVector3.h.
#include <FGColumnVector3.h>
◆ FGColumnVector3() [1/3]
Default initializer.
Create a zero vector.
Definition at line 55 of file FGColumnVector3.cpp.
56{
57 data[0] = data[1] = data[2] = 0.0;
58
59}
◆ FGColumnVector3() [2/3]
Initialization by given values.
- Parameters
-
X | value of the x-conponent. |
Y | value of the y-conponent. |
Z | value of the z-conponent. Create a vector from the doubles given in the arguments.
|
Definition at line 77 of file FGColumnVector3.h.
77 {
78 data[0] = X;
79 data[1] = Y;
80 data[2] = Z;
81 }
◆ FGColumnVector3() [3/3]
Copy constructor.
- Parameters
-
v | Vector which is used for initialization. Create copy of the vector given in the argument.
|
Definition at line 86 of file FGColumnVector3.h.
86 {
87 data[0] = v.data[0];
88 data[1] = v.data[1];
89 data[2] = v.data[2];
90 }
◆ ~FGColumnVector3()
◆ Dump()
string Dump |
( |
const std::string & |
delimeter | ) |
const |
Prints the contents of the vector.
- Parameters
-
delimeter | the item separator (tab or comma) |
- Returns
- a string with the delimeter-separated contents of the vector
Definition at line 63 of file FGColumnVector3.cpp.
64{
65 ostringstream buffer;
66 buffer << std::setprecision(16) << data[0] << delimiter;
67 buffer << std::setprecision(16) << data[1] << delimiter;
68 buffer << std::setprecision(16) << data[2];
69 return buffer.str();
70}
◆ Entry() [1/2]
double & Entry |
( |
const unsigned int |
idx | ) |
|
|
inline |
Write access the entries of the vector.
- Parameters
-
idx | the component index. Return a reference to the vector entry at the given index. Indices are counted starting with 1. This function is just a shortcut for the double& operator()(unsigned int idx) function. It is used internally to access the elements in a more convenient way. Note that the index given in the argument is unchecked.
|
Definition at line 127 of file FGColumnVector3.h.
127{ return data[idx-1]; }
◆ Entry() [2/2]
double Entry |
( |
const unsigned int |
idx | ) |
const |
|
inline |
Read access the entries of the vector.
- Parameters
-
idx | the component index. Return the value of the matrix entry at the given index. Indices are counted starting with 1. This function is just a shortcut for the double operator()(unsigned int idx) const function. It is used internally to access the elements in a more convenient way. Note that the index given in the argument is unchecked.
|
Definition at line 117 of file FGColumnVector3.h.
117{ return data[idx-1]; }
◆ InitMatrix() [1/3]
void InitMatrix |
( |
const double |
a | ) |
|
|
inline |
◆ InitMatrix() [2/3]
void InitMatrix |
( |
const double |
a, |
|
|
const double |
b, |
|
|
const double |
c |
|
) |
| |
|
inline |
◆ InitMatrix() [3/3]
◆ Magnitude() [1/2]
double Magnitude |
( |
const int |
idx1, |
|
|
const int |
idx2 |
|
) |
| const |
Length of the vector in a coordinate axis plane.
Compute and return the euclidean norm of this vector projected into the coordinate axis plane idx1-idx2.
Definition at line 128 of file FGColumnVector3.cpp.
128 {
129 return sqrt( data[idx1-1]*data[idx1-1] + data[idx2-1]*data[idx2-1] );
130}
◆ Magnitude() [2/2]
double Magnitude |
( |
void |
| ) |
const |
Length of the vector.
Compute and return the euclidean norm of this vector.
Definition at line 109 of file FGColumnVector3.cpp.
110{
111 return sqrt( data[0]*data[0] + data[1]*data[1] + data[2]*data[2] );
112}
◆ Normalize()
Normalize.
Normalize the vector to have the Magnitude() == 1.0. If the vector is equal to zero it is left untouched.
Definition at line 116 of file FGColumnVector3.cpp.
117{
119
120 if (Mag != 0.0)
122
123 return *this;
124}
FGColumnVector3 & operator*=(const double scalar)
Scale by a scalar.
double Magnitude(void) const
Length of the vector.
◆ operator!=()
Comparison operator.
- Parameters
-
b | other vector. Returns false if both vectors are exactly the same.
|
Definition at line 165 of file FGColumnVector3.h.
bool operator==(const FGColumnVector3 &b) const
Comparison operator.
◆ operator()() [1/2]
double & operator() |
( |
const unsigned int |
idx | ) |
|
|
inline |
Write access the entries of the vector.
- Parameters
-
idx | the component index. Return a reference to the vector entry at the given index. Indices are counted starting with 1. Note that the index given in the argument is unchecked.
|
Definition at line 107 of file FGColumnVector3.h.
107{ return data[idx-1]; }
◆ operator()() [2/2]
double operator() |
( |
const unsigned int |
idx | ) |
const |
|
inline |
Read access the entries of the vector.
- Parameters
-
idx | the component index. Return the value of the matrix entry at the given index. Indices are counted starting with 1. Note that the index given in the argument is unchecked.
|
Definition at line 100 of file FGColumnVector3.h.
100{ return data[idx-1]; }
◆ operator*() [1/2]
Multiplication by a scalar.
- Parameters
-
scalar | scalar value to multiply the vector with. |
- Returns
- The resulting vector from the multiplication with that scalar. Multiply the vector with the scalar given in the argument.
Definition at line 171 of file FGColumnVector3.h.
171 {
172 return FGColumnVector3(scalar*data[0], scalar*data[1], scalar*data[2]);
173 }
FGColumnVector3(void)
Default initializer.
◆ operator*() [2/2]
Cross product multiplication.
- Parameters
-
V | vector to multiply with. |
- Returns
- The resulting vector from the cross product multiplication. Compute and return the cross product of the current vector with the given argument.
Definition at line 186 of file FGColumnVector3.h.
186 {
188 data[2] * V.data[0] - data[0] * V.data[2],
189 data[0] * V.data[1] - data[1] * V.data[0] );
190 }
◆ operator*=()
Scale by a scalar.
Definition at line 221 of file FGColumnVector3.h.
221 {
222 data[0] *= scalar;
223 data[1] *= scalar;
224 data[2] *= scalar;
225 return *this;
226 }
◆ operator+()
Addition operator.
Definition at line 193 of file FGColumnVector3.h.
193 {
195 data[2] + B.data[2] );
196 }
◆ operator+=()
Add an other vector.
Definition at line 213 of file FGColumnVector3.h.
213 {
214 data[0] += B.data[0];
215 data[1] += B.data[1];
216 data[2] += B.data[2];
217 return *this;
218 }
◆ operator-()
Subtraction operator.
Definition at line 199 of file FGColumnVector3.h.
199 {
201 data[2] - B.data[2] );
202 }
◆ operator-=()
Subtract an other vector.
Definition at line 205 of file FGColumnVector3.h.
205 {
206 data[0] -= B.data[0];
207 data[1] -= B.data[1];
208 data[2] -= B.data[2];
209 return *this;
210 }
◆ operator/()
Multiply by 1/scalar.
- Parameters
-
scalar | scalar value to devide the vector through. |
- Returns
- The resulting vector from the division through that scalar. Multiply the vector with the 1/scalar given in the argument.
Definition at line 82 of file FGColumnVector3.cpp.
83{
84 if (scalar != 0.0)
86
87 cerr << "Attempt to divide by zero in method \
88 FGColumnVector3::operator/(const double scalar), \
89 object " << data[0] << " , " << data[1] << " , " << data[2] << endl;
91}
FGColumnVector3 operator*(const double scalar) const
Multiplication by a scalar.
◆ operator/=()
Scale by a 1/scalar.
Definition at line 95 of file FGColumnVector3.cpp.
96{
97 if (scalar != 0.0)
99 else
100 cerr << "Attempt to divide by zero in method \
101 FGColumnVector3::operator/=(const double scalar), \
102 object " << data[0] << " , " << data[1] << " , " << data[2] << endl;
103
104 return *this;
105}
◆ operator=() [1/2]
Assignment operator.
- Parameters
-
b | source vector. Copy the content of the vector given in the argument into *this.
|
Definition at line 137 of file FGColumnVector3.h.
137 {
138 data[0] = b.data[0];
139 data[1] = b.data[1];
140 data[2] = b.data[2];
141 return *this;
142 }
◆ operator=() [2/2]
Assignment operator.
- Parameters
-
lv | initializer list of at most 3 values (i.e. {x, y, Z}) Copy the content of the list into *this. |
Definition at line 147 of file FGColumnVector3.h.
147 {
148 double *v = data;
149 for(auto &x : lv)
150 *(v++) = x;
151
152 return *this;
153 }
◆ operator==()
Comparison operator.
- Parameters
-
b | other vector. Returns true if both vectors are exactly the same.
|
Definition at line 158 of file FGColumnVector3.h.
158 {
159 return data[0] == b.data[0] && data[1] == b.data[1] && data[2] == b.data[2];
160 }
The documentation for this class was generated from the following files: