diff --git a/html/3_d_2_transformation_8hpp_source.html b/html/3_d_2_transformation_8hpp_source.html index 5b1471df..a8385823 100644 --- a/html/3_d_2_transformation_8hpp_source.html +++ b/html/3_d_2_transformation_8hpp_source.html @@ -212,7 +212,7 @@
Vector.hpp
ostk::mathematics::geometry::d3::Transformation::Translation
static Transformation Translation(const Vector3d &aTranslationVector)
Definition: Transformation.cpp:259
Point.hpp
-
ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix
Rotation matrix.
Definition: RotationMatrix.hpp:39
+
ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix
Rotation matrix.
Definition: RotationMatrix.hpp:40
RotationVector.hpp
ostk::mathematics::geometry::d3::Transformation::RotationAround
static Transformation RotationAround(const Point &aPoint, const RotationVector &aRotationVector)
Definition: Transformation.cpp:302
ostk::mathematics::geometry::d3::Transformation::Type::Affine
@ Affine
@@ -244,7 +244,7 @@
ostk::mathematics::geometry::d3::object::Point
Point.
Definition: Point.hpp:37
ostk::mathematics::geometry::d3::Transformation::Rotation
static Transformation Rotation(const RotationVector &aRotationVector)
Definition: Transformation.cpp:274
ostk::mathematics::geometry::d3::Transformation::Type::Undefined
@ Undefined
-
ostk::mathematics::geometry::d3::transformation::rotation::RotationVector
Rotation vector.
Definition: RotationVector.hpp:38
+
ostk::mathematics::geometry::d3::transformation::rotation::RotationVector
Rotation Vector.
Definition: RotationVector.hpp:39
ostk::mathematics::geometry::d3::Transformation::Identity
static Transformation Identity()
Definition: Transformation.cpp:254
ostk::mathematics::geometry::d3::Transformation::Type::Identity
@ Identity
ostk::mathematics::geometry::d3::Transformation::print
virtual void print(std::ostream &anOutputStream, bool displayDecorators=true) const
Print transformation.
Definition: Transformation.cpp:236
diff --git a/html/_angle_8hpp_source.html b/html/_angle_8hpp_source.html index e3bcf534..ea7c68a5 100644 --- a/html/_angle_8hpp_source.html +++ b/html/_angle_8hpp_source.html @@ -159,91 +159,97 @@
88 
89  bool isZero() const;
90 
-
91  Angle::Unit getUnit() const;
-
92 
-
93  Real in(const Angle::Unit& aUnit) const;
-
94 
-
95  Real inRadians() const;
-
96 
-
97  Real inRadians(const Real& aLowerBound, const Real& anUpperBound) const;
98 
-
99  Real inDegrees() const;
+
99  bool isNegative() const;
100 
-
101  Real inDegrees(const Real& aLowerBound, const Real& anUpperBound) const;
-
102 
-
103  Real inArcminutes() const;
-
104 
-
105  Real inArcminutes(const Real& aLowerBound, const Real& anUpperBound) const;
-
106 
-
107  Real inArcseconds() const;
-
108 
-
109  Real inArcseconds(const Real& aLowerBound, const Real& anUpperBound) const;
-
110 
-
111  Real inRevolutions() const;
-
112 
-
113  String toString(const Integer& aPrecision = Integer::Undefined()) const;
-
114 
-
115  static Angle Undefined();
-
116 
-
117  static Angle Zero();
-
118 
-
119  static Angle HalfPi();
-
120 
-
121  static Angle Pi();
-
122 
-
123  static Angle TwoPi();
-
124 
-
125  static Angle Radians(const Real& aValue);
-
126 
-
127  static Angle Degrees(const Real& aValue);
-
128 
-
129  static Angle Arcminutes(const Real& aValue);
-
130 
-
131  static Angle Arcseconds(const Real& aValue);
-
132 
-
133  static Angle Revolutions(const Real& aValue);
-
134 
-
135  static Angle Between(const Vector2d& aFirstVector, const Vector2d& aSecondVector);
-
136 
-
137  static Angle Between(const Vector3d& aFirstVector, const Vector3d& aSecondVector);
-
138 
-
139  static Angle Parse(const String& aString);
-
140 
-
141  static String StringFromUnit(const Angle::Unit& aUnit);
-
142 
-
143  static String SymbolFromUnit(const Angle::Unit& aUnit);
-
144 
-
145  private:
-
146  Real value_;
-
147  Angle::Unit unit_;
-
148 
-
149  static Real SIRatio(const Angle::Unit& aUnit);
-
150 
-
151  static Real ReduceRange(const Real& aValue, const Real& aRangeLowerBound, const Real& aRangeUpperBound);
-
152 };
+
113 
+
114  bool isNear(const Angle& anAngle, const Angle& aTolerance) const;
+
115 
+
116  Angle::Unit getUnit() const;
+
117 
+
118  Real in(const Angle::Unit& aUnit) const;
+
119 
+
120  Real inRadians() const;
+
121 
+
122  Real inRadians(const Real& aLowerBound, const Real& anUpperBound) const;
+
123 
+
124  Real inDegrees() const;
+
125 
+
126  Real inDegrees(const Real& aLowerBound, const Real& anUpperBound) const;
+
127 
+
128  Real inArcminutes() const;
+
129 
+
130  Real inArcminutes(const Real& aLowerBound, const Real& anUpperBound) const;
+
131 
+
132  Real inArcseconds() const;
+
133 
+
134  Real inArcseconds(const Real& aLowerBound, const Real& anUpperBound) const;
+
135 
+
136  Real inRevolutions() const;
+
137 
+
138  String toString(const Integer& aPrecision = Integer::Undefined()) const;
+
139 
+
140  static Angle Undefined();
+
141 
+
142  static Angle Zero();
+
143 
+
144  static Angle HalfPi();
+
145 
+
146  static Angle Pi();
+
147 
+
148  static Angle TwoPi();
+
149 
+
150  static Angle Radians(const Real& aValue);
+
151 
+
152  static Angle Degrees(const Real& aValue);
153 
-
154 } // namespace geometry
-
155 } // namespace mathematics
-
156 } // namespace ostk
+
154  static Angle Arcminutes(const Real& aValue);
+
155 
+
156  static Angle Arcseconds(const Real& aValue);
157 
-
158 #endif
+
158  static Angle Revolutions(const Real& aValue);
+
159 
+
160  static Angle Between(const Vector2d& aFirstVector, const Vector2d& aSecondVector);
+
161 
+
162  static Angle Between(const Vector3d& aFirstVector, const Vector3d& aSecondVector);
+
163 
+
164  static Angle Parse(const String& aString);
+
165 
+
166  static String StringFromUnit(const Angle::Unit& aUnit);
+
167 
+
168  static String SymbolFromUnit(const Angle::Unit& aUnit);
+
169 
+
170  private:
+
171  Real value_;
+
172  Angle::Unit unit_;
+
173 
+
174  static Real SIRatio(const Angle::Unit& aUnit);
+
175 
+
176  static Real ReduceRange(const Real& aValue, const Real& aRangeLowerBound, const Real& aRangeUpperBound);
+
177 };
+
178 
+
179 } // namespace geometry
+
180 } // namespace mathematics
+
181 } // namespace ostk
+
182 
+
183 #endif
ostk::mathematics::geometry::Angle::operator*
Angle operator*(const Real &aReal) const
Definition: Angle.cpp:103
-
ostk::mathematics::geometry::Angle::StringFromUnit
static String StringFromUnit(const Angle::Unit &aUnit)
Definition: Angle.cpp:532
-
ostk::mathematics::geometry::Angle::inArcseconds
Real inArcseconds() const
Definition: Angle.cpp:363
-
ostk::mathematics::geometry::Angle::Degrees
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:433
+
ostk::mathematics::geometry::Angle::StringFromUnit
static String StringFromUnit(const Angle::Unit &aUnit)
Definition: Angle.cpp:563
+
ostk::mathematics::geometry::Angle::inArcseconds
Real inArcseconds() const
Definition: Angle.cpp:394
+
ostk::mathematics::geometry::Angle::Degrees
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
Vector.hpp
ostk::mathematics::geometry::Angle::Unit::Revolution
@ Revolution
Revolution.
ostk::mathematics::geometry::Angle::operator!=
bool operator!=(const Angle &anAngle) const
Definition: Angle.cpp:78
-
ostk::mathematics::geometry::Angle::in
Real in(const Angle::Unit &aUnit) const
Definition: Angle.cpp:273
+
ostk::mathematics::geometry::Angle::in
Real in(const Angle::Unit &aUnit) const
Definition: Angle.cpp:304
ostk::mathematics::geometry::Angle::Angle
Angle(const Real &aValue, const Angle::Unit &aUnit)
Constructor.
Definition: Angle.cpp:15
-
ostk::mathematics::geometry::Angle::SymbolFromUnit
static String SymbolFromUnit(const Angle::Unit &aUnit)
Definition: Angle.cpp:562
+
ostk::mathematics::geometry::Angle::SymbolFromUnit
static String SymbolFromUnit(const Angle::Unit &aUnit)
Definition: Angle.cpp:593
ostk::mathematics::geometry::Angle::operator*=
Angle & operator*=(const Real &aReal)
Definition: Angle.cpp:162
ostk::mathematics::geometry::Angle::Unit
Unit
Definition: Angle.hpp:36
ostk::mathematics::geometry::Angle::isZero
bool isZero() const
Definition: Angle.cpp:253
-
ostk::mathematics::geometry::Angle::Pi
static Angle Pi()
Definition: Angle.cpp:418
-
ostk::mathematics::geometry::Angle::inRadians
Real inRadians() const
Definition: Angle.cpp:288
+
ostk::mathematics::geometry::Angle::Pi
static Angle Pi()
Definition: Angle.cpp:449
+
ostk::mathematics::geometry::Angle::inRadians
Real inRadians() const
Definition: Angle.cpp:319
ostk::mathematics::geometry::Angle::operator-=
Angle & operator-=(const Angle &anAngle)
Definition: Angle.cpp:150
ostk::mathematics::geometry::Angle::operator/
Angle operator/(const Real &aReal) const
Definition: Angle.cpp:118
ostk::mathematics::geometry::Angle::operator<<
friend std::ostream & operator<<(std::ostream &anOutputStream, const Angle &anAngle)
Definition: Angle.cpp:236
@@ -251,31 +257,33 @@
ostk::mathematics::geometry::Angle::Unit::Arcsecond
@ Arcsecond
Arcsecond.
ostk::mathematics::object::Vector2d
Eigen::Vector2d Vector2d
Definition: Vector.hpp:37
ostk::mathematics::geometry::Angle::Parse
static Angle Parse(const String &aString)
-
ostk::mathematics::geometry::Angle::Undefined
static Angle Undefined()
Definition: Angle.cpp:403
+
ostk::mathematics::geometry::Angle::Undefined
static Angle Undefined()
Definition: Angle.cpp:434
ostk::mathematics::geometry::Angle::Unit::Radian
@ Radian
Radian.
-
ostk::mathematics::geometry::Angle::Radians
static Angle Radians(const Real &aValue)
Definition: Angle.cpp:428
+
ostk::mathematics::geometry::Angle::Radians
static Angle Radians(const Real &aValue)
Definition: Angle.cpp:459
ostk::mathematics::geometry::Angle
Angle.
Definition: Angle.hpp:33
ostk::mathematics::object::Vector3d
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
ostk
Apache License 2.0.
Definition: BarycentricRational.hpp:14
-
ostk::mathematics::geometry::Angle::Zero
static Angle Zero()
Definition: Angle.cpp:408
-
ostk::mathematics::geometry::Angle::inArcminutes
Real inArcminutes() const
Definition: Angle.cpp:338
+
ostk::mathematics::geometry::Angle::Zero
static Angle Zero()
Definition: Angle.cpp:439
+
ostk::mathematics::geometry::Angle::inArcminutes
Real inArcminutes() const
Definition: Angle.cpp:369
ostk::mathematics::geometry::Angle::operator+
Angle operator+() const
Definition: Angle.cpp:216
+
ostk::mathematics::geometry::Angle::isNear
bool isNear(const Angle &anAngle, const Angle &aTolerance) const
Check if angles are near within an angular tolerance.
Definition: Angle.cpp:273
ostk::mathematics::geometry::Angle::isDefined
bool isDefined() const
Definition: Angle.cpp:248
ostk::mathematics::geometry::Angle::Unit::Degree
@ Degree
Degree.
-
ostk::mathematics::geometry::Angle::Between
static Angle Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)
Definition: Angle.cpp:458
-
ostk::mathematics::geometry::Angle::toString
String toString(const Integer &aPrecision=Integer::Undefined()) const
Definition: Angle.cpp:393
-
ostk::mathematics::geometry::Angle::inDegrees
Real inDegrees() const
Definition: Angle.cpp:313
-
ostk::mathematics::geometry::Angle::Arcseconds
static Angle Arcseconds(const Real &aValue)
Definition: Angle.cpp:443
+
ostk::mathematics::geometry::Angle::Between
static Angle Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)
Definition: Angle.cpp:489
+
ostk::mathematics::geometry::Angle::toString
String toString(const Integer &aPrecision=Integer::Undefined()) const
Definition: Angle.cpp:424
+
ostk::mathematics::geometry::Angle::inDegrees
Real inDegrees() const
Definition: Angle.cpp:344
+
ostk::mathematics::geometry::Angle::Arcseconds
static Angle Arcseconds(const Real &aValue)
Definition: Angle.cpp:474
ostk::mathematics::geometry::Angle::Unit::Undefined
@ Undefined
Undefined.
-
ostk::mathematics::geometry::Angle::Revolutions
static Angle Revolutions(const Real &aValue)
Definition: Angle.cpp:448
-
ostk::mathematics::geometry::Angle::getUnit
Angle::Unit getUnit() const
Definition: Angle.cpp:263
+
ostk::mathematics::geometry::Angle::Revolutions
static Angle Revolutions(const Real &aValue)
Definition: Angle.cpp:479
+
ostk::mathematics::geometry::Angle::getUnit
Angle::Unit getUnit() const
Definition: Angle.cpp:294
ostk::mathematics::geometry::Angle::Unit::Arcminute
@ Arcminute
Arcminute.
ostk::mathematics::geometry::Angle::operator==
bool operator==(const Angle &anAngle) const
Definition: Angle.cpp:21
-
ostk::mathematics::geometry::Angle::HalfPi
static Angle HalfPi()
Definition: Angle.cpp:413
-
ostk::mathematics::geometry::Angle::inRevolutions
Real inRevolutions() const
Definition: Angle.cpp:388
+
ostk::mathematics::geometry::Angle::HalfPi
static Angle HalfPi()
Definition: Angle.cpp:444
+
ostk::mathematics::geometry::Angle::inRevolutions
Real inRevolutions() const
Definition: Angle.cpp:419
ostk::mathematics::geometry::Angle::operator+=
Angle & operator+=(const Angle &anAngle)
Definition: Angle.cpp:138
-
ostk::mathematics::geometry::Angle::Arcminutes
static Angle Arcminutes(const Real &aValue)
Definition: Angle.cpp:438
-
ostk::mathematics::geometry::Angle::TwoPi
static Angle TwoPi()
Definition: Angle.cpp:423
+
ostk::mathematics::geometry::Angle::Arcminutes
static Angle Arcminutes(const Real &aValue)
Definition: Angle.cpp:469
+
ostk::mathematics::geometry::Angle::isNegative
bool isNegative() const
Check if angle is negative.
Definition: Angle.cpp:263
+
ostk::mathematics::geometry::Angle::TwoPi
static Angle TwoPi()
Definition: Angle.cpp:454
ostk::mathematics::geometry::Angle::operator-
Angle operator-() const
Definition: Angle.cpp:226
diff --git a/html/_cuboid_8hpp_source.html b/html/_cuboid_8hpp_source.html index 0f4773f8..32bc4108 100644 --- a/html/_cuboid_8hpp_source.html +++ b/html/_cuboid_8hpp_source.html @@ -260,35 +260,35 @@
Segment.hpp
Point.hpp
ostk::mathematics::geometry::d3::object::Cuboid::Vertex
Point Vertex
Definition: Cuboid.hpp:49
-
ostk::mathematics::geometry::d3::object::Cuboid::print
virtual void print(std::ostream &anOutputStream, bool displayDecorators=true) const override
Print cuboid.
Definition: Cuboid.cpp:433
+
ostk::mathematics::geometry::d3::object::Cuboid::print
virtual void print(std::ostream &anOutputStream, bool displayDecorators=true) const override
Print cuboid.
Definition: Cuboid.cpp:438
ostk::mathematics::geometry::d3::object::Segment
Segment.
Definition: Segment.hpp:42
-
ostk::mathematics::geometry::d3::object::Cuboid::getSecondExtent
Real getSecondExtent() const
Get cuboid second extent.
Definition: Cuboid.cpp:386
-
ostk::mathematics::geometry::d3::object::Cuboid::contains
bool contains(const Point &aPoint) const
Check if cuboid contains point.
Definition: Cuboid.cpp:278
-
ostk::mathematics::geometry::d3::object::Cuboid::Cube
static Cuboid Cube(const Point &aCenter, const Real &anExtent)
Constructs a a cube.
Definition: Cuboid.cpp:500
-
ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis
Vector3d getFirstAxis() const
Get cuboid first axis.
Definition: Cuboid.cpp:346
-
ostk::mathematics::geometry::d3::object::Cuboid::getFirstExtent
Real getFirstExtent() const
Get cuboid first extent.
Definition: Cuboid.cpp:376
+
ostk::mathematics::geometry::d3::object::Cuboid::getSecondExtent
Real getSecondExtent() const
Get cuboid second extent.
Definition: Cuboid.cpp:391
+
ostk::mathematics::geometry::d3::object::Cuboid::contains
bool contains(const Point &aPoint) const
Check if cuboid contains point.
Definition: Cuboid.cpp:283
+
ostk::mathematics::geometry::d3::object::Cuboid::Cube
static Cuboid Cube(const Point &aCenter, const Real &anExtent)
Constructs a a cube.
Definition: Cuboid.cpp:505
+
ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis
Vector3d getFirstAxis() const
Get cuboid first axis.
Definition: Cuboid.cpp:351
+
ostk::mathematics::geometry::d3::object::Cuboid::getFirstExtent
Real getFirstExtent() const
Get cuboid first extent.
Definition: Cuboid.cpp:381
ostk::mathematics::geometry::d3::object::Line
Line.
Definition: Line.hpp:37
-
ostk::mathematics::geometry::d3::object::Cuboid::getCenter
Point getCenter() const
Get cuboid center.
Definition: Cuboid.cpp:336
-
ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis
Vector3d getSecondAxis() const
Get cuboid second axis.
Definition: Cuboid.cpp:356
+
ostk::mathematics::geometry::d3::object::Cuboid::getCenter
Point getCenter() const
Get cuboid center.
Definition: Cuboid.cpp:341
+
ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis
Vector3d getSecondAxis() const
Get cuboid second axis.
Definition: Cuboid.cpp:361
ostk::mathematics::geometry::d3::object::Cuboid::Edge
Segment Edge
Definition: Cuboid.hpp:50
ostk::mathematics::geometry::d3::Object
3D object
Definition: Object.hpp:22
-
ostk::mathematics::geometry::d3::object::Cuboid::isDefined
virtual bool isDefined() const override
Check if cuboid is defined.
Definition: Cuboid.cpp:146
+
ostk::mathematics::geometry::d3::object::Cuboid::isDefined
virtual bool isDefined() const override
Check if cuboid is defined.
Definition: Cuboid.cpp:151
ostk::mathematics::geometry::d3::object::Cuboid::clone
virtual Cuboid * clone() const override
Clone cuboid.
Definition: Cuboid.cpp:62
-
ostk::mathematics::geometry::d3::object::Cuboid::intersects
bool intersects(const Point &aPoint) const
Check if cuboid intersects point.
Definition: Cuboid.cpp:172
+
ostk::mathematics::geometry::d3::object::Cuboid::intersects
bool intersects(const Point &aPoint) const
Check if cuboid intersects point.
Definition: Cuboid.cpp:177
ostk::mathematics::geometry::d3::Transformation
Definition: Transformation.hpp:38
ostk::mathematics::object::Vector3d
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
ostk
Apache License 2.0.
Definition: BarycentricRational.hpp:14
-
ostk::mathematics::geometry::d3::object::Cuboid::getThirdExtent
Real getThirdExtent() const
Get cuboid third extent.
Definition: Cuboid.cpp:396
-
ostk::mathematics::geometry::d3::object::Cuboid::isNear
bool isNear(const Cuboid &aCuboid, const Real &aTolerance) const
Check if cuboid is near another cuboid.
Definition: Cuboid.cpp:152
+
ostk::mathematics::geometry::d3::object::Cuboid::getThirdExtent
Real getThirdExtent() const
Get cuboid third extent.
Definition: Cuboid.cpp:401
+
ostk::mathematics::geometry::d3::object::Cuboid::isNear
bool isNear(const Cuboid &aCuboid, const Real &aTolerance) const
Check if cuboid is near another cuboid.
Definition: Cuboid.cpp:157
ostk::mathematics::geometry::d3::object::Point
Point.
Definition: Point.hpp:37
ostk::mathematics::geometry::d3::object::Cuboid
Cuboid.
Definition: Cuboid.hpp:46
ostk::mathematics::geometry::d3::object::Ray
Ray.
Definition: Ray.hpp:43
-
ostk::mathematics::geometry::d3::object::Cuboid::applyTransformation
virtual void applyTransformation(const Transformation &aTransformation) override
Apply transformation to cuboid.
Definition: Cuboid.cpp:457
+
ostk::mathematics::geometry::d3::object::Cuboid::applyTransformation
virtual void applyTransformation(const Transformation &aTransformation) override
Apply transformation to cuboid.
Definition: Cuboid.cpp:462
ostk::mathematics::geometry::d3::object::Cuboid::operator==
bool operator==(const Cuboid &aCuboid) const
Equal to operator.
Definition: Cuboid.cpp:67
-
ostk::mathematics::geometry::d3::object::Cuboid::getVertices
Array< Cuboid::Vertex > getVertices() const
Get cuboid vertices.
Definition: Cuboid.cpp:406
-
ostk::mathematics::geometry::d3::object::Cuboid::operator!=
bool operator!=(const Cuboid &aCuboid) const
Not equal to operator.
Definition: Cuboid.cpp:141
-
ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis
Vector3d getThirdAxis() const
Get cuboid third axis.
Definition: Cuboid.cpp:366
-
ostk::mathematics::geometry::d3::object::Cuboid::Undefined
static Cuboid Undefined()
Constructs an undefined cuboid.
Definition: Cuboid.cpp:491
+
ostk::mathematics::geometry::d3::object::Cuboid::getVertices
Array< Cuboid::Vertex > getVertices() const
Get cuboid vertices.
Definition: Cuboid.cpp:411
+
ostk::mathematics::geometry::d3::object::Cuboid::operator!=
bool operator!=(const Cuboid &aCuboid) const
Not equal to operator.
Definition: Cuboid.cpp:146
+
ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis
Vector3d getThirdAxis() const
Get cuboid third axis.
Definition: Cuboid.cpp:371
+
ostk::mathematics::geometry::d3::object::Cuboid::Undefined
static Cuboid Undefined()
Constructs an undefined cuboid.
Definition: Cuboid.cpp:496
ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith
Intersection intersectionWith(const Line &aLine) const
Compute intersection of cuboid with line.
ostk::mathematics::geometry::d3::object::PointSet
Point set.
Definition: PointSet.hpp:36
diff --git a/html/_ellipsoid_8hpp_source.html b/html/_ellipsoid_8hpp_source.html index 8e8aa37a..eb4bb1af 100644 --- a/html/_ellipsoid_8hpp_source.html +++ b/html/_ellipsoid_8hpp_source.html @@ -276,7 +276,7 @@
Quaternion.hpp
ostk::mathematics::geometry::d3::object::Ellipsoid::getSecondPrincipalSemiAxis
Real getSecondPrincipalSemiAxis() const
Get ellipsoid second principal semi-axis.
Definition: Ellipsoid.cpp:529
ostk::mathematics::geometry::d3::object::Ellipsoid::getFirstAxis
Vector3d getFirstAxis() const
Get ellipsoid first axis.
Definition: Ellipsoid.cpp:549
-
ostk::mathematics::geometry::d3::transformation::rotation::Quaternion
Quaternion.
Definition: Quaternion.hpp:47
+
ostk::mathematics::geometry::d3::transformation::rotation::Quaternion
Quaternion.
Definition: Quaternion.hpp:48
ostk::mathematics::geometry::d3::object::Line
Line.
Definition: Line.hpp:37
ostk::mathematics::geometry::d3::object::Ellipsoid::print
virtual void print(std::ostream &anOutputStream, bool displayDecorators=true) const override
Print ellipsoid.
Definition: Ellipsoid.cpp:900
ostk::mathematics::geometry::d3::Object
3D object
Definition: Object.hpp:22
diff --git a/html/_euler_angle_8cpp.html b/html/_euler_angle_8cpp.html new file mode 100644 index 00000000..ff9a977d --- /dev/null +++ b/html/_euler_angle_8cpp.html @@ -0,0 +1,128 @@ + + + + + + + +OpenSpaceToolkitMathematics: Documentation + + + + + + + + + + + + + + + +
+
+
+ + + + + + +
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
EulerAngle.cpp File Reference
+
+
+ + + + + + + + + + + + + + + +

+Namespaces

 ostk
 Apache License 2.0.
 
 ostk::mathematics
 
 ostk::mathematics::geometry
 
 ostk::mathematics::geometry::d3
 
 ostk::mathematics::geometry::d3::transformation
 
 ostk::mathematics::geometry::d3::transformation::rotation
 
+ + + +

+Functions

std::ostream & ostk::mathematics::geometry::d3::transformation::rotation::operator<< (std::ostream &anOutputStream, const EulerAngle &aEulerAngle)
 
+
+
+ + + + + diff --git a/html/_euler_angle_8cpp.js b/html/_euler_angle_8cpp.js new file mode 100644 index 00000000..1a2d9c1b --- /dev/null +++ b/html/_euler_angle_8cpp.js @@ -0,0 +1,4 @@ +var _euler_angle_8cpp = +[ + [ "operator<<", "_euler_angle_8cpp.html#a4039583c5e12d44db90af36b8420cffd", null ] +]; \ No newline at end of file diff --git a/html/_euler_angle_8hpp.html b/html/_euler_angle_8hpp.html index 3b75e4ee..b5390e11 100644 --- a/html/_euler_angle_8hpp.html +++ b/html/_euler_angle_8hpp.html @@ -81,14 +81,26 @@
+Classes | Namespaces
EulerAngle.hpp File Reference
- +
#include <OpenSpaceToolkit/Core/Type/Integer.hpp>
+#include <OpenSpaceToolkit/Core/Type/Real.hpp>
+#include <OpenSpaceToolkit/Core/Type/String.hpp>
+#include <OpenSpaceToolkit/Mathematics/Geometry/Angle.hpp>
+#include <OpenSpaceToolkit/Mathematics/Object/Vector.hpp>
+

Go to the source code of this file.

+ + + + +

+Classes

class  ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
 Euler Angle (intrinsic rotation) More...
 
diff --git a/html/_euler_angle_8hpp_source.html b/html/_euler_angle_8hpp_source.html index dc01d9ce..ab401c02 100644 --- a/html/_euler_angle_8hpp_source.html +++ b/html/_euler_angle_8hpp_source.html @@ -88,30 +88,188 @@
3 #ifndef __OpenSpaceToolkit_Mathematics_Geometry_3D_Transformation_Rotation_EulerAngle__
4 #define __OpenSpaceToolkit_Mathematics_Geometry_3D_Transformation_Rotation_EulerAngle__
5 
-
6 namespace ostk
-
7 {
-
8 namespace mathematics
-
9 {
-
10 namespace geometry
-
11 {
-
12 namespace d3
-
13 {
-
14 namespace transformation
-
15 {
-
16 namespace rotation
-
17 {
-
18 
-
19 }
-
20 } // namespace transformation
-
21 } // namespace d3
-
22 } // namespace geometry
-
23 } // namespace mathematics
-
24 } // namespace ostk
+
6 #include <OpenSpaceToolkit/Core/Type/Integer.hpp>
+
7 #include <OpenSpaceToolkit/Core/Type/Real.hpp>
+
8 #include <OpenSpaceToolkit/Core/Type/String.hpp>
+
9 
+
10 #include <OpenSpaceToolkit/Mathematics/Geometry/Angle.hpp>
+
11 #include <OpenSpaceToolkit/Mathematics/Object/Vector.hpp>
+
12 
+
13 namespace ostk
+
14 {
+
15 namespace mathematics
+
16 {
+
17 namespace geometry
+
18 {
+
19 namespace d3
+
20 {
+
21 namespace transformation
+
22 {
+
23 namespace rotation
+
24 {
25 
-
26 #endif
+
26 using ostk::core::type::Integer;
+
27 using ostk::core::type::Real;
+
28 using ostk::core::type::String;
+
29 
+
30 using ostk::mathematics::geometry::Angle;
+
31 using ostk::mathematics::object::Vector3d;
+
32 using ostk::mathematics::object::Vector4d;
+
33 
+
34 class RotationMatrix;
+
35 class Quaternion;
+
36 class RotationVector;
+
37 
+
45 
+
46 class EulerAngle
+
47 {
+
48  public:
+
49  enum class AxisSequence
+
50  {
+
51 
+
52  Undefined,
+
53  XYZ,
+
54  ZXY,
+
55  ZYX
+
56 
+
57  };
+
58 
+
74 
+
75  EulerAngle(
+
76  const Angle& aFirstAngle,
+
77  const Angle& aSecondAngle,
+
78  const Angle& aThirdAngle,
+
79  const EulerAngle::AxisSequence& anAxisSequence
+
80  );
+
81 
+
95 
+
96  EulerAngle(const Vector3d& aVector, const Angle::Unit& anAngleUnit, const EulerAngle::AxisSequence& anAxisSequence);
+
97 
+
106 
+
107  bool operator==(const EulerAngle& aEulerAngle) const;
+
108 
+
117 
+
118  bool operator!=(const EulerAngle& aEulerAngle) const;
+
119 
+
129 
+
130  friend std::ostream& operator<<(std::ostream& anOutputStream, const EulerAngle& aEulerAngle);
+
131 
+
139 
+
140  bool isDefined() const;
+
141 
+
149 
+
150  bool isUnitary() const;
+
151 
+
165 
+
166  bool isNear(const EulerAngle& aEulerAngle, const Angle& anAngularTolerance) const;
+
167 
+
175 
+
176  Angle getPhi() const;
+
177 
+
185 
+
186  Angle getTheta() const;
+
187 
+
195 
+
196  Angle getPsi() const;
+
197 
+
205 
+
206  AxisSequence getAxisSequence() const;
+
207 
+
216 
+
217  Vector3d toVector(const Angle::Unit& anAngleUnit) const;
+
218 
+
227 
+
228  String toString(const Angle::Unit& anAngleUnit = Angle::Unit::Degree) const;
+
229 
+
237 
+
238  static EulerAngle Undefined();
+
239 
+
247 
+
248  static EulerAngle Unit();
+
249 
+
264 
+
265  static EulerAngle XYZ(const Angle& aFirstAngle, const Angle& aSecondAngle, const Angle& aThirdAngle);
+
266 
+
281 
+
282  static EulerAngle ZXY(const Angle& aFirstAngle, const Angle& aSecondAngle, const Angle& aThirdAngle);
+
283 
+
298 
+
299  static EulerAngle ZYX(const Angle& aFirstAngle, const Angle& aSecondAngle, const Angle& aThirdAngle);
+
300 
+
313 
+
314  static EulerAngle Quaternion(
+
315  const rotation::Quaternion& aQuaternion, const EulerAngle::AxisSequence& anAxisSequence
+
316  );
+
317 
+
330 
+
331  static EulerAngle RotationVector(
+
332  const rotation::RotationVector& aRotationVector, const EulerAngle::AxisSequence& anAxisSequence
+
333  );
+
334 
+
347 
+
348  static EulerAngle RotationMatrix(
+
349  const rotation::RotationMatrix& aRotationMatrix, const EulerAngle::AxisSequence& anAxisSequence
+
350  );
+
351 
+
360 
+
361  static String StringFromAxisSequence(const EulerAngle::AxisSequence& anAxisSequence);
+
362 
+
363  private:
+
364  Angle phi_;
+
365  Angle theta_;
+
366  Angle psi_;
+
367 
+
368  EulerAngle::AxisSequence axisSequence_;
+
369 };
+
370 } // namespace rotation
+
371 } // namespace transformation
+
372 } // namespace d3
+
373 } // namespace geometry
+
374 } // namespace mathematics
+
375 } // namespace ostk
+
376 
+
377 #endif
+
bool isUnitary() const
Check if Euler Angle is unitary.
Definition: EulerAngle.cpp:105
+
+
static EulerAngle XYZ(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following XYZ sequence.
Definition: EulerAngle.cpp:191
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
Rotation matrix.
Definition: RotationMatrix.hpp:40
+
+
static EulerAngle Quaternion(const rotation::Quaternion &aQuaternion, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Rotation Matrix.
Definition: EulerAngle.cpp:206
+
String toString(const Angle::Unit &anAngleUnit=Angle::Unit::Degree) const
Return string form of Euler Angle [phi; theta; psi].
Definition: EulerAngle.cpp:165
+
Unit
Definition: Angle.hpp:36
+
static EulerAngle ZYX(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following ZYX sequence.
Definition: EulerAngle.cpp:201
+
Angle getPhi() const
Get first angle of rotation (phi)
Definition: EulerAngle.cpp:115
+
AxisSequence getAxisSequence() const
Get axis sequence.
Definition: EulerAngle.cpp:145
+
Quaternion.
Definition: Quaternion.hpp:48
+
@ ZXY
Z -> X -> Y sequence.
+
AxisSequence
Definition: EulerAngle.hpp:49
+
bool isDefined() const
Check if Euler Angle is defined.
Definition: EulerAngle.cpp:99
+
bool operator!=(const EulerAngle &aEulerAngle) const
Not equal to operator.
Definition: EulerAngle.cpp:74
+
@ Undefined
Undefined sequence.
+
Angle getPsi() const
Get third angle of rotation (psi)
Definition: EulerAngle.cpp:135
+
Angle.
Definition: Angle.hpp:33
+
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
+
Euler Angle (intrinsic rotation)
Definition: EulerAngle.hpp:46
Apache License 2.0.
Definition: BarycentricRational.hpp:14
+
Eigen::Vector4d Vector4d
Definition: Vector.hpp:39
+
@ ZYX
Z -> Y -> X sequence.
+
@ Degree
Degree.
+
Rotation Vector.
Definition: RotationVector.hpp:39
+
static EulerAngle RotationVector(const rotation::RotationVector &aRotationVector, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Quaternion.
Definition: EulerAngle.cpp:255
+
static EulerAngle ZXY(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following ZXY sequence.
Definition: EulerAngle.cpp:196
+
bool operator==(const EulerAngle &aEulerAngle) const
Equal to operator.
Definition: EulerAngle.cpp:47
+
static String StringFromAxisSequence(const EulerAngle::AxisSequence &anAxisSequence)
Construct a string representation of an axis sequence.
Definition: EulerAngle.cpp:316
+
static EulerAngle Undefined()
Construct undefined Euler Angle.
Definition: EulerAngle.cpp:181
+
@ XYZ
X -> Y -> Z sequence.
+
EulerAngle(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from angles and axis sequence.
Definition: EulerAngle.cpp:24
+
Angle getTheta() const
Get second angle of rotation (theta)
Definition: EulerAngle.cpp:125
+
Vector3d toVector(const Angle::Unit &anAngleUnit) const
Return vector containing the three angles.
Definition: EulerAngle.cpp:155
+
bool isNear(const EulerAngle &aEulerAngle, const Angle &anAngularTolerance) const
Check if Euler Angle is equal to another Euler Angle within a given angular tolerance.
Definition: EulerAngle.cpp:110
+
friend std::ostream & operator<<(std::ostream &anOutputStream, const EulerAngle &aEulerAngle)
Output stream operator.
Definition: EulerAngle.cpp:79
+
static EulerAngle RotationMatrix(const rotation::RotationMatrix &aRotationMatrix, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Rotation Vector.
Definition: EulerAngle.cpp:262
-
Real getScalarPart() const
Get scalar part.
Definition: Quaternion.cpp:239
+
Real getScalarPart() const
Get scalar part.
Definition: Quaternion.cpp:240
-
Real x() const
Get first component of vector part.
Definition: Quaternion.cpp:189
-
Rotation matrix.
Definition: RotationMatrix.hpp:39
-
Quaternion crossMultiply(const Quaternion &aQuaternion) const
Get quaternion norm.
Definition: Quaternion.cpp:311
-
Quaternion operator^(const Real &aScalar) const
Power operator (quaternion)
Definition: Quaternion.cpp:106
+
Real x() const
Get first component of vector part.
Definition: Quaternion.cpp:190
+
Rotation matrix.
Definition: RotationMatrix.hpp:40
+
Quaternion crossMultiply(const Quaternion &aQuaternion) const
Multiply Quaternion using cross multiplication.
Definition: Quaternion.cpp:312
+
Quaternion toConjugate() const
Calculate conjugate of Quaternion.
Definition: Quaternion.cpp:255
+
Quaternion operator^(const Real &aScalar) const
Power operator (Quaternion)
Definition: Quaternion.cpp:107
-
bool operator==(const Quaternion &aQuaternion) const
Equal to operator.
Definition: Quaternion.cpp:53
-
Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)
Constructor.
Definition: Quaternion.cpp:23
-
Quaternion operator/(const Quaternion &aQuaternion) const
Division operator (quaternion)
Definition: Quaternion.cpp:96
-
Quaternion dotMultiply(const Quaternion &aQuaternion) const
Multiply quaternion using dot multiplication.
Definition: Quaternion.cpp:326
-
Quaternion exp() const
Get normalized quaternion.
Definition: Quaternion.cpp:264
-
Angle angularDifferenceWith(const Quaternion &aQuaternion) const
Get angular difference with quaternion.
Definition: Quaternion.cpp:470
-
static Quaternion RotationVector(const rotation::RotationVector &aRotationVector)
Constructs a quaternion from a rotation vector.
Definition: Quaternion.cpp:499
-
Quaternion log() const
Get logarithm.
Definition: Quaternion.cpp:279
-
static Quaternion ShortestRotation(const Vector3d &aFirstVector, const Vector3d &aSecondVector)
Constructs a quaternion describing the shortest rotation between two vectors.
Definition: Quaternion.cpp:591
-
static Quaternion Undefined()
Constructs an undefined quaternion.
Definition: Quaternion.cpp:482
-
Quaternion.
Definition: Quaternion.hpp:47
-
Quaternion & operator*=(const Quaternion &aQuaternion)
Multiplication assignment operator (quaternion)
Definition: Quaternion.cpp:126
-
bool isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) const
Check if quaternion is near a given quaternion.
Definition: Quaternion.cpp:178
-
bool isUnitary() const
Check if quaternion is unitary, i.e. its norm is equal to 1.0.
Definition: Quaternion.cpp:168
+
Real norm() const
Calculate norm of Quaternion.
Definition: Quaternion.cpp:302
+
bool operator==(const Quaternion &aQuaternion) const
Equal to operator.
Definition: Quaternion.cpp:54
+
Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)
Constructor.
Definition: Quaternion.cpp:24
+
Quaternion operator+(const Quaternion &aQuaternion) const
Addition operator.
Definition: Quaternion.cpp:70
+
Quaternion operator/(const Quaternion &aQuaternion) const
Division operator (Quaternion)
Definition: Quaternion.cpp:97
+
Quaternion dotMultiply(const Quaternion &aQuaternion) const
Multiply Quaternion using dot multiplication.
Definition: Quaternion.cpp:327
+
Quaternion exp() const
Calculate exponential of Quaternion.
Definition: Quaternion.cpp:265
+
Angle angularDifferenceWith(const Quaternion &aQuaternion) const
Compute angular difference with Quaternion.
Definition: Quaternion.cpp:471
+
static Quaternion RotationVector(const rotation::RotationVector &aRotationVector)
Construct Quaternion from rotation vector.
Definition: Quaternion.cpp:500
+
Quaternion log() const
Calculate logarithm of Quaternion.
Definition: Quaternion.cpp:280
+
static Quaternion ShortestRotation(const Vector3d &aFirstVector, const Vector3d &aSecondVector)
Construct Quaternion describing the shortest rotation between two vectors.
Definition: Quaternion.cpp:655
+
static Quaternion Undefined()
Construct undefined Quaternion.
Definition: Quaternion.cpp:483
+
Quaternion.
Definition: Quaternion.hpp:48
+
Quaternion & operator*=(const Quaternion &aQuaternion)
Multiplication assignment operator (Quaternion)
Definition: Quaternion.cpp:127
+
bool isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) const
Check if Quaternion is near another Quaternion.
Definition: Quaternion.cpp:179
+
Quaternion toNormalized() const
Calculate normalized Quaternion.
Definition: Quaternion.cpp:250
+
bool isUnitary() const
Check if Quaternion is unitary (i.e., its norm is equal to 1.0)
Definition: Quaternion.cpp:169
@ SXYZ
Scalar-vector format.
-
bool isDefined() const
Check if quaternion is defined.
Definition: Quaternion.cpp:163
-
Vector3d getVectorPart() const
Get vector part.
Definition: Quaternion.cpp:229
-
Quaternion & operator/=(const Quaternion &aQuaternion)
Division assignment operator (quaternion)
Definition: Quaternion.cpp:133
+
bool isDefined() const
Check if Quaternion is defined.
Definition: Quaternion.cpp:164
+
Vector3d getVectorPart() const
Get vector part.
Definition: Quaternion.cpp:230
+
Quaternion & operator/=(const Quaternion &aQuaternion)
Division assignment operator (Quaternion)
Definition: Quaternion.cpp:134
@ XYZS
Vector-scalar format.
Angle.
Definition: Angle.hpp:33
-
Real s() const
Definition: Quaternion.cpp:219
+
Real s() const
Definition: Quaternion.cpp:220
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
+
Euler Angle (intrinsic rotation)
Definition: EulerAngle.hpp:46
Apache License 2.0.
Definition: BarycentricRational.hpp:14
Eigen::Vector4d Vector4d
Definition: Vector.hpp:39
-
Quaternion & inverse()
Inverse quaternion.
Definition: Quaternion.cpp:430
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
-
Real y() const
Get second component of vector part.
Definition: Quaternion.cpp:199
-
Quaternion & rectify()
Rectify quaternion (enforce positive scalar part)
Definition: Quaternion.cpp:452
-
bool operator!=(const Quaternion &aQuaternion) const
Not equal to operator.
Definition: Quaternion.cpp:64
-
Quaternion pow(const Real &aValue) const
Get power.
Definition: Quaternion.cpp:294
-
Vector3d operator*(const Vector3d &aVector) const
Addition operator (quaternion)
Definition: Quaternion.cpp:81
-
Quaternion & operator+=(const Quaternion &aQuaternion)
Addition assignment operator (quaternion)
Definition: Quaternion.cpp:111
-
Rotation vector.
Definition: RotationVector.hpp:38
-
Real z() const
Get third component of vector part.
Definition: Quaternion.cpp:209
-
String toString(const Quaternion::Format &aFormat) const
Convert quaternion to its string representation.
Definition: Quaternion.cpp:389
-
Format
Quaternion format.
Definition: Quaternion.hpp:52
-
friend std::ostream & operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)
Output stream operator.
Definition: Quaternion.cpp:145
-
static Quaternion LERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Linear interpolator method.
Definition: Quaternion.cpp:613
-
static Quaternion NLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Normalized linear interpolator method.
Definition: Quaternion.cpp:628
-
Vector4d toVector(const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const
Convert quaternion to its vector representation.
Definition: Quaternion.cpp:366
-
Quaternion & normalize()
Normalize quaternion.
Definition: Quaternion.cpp:399
-
Quaternion & conjugate()
Conjugate quaternion.
Definition: Quaternion.cpp:416
-
static Quaternion RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Constructs a rquaternion from a rotation matrix.
Definition: Quaternion.cpp:511
-
static Quaternion Unit()
Constructs a unit quaternion.
Definition: Quaternion.cpp:487
-
Real dotProduct(const Quaternion &aQuaternion) const
Calculate quaternion dot product.
Definition: Quaternion.cpp:341
-
Vector3d rotateVector(const Vector3d &aVector) const
Rotate vector using quaternion.
Definition: Quaternion.cpp:351
-
static Quaternion SLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Definition: Quaternion.cpp:635
-
static Quaternion Parse(const String &aString, const Quaternion::Format &aFormat=Quaternion::Format::XYZS)
Constructs a quaternion from a string.
Definition: Quaternion.cpp:572
+
Quaternion & inverse()
Inverse Quaternion.
Definition: Quaternion.cpp:431
+
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Construct Quaternion using the vector-scalar format.
Definition: Quaternion.cpp:493
+
Real y() const
Get second component of vector part.
Definition: Quaternion.cpp:200
+
Quaternion & rectify()
Rectify Quaternion (enforce positive scalar part)
Definition: Quaternion.cpp:453
+
bool operator!=(const Quaternion &aQuaternion) const
Not equal to operator.
Definition: Quaternion.cpp:65
+
Quaternion pow(const Real &aValue) const
Calculate power of Quaternion.
Definition: Quaternion.cpp:295
+
Quaternion & operator+=(const Quaternion &aQuaternion)
Addition assignment operator (Quaternion)
Definition: Quaternion.cpp:112
+
Rotation Vector.
Definition: RotationVector.hpp:39
+
Real z() const
Get third component of vector part.
Definition: Quaternion.cpp:210
+
String toString(const Quaternion::Format &aFormat) const
Convert Quaternion to its string representation.
Definition: Quaternion.cpp:390
+
Format
Quaternion format.
Definition: Quaternion.hpp:53
+
Quaternion toInverse() const
Calculate inverse of Quaternion.
Definition: Quaternion.cpp:260
+
friend std::ostream & operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)
Output stream operator.
Definition: Quaternion.cpp:146
+
static Quaternion LERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Linear interpolator method.
Definition: Quaternion.cpp:677
+
static Quaternion NLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Normalized linear interpolator method.
Definition: Quaternion.cpp:692
+
Vector4d toVector(const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const
Convert Quaternion to its vector representation.
Definition: Quaternion.cpp:367
+
Quaternion operator*(const Quaternion &aQuaternion) const
Multiplication operator (Quaternion)
Definition: Quaternion.cpp:77
+
Quaternion & normalize()
Normalize Quaternion.
Definition: Quaternion.cpp:400
+
Quaternion & conjugate()
Conjugate Quaternion.
Definition: Quaternion.cpp:417
+
static Quaternion RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Construct Quaternion from Rotation Matrix.
Definition: Quaternion.cpp:512
+
static Quaternion Unit()
Construct unitary Quaternion.
Definition: Quaternion.cpp:488
+
Real dotProduct(const Quaternion &aQuaternion) const
Calculate Quaternion dot product.
Definition: Quaternion.cpp:342
+
Vector3d rotateVector(const Vector3d &aVector) const
Rotate vector using Quaternion.
Definition: Quaternion.cpp:352
+
static Quaternion SLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
Definition: Quaternion.cpp:699
+
static Quaternion EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Quaternion from Euler Angle.
Definition: Quaternion.cpp:576
+
static Quaternion Parse(const String &aString, const Quaternion::Format &aFormat=Quaternion::Format::XYZS)
Construct Quaternion from string.
Definition: Quaternion.cpp:636
-
Rotation matrix.
Definition: RotationMatrix.hpp:39
-
static RotationMatrix Unit()
Constructs a unit rotation matrix.
Definition: RotationMatrix.cpp:288
+
Rotation matrix.
Definition: RotationMatrix.hpp:40
+
static RotationMatrix Unit()
Construct unitary Rotation Matrix.
Definition: RotationMatrix.cpp:290
-
static RotationMatrix Undefined()
Constructs an undefined rotation matrix.
Definition: RotationMatrix.cpp:283
-
static RotationMatrix Rows(const Vector3d &aFirstRow, const Vector3d &aSecondRow, const Vector3d &aThirdRow)
Constructs a rotation matrix from row vectors.
Definition: RotationMatrix.cpp:344
-
Quaternion.
Definition: Quaternion.hpp:47
-
bool isDefined() const
Check if rotation matrix is defined.
Definition: RotationMatrix.cpp:206
-
RotationMatrix & transpose()
Transpose rotation matrix.
Definition: RotationMatrix.cpp:271
-
static RotationMatrix RY(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the Y-axis.
Definition: RotationMatrix.cpp:310
-
static RotationMatrix RZ(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the Z-axis.
Definition: RotationMatrix.cpp:327
-
bool operator!=(const RotationMatrix &aRotationMatrix) const
Not equal to operator.
Definition: RotationMatrix.cpp:120
-
double operator()(const Index &aRowIndex, const Index &aColumnIndex) const
Index function operator.
Definition: RotationMatrix.cpp:150
-
RotationMatrix operator*(const RotationMatrix &aRotationMatrix) const
Matrix multiplication operator.
Definition: RotationMatrix.cpp:125
+
static RotationMatrix Undefined()
Construct an undefined Rotation Matrix.
Definition: RotationMatrix.cpp:285
+
static RotationMatrix Rows(const Vector3d &aFirstRow, const Vector3d &aSecondRow, const Vector3d &aThirdRow)
Construct Rotation Matrix from row vectors.
Definition: RotationMatrix.cpp:346
+
Quaternion.
Definition: Quaternion.hpp:48
+
bool isDefined() const
Check if Rotation Matrix is defined.
Definition: RotationMatrix.cpp:207
+
RotationMatrix & transpose()
Transpose Rotation Matrix.
Definition: RotationMatrix.cpp:272
+
static RotationMatrix RY(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the Y-axis.
Definition: RotationMatrix.cpp:312
+
static RotationMatrix RZ(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the Z-axis.
Definition: RotationMatrix.cpp:329
+
bool operator!=(const RotationMatrix &aRotationMatrix) const
Not equal to operator.
Definition: RotationMatrix.cpp:121
+
double operator()(const Index &aRowIndex, const Index &aColumnIndex) const
Index function operator.
Definition: RotationMatrix.cpp:151
+
RotationMatrix operator*(const RotationMatrix &aRotationMatrix) const
Matrix multiplication operator.
Definition: RotationMatrix.cpp:126
Angle.
Definition: Angle.hpp:33
-
static RotationMatrix RotationVector(const rotation::RotationVector &aRotationVector)
Constructs a rotation matrix from a rotation vector.
Definition: RotationMatrix.cpp:497
+
static RotationMatrix RotationVector(const rotation::RotationVector &aRotationVector)
Construct Rotation Matrix from Rotation Vector.
Definition: RotationMatrix.cpp:499
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
+
Euler Angle (intrinsic rotation)
Definition: EulerAngle.hpp:46
Apache License 2.0.
Definition: BarycentricRational.hpp:14
-
Vector3d getRowAt(const Index &aRowIndex) const
Get row at index.
Definition: RotationMatrix.cpp:221
-
Vector3d getColumnAt(const Index &aColumnIndex) const
Get column at index.
Definition: RotationMatrix.cpp:236
-
Matrix3d getMatrix() const
Get underlying rotation matrix.
Definition: RotationMatrix.cpp:251
-
static RotationMatrix RX(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the X-axis.
Definition: RotationMatrix.cpp:293
-
Rotation vector.
Definition: RotationVector.hpp:38
-
RotationMatrix toTransposed() const
Get transposed rotation matrix.
Definition: RotationMatrix.cpp:261
-
bool operator==(const RotationMatrix &aRotationMatrix) const
Equal to operator.
Definition: RotationMatrix.cpp:110
-
friend std::ostream & operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)
Output stream operator.
Definition: RotationMatrix.cpp:190
-
static RotationMatrix Columns(const Vector3d &aFirstColumn, const Vector3d &aSecondColumn, const Vector3d &aThirdColumn)
Constructs a rotation matrix from column vectors.
Definition: RotationMatrix.cpp:399
+
Vector3d getRowAt(const Index &aRowIndex) const
Get row at index.
Definition: RotationMatrix.cpp:222
+
Vector3d getColumnAt(const Index &aColumnIndex) const
Get column at index.
Definition: RotationMatrix.cpp:237
+
Matrix3d getMatrix() const
Get underlying 3D Matrix.
Definition: RotationMatrix.cpp:252
+
static RotationMatrix RX(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the X-axis.
Definition: RotationMatrix.cpp:295
+
Rotation Vector.
Definition: RotationVector.hpp:39
+
RotationMatrix toTransposed() const
Calculate transposed Rotation Matrix.
Definition: RotationMatrix.cpp:262
+
bool operator==(const RotationMatrix &aRotationMatrix) const
Equal to operator.
Definition: RotationMatrix.cpp:111
+
friend std::ostream & operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)
Output stream operator.
Definition: RotationMatrix.cpp:191
+
static RotationMatrix Columns(const Vector3d &aFirstColumn, const Vector3d &aSecondColumn, const Vector3d &aThirdColumn)
Construct Rotation Matrix from column vectors.
Definition: RotationMatrix.cpp:401
Eigen::Matrix3d Matrix3d
Definition: Vector.hpp:53
-
const Matrix3d & accessMatrix() const
Access underlying rotation matrix.
Definition: RotationMatrix.cpp:211
-
static RotationMatrix Quaternion(const rotation::Quaternion &aQuaternion)
Constructs a rotation matrix from a quaternion.
Definition: RotationMatrix.cpp:456
+
static RotationMatrix EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Rotation Matrix from Euler Angle.
Definition: RotationMatrix.cpp:533
+
const Matrix3d & accessMatrix() const
Access underlying 3D Matrix.
Definition: RotationMatrix.cpp:212
+
static RotationMatrix Quaternion(const rotation::Quaternion &aQuaternion)
Construct Rotation Matrix from Quaternion.
Definition: RotationMatrix.cpp:458
- +

Namespaces

 ostk

Classes

class  ostk::mathematics::geometry::d3::transformation::rotation::RotationVector
 Rotation vector. More...
 Rotation Vector. More...
 
- - - - - - - - - - - - + + + + + + + + + + + + +

diff --git a/html/_rotation_vector_8hpp_source.html b/html/_rotation_vector_8hpp_source.html index 57b0196f..b409b792 100644 --- a/html/_rotation_vector_8hpp_source.html +++ b/html/_rotation_vector_8hpp_source.html @@ -115,95 +115,109 @@
30 
31 class Quaternion;
32 class RotationMatrix;
-
33 
-
37 
- -
39 {
-
40  public:
-
45 
-
46  RotationVector(const Vector3d& anAxis, const Angle& anAngle);
-
47 
-
57 
-
58  bool operator==(const RotationVector& aRotationVector) const;
-
59 
-
69 
-
70  bool operator!=(const RotationVector& aRotationVector) const;
-
71 
-
81 
-
82  friend std::ostream& operator<<(std::ostream& anOutputStream, const RotationVector& aRotationVector);
-
83 
-
91 
-
92  bool isDefined() const;
-
93 
-
97 
-
98  Vector3d getAxis() const;
-
99 
-
103 
-
104  Angle getAngle() const;
-
105 
-
115 
-
116  String toString(const Integer& aPrecision = Integer::Undefined()) const;
-
117 
-
125 
-
126  static RotationVector Undefined();
-
127 
-
135 
-
136  static RotationVector Unit();
+
33 class EulerAngle;
+
34 
+
38 
+ +
40 {
+
41  public:
+
50 
+
51  RotationVector(const Vector3d& anAxis, const Angle& anAngle);
+
52 
+
62 
+
63  RotationVector(const Vector3d& anAxis, const Angle::Unit& anAngleUnit);
+
64 
+
73 
+
74  bool operator==(const RotationVector& aRotationVector) const;
+
75 
+
84 
+
85  bool operator!=(const RotationVector& aRotationVector) const;
+
86 
+
96 
+
97  friend std::ostream& operator<<(std::ostream& anOutputStream, const RotationVector& aRotationVector);
+
98 
+
106 
+
107  bool isDefined() const;
+
108 
+
116 
+
117  Vector3d getAxis() const;
+
118 
+
126 
+
127  Angle getAngle() const;
+
128 
137 
-
146 
-
147  static RotationVector X(const Angle& anAngle);
-
148 
+
138  String toString(const Integer& aPrecision = Integer::Undefined()) const;
+
139 
+
147 
+ +
149 
157 
-
158  static RotationVector Y(const Angle& anAngle);
+
158  static RotationVector Undefined();
159 
-
168 
-
169  static RotationVector Z(const Angle& anAngle);
-
170 
+
167 
+
168  static RotationVector Unit();
+
169 
+
178 
+
179  static RotationVector X(const Angle& anAngle);
180 
-
181  static RotationVector Quaternion(const rotation::Quaternion& aQuaternion);
-
182 
+
189 
+
190  static RotationVector Y(const Angle& anAngle);
191 
-
192  static RotationVector RotationMatrix(const rotation::RotationMatrix& aRotationMatrix);
-
193 
-
194  private:
-
195  Vector3d axis_;
-
196  Angle angle_;
-
197 
-
198  RotationVector();
-
199 };
200 
-
201 } // namespace rotation
-
202 } // namespace transformation
-
203 } // namespace d3
-
204 } // namespace geometry
-
205 } // namespace mathematics
-
206 } // namespace ostk
-
207 
-
208 #endif
+
201  static RotationVector Z(const Angle& anAngle);
+
202 
+
211 
+
212  static RotationVector Quaternion(const rotation::Quaternion& aQuaternion);
+
213 
+
222 
+
223  static RotationVector RotationMatrix(const rotation::RotationMatrix& aRotationMatrix);
+
224 
+
233 
+
234  static RotationVector EulerAngle(const rotation::EulerAngle& aEulerAngle);
+
235 
+
236  private:
+
237  Vector3d axis_;
+
238  Angle angle_;
+
239 
+
240  RotationVector();
+
241 };
+
242 
+
243 } // namespace rotation
+
244 } // namespace transformation
+
245 } // namespace d3
+
246 } // namespace geometry
+
247 } // namespace mathematics
+
248 } // namespace ostk
+
249 
+
250 #endif
-
Rotation matrix.
Definition: RotationMatrix.hpp:39
-
Vector3d getAxis() const
Get rotation axis.
Definition: RotationVector.cpp:73
-
static RotationVector Unit()
Constructs a unit rotation vector.
Definition: RotationVector.cpp:110
-
static RotationVector Undefined()
Constructs an undefined rotation vector.
Definition: RotationVector.cpp:105
-
static RotationVector Quaternion(const rotation::Quaternion &aQuaternion)
Constructs a rotation vector from a quaternion.
Definition: RotationVector.cpp:145
+
Rotation matrix.
Definition: RotationMatrix.hpp:40
+
Vector3d getAxis() const
Get rotation axis.
Definition: RotationVector.cpp:84
+
static RotationVector EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Rotation Vector from Euler Angle.
Definition: RotationVector.cpp:225
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static RotationVector Undefined()
Construct an undefined Rotation Vector.
Definition: RotationVector.cpp:138
+
static RotationVector Quaternion(const rotation::Quaternion &aQuaternion)
Construct Rotation Vector from Quaternion.
Definition: RotationVector.cpp:178
-
bool isDefined() const
Check if rotation vector is defined.
Definition: RotationVector.cpp:68
- -
static RotationVector Y(const Angle &anAngle)
Constructs a rotation vector around Y-axis.
Definition: RotationVector.cpp:125
-
static RotationVector X(const Angle &anAngle)
Constructs a rotation vector around X-axis.
Definition: RotationVector.cpp:115
-
static RotationVector Z(const Angle &anAngle)
Constructs a rotation vector around Z-axis.
Definition: RotationVector.cpp:135
-
bool operator!=(const RotationVector &aRotationVector) const
Not equal to operator.
Definition: RotationVector.cpp:49
+
Unit
Definition: Angle.hpp:36
+
bool isDefined() const
Check if Rotation Vector is defined.
Definition: RotationVector.cpp:79
+ +
static RotationVector Y(const Angle &anAngle)
Construct Rotation Vector around Y-axis.
Definition: RotationVector.cpp:158
+
static RotationVector X(const Angle &anAngle)
Construct Rotation Vector around X-axis.
Definition: RotationVector.cpp:148
+
static RotationVector Z(const Angle &anAngle)
Construct Rotation Vector around Z-axis.
Definition: RotationVector.cpp:168
+
bool operator!=(const RotationVector &aRotationVector) const
Not equal to operator.
Definition: RotationVector.cpp:60
Angle.
Definition: Angle.hpp:33
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
+
Euler Angle (intrinsic rotation)
Definition: EulerAngle.hpp:46
Apache License 2.0.
Definition: BarycentricRational.hpp:14
-
bool operator==(const RotationVector &aRotationVector) const
Equal to operator.
Definition: RotationVector.cpp:33
-
Rotation vector.
Definition: RotationVector.hpp:38
-
static RotationVector RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Constructs a rotation vector from a rotation matrix.
Definition: RotationVector.cpp:168
-
String toString(const Integer &aPrecision=Integer::Undefined()) const
Convert rotation vector to its string representation.
Definition: RotationVector.cpp:93
-
Angle getAngle() const
Get rotation angle.
Definition: RotationVector.cpp:83
-
friend std::ostream & operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)
Output stream operator.
Definition: RotationVector.cpp:54
+
bool operator==(const RotationVector &aRotationVector) const
Equal to operator.
Definition: RotationVector.cpp:44
+
Rotation Vector.
Definition: RotationVector.hpp:39
+
static RotationVector RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Construct Rotation Vector from Rotation Matrix.
Definition: RotationVector.cpp:201
+
RotationVector & rectify()
Rectify Rotation Vector (enforce positive angle)
Definition: RotationVector.cpp:104
+
String toString(const Integer &aPrecision=Integer::Undefined()) const
Convert Rotation Vector to string representation.
Definition: RotationVector.cpp:126
+
Angle getAngle() const
Get rotation angle.
Definition: RotationVector.cpp:94
+
friend std::ostream & operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)
Output stream operator.
Definition: RotationVector.cpp:65

 CSphereSphere
 Ntransformation
 Nrotation
 CQuaternionQuaternion
 CRotationMatrixRotation matrix
 CRotationVectorRotation vector
 CIntersection3D intersection
 CObject3D object
 CTransformation
 CAngleAngle
 Nobject
 CIntervalSet of numbers with the property that any number that lies between two numbers in the set is also included in the set
 CIntervalBaseInterval base (used to avoid having a templated enum)
 Nsolver
 CNumericalSolverDefines a numerical ODE solver that use the Boost Odeint libraries. This class will be moved into OSTk-math in the future
 CEulerAngleEuler Angle (intrinsic rotation)
 CQuaternionQuaternion
 CRotationMatrixRotation matrix
 CRotationVectorRotation Vector
 CIntersection3D intersection
 CObject3D object
 CTransformation
 CAngleAngle
 Nobject
 CIntervalSet of numbers with the property that any number that lies between two numbers in the set is also included in the set
 CIntervalBaseInterval base (used to avoid having a templated enum)
 Nsolver
 CNumericalSolverDefines a numerical ODE solver that use the Boost Odeint libraries. This class will be moved into OSTk-math in the future
diff --git a/html/classes.html b/html/classes.html index 9e27018f..4208b157 100644 --- a/html/classes.html +++ b/html/classes.html @@ -88,93 +88,93 @@ - + + + + + - + + + + + - - - - + - - + - - + - + - - - - - - - + + - + + + + + - + + - + + - - + - + - + + - + - - - + + + + - - + - - - - + - - - - - - + - + + + - - - + +
  a  
  h  
+
EulerAngle (ostk::mathematics::geometry::d3::transformation::rotation)   Line (ostk::mathematics::geometry::d3::object)   
  p  
+
RotationMatrix (ostk::mathematics::geometry::d3::transformation::rotation)   
  h  
Linear (ostk::mathematics::curvefitting::interpolator)   Point (ostk::mathematics::geometry::d2::object)   RotationVector (ostk::mathematics::geometry::d3::transformation::rotation)   
Angle (ostk::mathematics::geometry)   LineString (ostk::mathematics::geometry::d3::object)   Plane (ostk::mathematics::geometry::d3::object)   
  s  
LineString (ostk::mathematics::geometry::d3::object)   Point (ostk::mathematics::geometry::d3::object)   
Angle (ostk::mathematics::geometry)   
  b  
+
PointSet::Hasher (ostk::mathematics::geometry::d2::object)    LineString (ostk::mathematics::geometry::d2::object)   PointSet (ostk::mathematics::geometry::d3::object)   Segment (ostk::mathematics::geometry::d2::object)   Point (ostk::mathematics::geometry::d2::object)   
  b  
-
PointSet::Hasher (ostk::mathematics::geometry::d3::object)   
PointSet::Hasher (ostk::mathematics::geometry::d3::object)   
  m  
PointSet (ostk::mathematics::geometry::d2::object)   Point (ostk::mathematics::geometry::d3::object)    Segment (ostk::mathematics::geometry::d3::object)   
  i  
-
Polygon (ostk::mathematics::geometry::d2::object)   Sphere (ostk::mathematics::geometry::d3::object)   
BarycentricRational (ostk::mathematics::curvefitting::interpolator)   MultiLineString (ostk::mathematics::geometry::d2::object)   Polygon (ostk::mathematics::geometry::d3::object)   
  t  
+
  i  
PointSet (ostk::mathematics::geometry::d2::object)   Segment (ostk::mathematics::geometry::d2::object)   
  c  
Interpolator (ostk::mathematics::curvefitting)   MultiLineString (ostk::mathematics::geometry::d2::object)   PointSet (ostk::mathematics::geometry::d3::object)   Sphere (ostk::mathematics::geometry::d3::object)   
Interpolator (ostk::mathematics::curvefitting)    MultiPolygon (ostk::mathematics::geometry::d2::object)   Pyramid (ostk::mathematics::geometry::d3::object)   Polygon (ostk::mathematics::geometry::d2::object)   
  t  
+
Intersection (ostk::mathematics::geometry::d2)   
Composite (ostk::mathematics::geometry::d2::object)   Intersection (ostk::mathematics::geometry::d2)   
  n  
  q  
-
Transformation (ostk::mathematics::geometry::d3)   Polygon (ostk::mathematics::geometry::d3::object)   
Composite (ostk::mathematics::geometry::d2::object)   
Composite (ostk::mathematics::geometry::d3::object)    Intersection (ostk::mathematics::geometry::d3)   Transformation (ostk::mathematics::geometry::d2)   Pyramid (ostk::mathematics::geometry::d3::object)   Transformation (ostk::mathematics::geometry::d3)   
Composite (ostk::mathematics::geometry::d3::object)   
Cone (ostk::mathematics::geometry::d3::object)    Interval (ostk::mathematics::object)    NumericalSolver (ostk::mathematics::solver)   Quaternion (ostk::mathematics::geometry::d3::transformation::rotation)   
Cone (ostk::mathematics::geometry::d3::object)   
  q  
+
Transformation (ostk::mathematics::geometry::d2)   
CubicSpline (ostk::mathematics::curvefitting::interpolator)    IntervalBase (ostk::mathematics::object)   
  o  
  r  
-
CubicSpline (ostk::mathematics::curvefitting::interpolator)   
Cuboid (ostk::mathematics::geometry::d3::object)   
  l  
Cuboid (ostk::mathematics::geometry::d3::object)   Object (ostk::mathematics::geometry::d2)   Ray (ostk::mathematics::geometry::d3::object)   Quaternion (ostk::mathematics::geometry::d3::transformation::rotation)   
  e  
Line (ostk::mathematics::geometry::d2::object)   Object (ostk::mathematics::geometry::d3)   RotationMatrix (ostk::mathematics::geometry::d3::transformation::rotation)   
Line (ostk::mathematics::geometry::d3::object)   
  p  
+
Object (ostk::mathematics::geometry::d2)   
  r  
RotationVector (ostk::mathematics::geometry::d3::transformation::rotation)   
Line (ostk::mathematics::geometry::d2::object)   Object (ostk::mathematics::geometry::d3)   
Ellipsoid (ostk::mathematics::geometry::d3::object)   
Plane (ostk::mathematics::geometry::d3::object)   
Ray (ostk::mathematics::geometry::d3::object)   
a | b | c | e | h | i | l | m | n | o | p | q | r | s | t
diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1_angle-members.html b/html/classostk_1_1mathematics_1_1geometry_1_1_angle-members.html index 8af53c19..1273b2b9 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1_angle-members.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1_angle-members.html @@ -106,6 +106,8 @@ inRadians(const Real &aLowerBound, const Real &anUpperBound) constostk::mathematics::geometry::Angle inRevolutions() constostk::mathematics::geometry::Angle isDefined() constostk::mathematics::geometry::Angle + isNear(const Angle &anAngle, const Angle &aTolerance) constostk::mathematics::geometry::Angle + isNegative() constostk::mathematics::geometry::Angle isZero() constostk::mathematics::geometry::Angle operator!=(const Angle &anAngle) constostk::mathematics::geometry::Angle operator*(const Real &aReal) constostk::mathematics::geometry::Angle diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1_angle.html b/html/classostk_1_1mathematics_1_1geometry_1_1_angle.html index f11dc007..33914e3e 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1_angle.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1_angle.html @@ -143,6 +143,12 @@   bool isZero () const   +bool isNegative () const + Check if angle is negative. More...
+  +bool isNear (const Angle &anAngle, const Angle &aTolerance) const + Check if angles are near within an angular tolerance. More...
Angle::Unit getUnit () const   Real in (const Angle::Unit &aUnit) const @@ -712,6 +718,69 @@

+ + + +

◆ isNear()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool ostk::mathematics::geometry::Angle::isNear (const AngleanAngle,
const AngleaTolerance 
) const
+
+ +

Check if angles are near within an angular tolerance.

+
Parameters
+ + + +
[in]anAngleAn angle
[in]aToleranceA tolerance
+
+
+
Returns
True if angles are near
+ +
+
+ +

◆ isNegative()

+ +
+
+ + + + + + + +
bool ostk::mathematics::geometry::Angle::isNegative () const
+
+ +

Check if angle is negative.

+
Returns
True if angle is negative
+
@@ -1272,8 +1341,12 @@

static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
Angle(const Real &aValue, const Angle::Unit &aUnit)
Constructor.
Definition: Angle.cpp:15
+
static Angle Zero()
Definition: Angle.cpp:439
+
bool isNear(const Angle &anAngle, const Angle &aTolerance) const
Check if angles are near within an angular tolerance.
Definition: Angle.cpp:273
+
bool isNegative() const
Check if angle is negative.
Definition: Angle.cpp:263
+
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
Cone(const Point &anApex, const Vector3d &anAxis, const Angle &anAngle)
Constructor.
Definition: Cone.cpp:29
diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html index 8e89c427..370451d2 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html @@ -1321,8 +1321,8 @@

Cuboid(const Point &aCenter, const std::array< Vector3d, 3 > &aAxisArray, const std::array< Real, 3 > &anExtent)
Constructor.
Definition: Cuboid.cpp:54
-
static Cuboid Cube(const Point &aCenter, const Real &anExtent)
Constructs a a cube.
Definition: Cuboid.cpp:500
-
static Cuboid Undefined()
Constructs an undefined cuboid.
Definition: Cuboid.cpp:491
+
static Cuboid Cube(const Point &aCenter, const Real &anExtent)
Constructs a a cube.
Definition: Cuboid.cpp:505
+
static Cuboid Undefined()
Constructs an undefined cuboid.
Definition: Cuboid.cpp:496
static Point Origin()
Constructs a point at origin.
Definition: Point.cpp:204
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
+
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Construct Quaternion using the vector-scalar format.
Definition: Quaternion.cpp:493
static Ellipsoid Undefined()
Constructs an undefined ellipsoid.
Definition: Ellipsoid.cpp:968
diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle-members.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle-members.html new file mode 100644 index 00000000..7ad9525f --- /dev/null +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle-members.html @@ -0,0 +1,123 @@ + + + + + + + +OpenSpaceToolkitMathematics: Documentation + + + + + + + + + + + + + + + +
+
+
+ + + + + + +
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle Member List
+
+
+ +

This is the complete list of members for ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + +
AxisSequence enum nameostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
EulerAngle(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
EulerAngle(const Vector3d &aVector, const Angle::Unit &anAngleUnit, const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
getAxisSequence() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
getPhi() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
getPsi() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
getTheta() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
isDefined() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
isNear(const EulerAngle &aEulerAngle, const Angle &anAngularTolerance) constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
isUnitary() constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
operator!=(const EulerAngle &aEulerAngle) constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
operator<<(std::ostream &anOutputStream, const EulerAngle &aEulerAngle)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglefriend
operator==(const EulerAngle &aEulerAngle) constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
Quaternion(const rotation::Quaternion &aQuaternion, const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
RotationMatrix(const rotation::RotationMatrix &aRotationMatrix, const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
RotationVector(const rotation::RotationVector &aRotationVector, const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
StringFromAxisSequence(const EulerAngle::AxisSequence &anAxisSequence)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
toString(const Angle::Unit &anAngleUnit=Angle::Unit::Degree) constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
toVector(const Angle::Unit &anAngleUnit) constostk::mathematics::geometry::d3::transformation::rotation::EulerAngle
Undefined()ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
Unit()ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
XYZ(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
ZXY(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
ZYX(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)ostk::mathematics::geometry::d3::transformation::rotation::EulerAnglestatic
+
+ + + + + diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html new file mode 100644 index 00000000..b31876e8 --- /dev/null +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html @@ -0,0 +1,1117 @@ + + + + + + + +OpenSpaceToolkitMathematics: Documentation + + + + + + + + + + + + + + + +
+
+
+ + + + + + +
+ + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle Class Reference
+
+
+ +

Euler Angle (intrinsic rotation) + More...

+ +

#include <EulerAngle.hpp>

+ + + + +

+Public Types

enum  AxisSequence { AxisSequence::Undefined, +AxisSequence::XYZ, +AxisSequence::ZXY, +AxisSequence::ZYX + }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 EulerAngle (const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)
 Construct Euler Angle from angles and axis sequence. More...
 
 EulerAngle (const Vector3d &aVector, const Angle::Unit &anAngleUnit, const EulerAngle::AxisSequence &anAxisSequence)
 Construct Euler Angle from vector of angles and axis sequence. More...
 
bool operator== (const EulerAngle &aEulerAngle) const
 Equal to operator. More...
 
bool operator!= (const EulerAngle &aEulerAngle) const
 Not equal to operator. More...
 
bool isDefined () const
 Check if Euler Angle is defined. More...
 
bool isUnitary () const
 Check if Euler Angle is unitary. More...
 
bool isNear (const EulerAngle &aEulerAngle, const Angle &anAngularTolerance) const
 Check if Euler Angle is equal to another Euler Angle within a given angular tolerance. More...
 
Angle getPhi () const
 Get first angle of rotation (phi) More...
 
Angle getTheta () const
 Get second angle of rotation (theta) More...
 
Angle getPsi () const
 Get third angle of rotation (psi) More...
 
AxisSequence getAxisSequence () const
 Get axis sequence. More...
 
Vector3d toVector (const Angle::Unit &anAngleUnit) const
 Return vector containing the three angles. More...
 
String toString (const Angle::Unit &anAngleUnit=Angle::Unit::Degree) const
 Return string form of Euler Angle [phi; theta; psi]. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Static Public Member Functions

static EulerAngle Undefined ()
 Construct undefined Euler Angle. More...
 
static EulerAngle Unit ()
 Construct unitary Euler Angle. More...
 
static EulerAngle XYZ (const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
 Construct Euler Angle from angles following XYZ sequence. More...
 
static EulerAngle ZXY (const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
 Construct Euler Angle from angles following ZXY sequence. More...
 
static EulerAngle ZYX (const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
 Construct Euler Angle from angles following ZYX sequence. More...
 
static EulerAngle Quaternion (const rotation::Quaternion &aQuaternion, const EulerAngle::AxisSequence &anAxisSequence)
 Construct Euler Angle from Rotation Matrix. More...
 
static EulerAngle RotationVector (const rotation::RotationVector &aRotationVector, const EulerAngle::AxisSequence &anAxisSequence)
 Construct Euler Angle from Quaternion. More...
 
static EulerAngle RotationMatrix (const rotation::RotationMatrix &aRotationMatrix, const EulerAngle::AxisSequence &anAxisSequence)
 Construct Euler Angle from Rotation Vector. More...
 
static String StringFromAxisSequence (const EulerAngle::AxisSequence &anAxisSequence)
 Construct a string representation of an axis sequence. More...
 
+ + + + +

+Friends

std::ostream & operator<< (std::ostream &anOutputStream, const EulerAngle &aEulerAngle)
 Output stream operator. More...
 
+

Detailed Description

+

Euler Angle (intrinsic rotation)

+
                        Implementation from "Fundamentals of Spacecraft Attitude Determination and Control",
+                        F. Landis Markley and John L. Crassidis, Springer
+

https://en.wikipedia.org/wiki/Euler_angles https://en.wikipedia.org/wiki/Euler_angles#Conventions_by_intrinsic_rotations

+

Member Enumeration Documentation

+ +

◆ AxisSequence

+ +
+
+ + + + + +
Enumerator
Undefined 

Undefined sequence.

+
XYZ 

X -> Y -> Z sequence.

+
ZXY 

Z -> X -> Y sequence.

+
ZYX 

Z -> Y -> X sequence.

+
+ +
+
+

Constructor & Destructor Documentation

+ +

◆ EulerAngle() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle (const AngleaFirstAngle,
const AngleaSecondAngle,
const AngleaThirdAngle,
const EulerAngle::AxisSequenceanAxisSequence 
)
+
+ +

Construct Euler Angle from angles and axis sequence.

+
Parameters
+ + + + + +
[in]aFirstAngleA first angle (phi)
[in]aSecondAngleA second angle (theta)
[in]aThirdAngleA third angle (psi)
[in]anAxisSequenceAn axis sequence
+
+
+ +
+
+ +

◆ EulerAngle() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle (const Vector3d & aVector,
const Angle::UnitanAngleUnit,
const EulerAngle::AxisSequenceanAxisSequence 
)
+
+ +

Construct Euler Angle from vector of angles and axis sequence.

+
Parameters
+ + + + +
[in]aVectorA vector of angles
[in]anAngleUnitAn angle unit
[in]anAxisSequenceAn axis sequence
+
+
+ +
+
+

Member Function Documentation

+ +

◆ getAxisSequence()

+ +
+
+ + + + + + + +
EulerAngle::AxisSequence ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::getAxisSequence () const
+
+ +

Get axis sequence.

+
Returns
Axis sequence (e.g, ZYX)
+ +
+
+ +

◆ getPhi()

+ +
+
+ + + + + + + +
Angle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::getPhi () const
+
+ +

Get first angle of rotation (phi)

+
Returns
First angle of rotation
+ +
+
+ +

◆ getPsi()

+ +
+
+ + + + + + + +
Angle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::getPsi () const
+
+ +

Get third angle of rotation (psi)

+
Returns
Third angle of rotation
+ +
+
+ +

◆ getTheta()

+ +
+
+ + + + + + + +
Angle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::getTheta () const
+
+ +

Get second angle of rotation (theta)

+
Returns
Second angle of rotation
+ +
+
+ +

◆ isDefined()

+ +
+
+ + + + + + + +
bool ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isDefined () const
+
+ +

Check if Euler Angle is defined.

+
Returns
True if Euler Angle is defined
+ +
+
+ +

◆ isNear()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isNear (const EulerAngleaEulerAngle,
const AngleanAngularTolerance 
) const
+
+ +

Check if Euler Angle is equal to another Euler Angle within a given angular tolerance.

+
Parameters
+ + + +
[in]aEulerAngleA Euler Angle
[in]anAngularToleranceAn angular tolerance
+
+
+
Returns
True if equal within given angular tolerance
+ +
+
+ +

◆ isUnitary()

+ +
+
+ + + + + + + +
bool ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isUnitary () const
+
+ +

Check if Euler Angle is unitary.

+
Returns
True if Euler Angle is unitary
+ +
+
+ +

◆ operator!=()

+ +
+
+ + + + + + + + +
bool ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator!= (const EulerAngleaEulerAngle) const
+
+ +

Not equal to operator.

+
Parameters
+ + +
[in]aEulerAngleA Euler Angle
+
+
+
Returns
True if Euler Angles are not equal
+ +
+
+ +

◆ operator==()

+ +
+
+ + + + + + + + +
bool ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator== (const EulerAngleaEulerAngle) const
+
+ +

Equal to operator.

+
Parameters
+ + +
[in]aEulerAngleA Euler Angle
+
+
+
Returns
True if Euler Angles are equal
+ +
+
+ +

◆ Quaternion()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Quaternion (const rotation::QuaternionaQuaternion,
const EulerAngle::AxisSequenceanAxisSequence 
)
+
+static
+
+ +

Construct Euler Angle from Rotation Matrix.

+
Parameters
+ + + +
[in]aRotationMatrixA Rotation Matrix
[in]anAxisSequenceAn axis sequence
+
+
+
Returns
Euler Angle
+ +
+
+ +

◆ RotationMatrix()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationMatrix (const rotation::RotationMatrixaRotationMatrix,
const EulerAngle::AxisSequenceanAxisSequence 
)
+
+static
+
+ +

Construct Euler Angle from Rotation Vector.

+
Parameters
+ + + +
[in]aRotationVectorA Rotation Vector
[in]anAxisSequenceAn axis sequence
+
+
+
Returns
Euler Angle
+ +
+
+ +

◆ RotationVector()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationVector (const rotation::RotationVectoraRotationVector,
const EulerAngle::AxisSequenceanAxisSequence 
)
+
+static
+
+ +

Construct Euler Angle from Quaternion.

+
Parameters
+ + + +
[in]aQuaternionA Quaternion
[in]anAxisSequenceAn axis sequence
+
+
+
Returns
Euler Angle
+ +
+
+ +

◆ StringFromAxisSequence()

+ +
+
+ + + + + +
+ + + + + + + + +
String ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::StringFromAxisSequence (const EulerAngle::AxisSequenceanAxisSequence)
+
+static
+
+ +

Construct a string representation of an axis sequence.

+
Parameters
+ + +
[in]anAxisSequenceAn axis sequence
+
+
+
Returns
String representation of axis sequence
+ +
+
+ +

◆ toString()

+ +
+
+ + + + + + + + +
String ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toString (const Angle::UnitanAngleUnit = Angle::Unit::Degree) const
+
+ +

Return string form of Euler Angle [phi; theta; psi].

+
Parameters
+ + +
[in](optional)anAngleUnit An angle unit
+
+
+
Returns
String from of Euler Angle
+ +
+
+ +

◆ toVector()

+ +
+
+ + + + + + + + +
Vector3d ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toVector (const Angle::UnitanAngleUnit) const
+
+ +

Return vector containing the three angles.

+
Parameters
+ + +
[in]anAngleUnitAn angle unit
+
+
+
Returns
Vector containing the three angles
+ +
+
+ +

◆ Undefined()

+ +
+
+ + + + + +
+ + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Undefined ()
+
+static
+
+ +

Construct undefined Euler Angle.

+
Returns
Undefined Euler Angle
+ +
+
+ +

◆ Unit()

+ +
+
+ + + + + +
+ + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Unit ()
+
+static
+
+ +

Construct unitary Euler Angle.

+
Returns
Unitary Euler Angle
+ +
+
+ +

◆ XYZ()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::XYZ (const AngleaFirstAngle,
const AngleaSecondAngle,
const AngleaThirdAngle 
)
+
+static
+
+ +

Construct Euler Angle from angles following XYZ sequence.

+
Parameters
+ + + + +
[in]aFirstAngleA first angle (phi)
[in]aSecondAngleA second angle (theta)
[in]aThirdAngleA third angle (psi)
+
+
+
Returns
Euler Angle
+ +
+
+ +

◆ ZXY()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZXY (const AngleaFirstAngle,
const AngleaSecondAngle,
const AngleaThirdAngle 
)
+
+static
+
+ +

Construct Euler Angle from angles following ZXY sequence.

+
Parameters
+ + + + +
[in]aFirstAngleA first angle (phi)
[in]aSecondAngleA second angle (theta)
[in]aThirdAngleA third angle (psi)
+
+
+
Returns
Euler Angle
+ +
+
+ +

◆ ZYX()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
EulerAngle ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZYX (const AngleaFirstAngle,
const AngleaSecondAngle,
const AngleaThirdAngle 
)
+
+static
+
+ +

Construct Euler Angle from angles following ZYX sequence.

+
Parameters
+ + + + +
[in]aFirstAngleA first angle (phi)
[in]aSecondAngleA second angle (theta)
[in]aThirdAngleA third angle (psi)
+
+
+
Returns
Euler Angle
+ +
+
+

Friends And Related Function Documentation

+ +

◆ operator<<

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
std::ostream& operator<< (std::ostream & anOutputStream,
const EulerAngleaEulerAngle 
)
+
+friend
+
+ +

Output stream operator.

+
std::cout << EulerAngle::Unit();
+
Parameters
+ + + +
[in]anOutputStreamAn output stream
[in]aEulerAngleA Euler Angle
+
+
+
Returns
Output stream reference
+ +
+
+
The documentation for this class was generated from the following files:
    +
  • include/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.hpp
  • +
  • src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.cpp
  • +
+
+
+
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
+
bool isUnitary() const
Check if Euler Angle is unitary.
Definition: EulerAngle.cpp:105
+
static EulerAngle XYZ(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following XYZ sequence.
Definition: EulerAngle.cpp:191
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static RotationMatrix Unit()
Construct unitary Rotation Matrix.
Definition: RotationMatrix.cpp:290
+
static EulerAngle Quaternion(const rotation::Quaternion &aQuaternion, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Rotation Matrix.
Definition: EulerAngle.cpp:206
+
String toString(const Angle::Unit &anAngleUnit=Angle::Unit::Degree) const
Return string form of Euler Angle [phi; theta; psi].
Definition: EulerAngle.cpp:165
+
static EulerAngle ZYX(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following ZYX sequence.
Definition: EulerAngle.cpp:201
+
Angle getPhi() const
Get first angle of rotation (phi)
Definition: EulerAngle.cpp:115
+
AxisSequence getAxisSequence() const
Get axis sequence.
Definition: EulerAngle.cpp:145
+
bool isDefined() const
Check if Euler Angle is defined.
Definition: EulerAngle.cpp:99
+
Angle getPsi() const
Get third angle of rotation (psi)
Definition: EulerAngle.cpp:135
+ + +
static EulerAngle RotationVector(const rotation::RotationVector &aRotationVector, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Quaternion.
Definition: EulerAngle.cpp:255
+
static EulerAngle ZXY(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)
Construct Euler Angle from angles following ZXY sequence.
Definition: EulerAngle.cpp:196
+
static String StringFromAxisSequence(const EulerAngle::AxisSequence &anAxisSequence)
Construct a string representation of an axis sequence.
Definition: EulerAngle.cpp:316
+
static EulerAngle Undefined()
Construct undefined Euler Angle.
Definition: EulerAngle.cpp:181
+
EulerAngle(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from angles and axis sequence.
Definition: EulerAngle.cpp:24
+
Angle getTheta() const
Get second angle of rotation (theta)
Definition: EulerAngle.cpp:125
+
static Quaternion Unit()
Construct unitary Quaternion.
Definition: Quaternion.cpp:488
+
Vector3d toVector(const Angle::Unit &anAngleUnit) const
Return vector containing the three angles.
Definition: EulerAngle.cpp:155
+
bool isNear(const EulerAngle &aEulerAngle, const Angle &anAngularTolerance) const
Check if Euler Angle is equal to another Euler Angle within a given angular tolerance.
Definition: EulerAngle.cpp:110
+
static EulerAngle RotationMatrix(const rotation::RotationMatrix &aRotationMatrix, const EulerAngle::AxisSequence &anAxisSequence)
Construct Euler Angle from Rotation Vector.
Definition: EulerAngle.cpp:262
+ + + + + diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.js b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.js new file mode 100644 index 00000000..c9abfecc --- /dev/null +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.js @@ -0,0 +1,23 @@ +var classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle = +[ + [ "AxisSequence", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168c", [ + [ "Undefined", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360", null ], + [ "XYZ", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be", null ], + [ "ZXY", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3", null ], + [ "ZYX", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc", null ] + ] ], + [ "EulerAngle", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a7d88d303ded4e39e598cdf566796cc9e", null ], + [ "EulerAngle", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#aef0ee3faab6cf338e6c3fef716160378", null ], + [ "getAxisSequence", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a959afa9de94bff84008813662da769e0", null ], + [ "getPhi", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6a2ec66eea87c4645cc7815c82d09d0e", null ], + [ "getPsi", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a21bb162e148332ca5c36fe4ec1d9de58", null ], + [ "getTheta", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a13a35f51cad01171184a1feb3910b68b", null ], + [ "isDefined", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5140298e4d18f9b63fe1791e2785938c", null ], + [ "isNear", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ab25e5b93b6cff6716c08d5b9de4ab2c5", null ], + [ "isUnitary", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a75a6bd4f088b43ba2f9e7a9a1a963e64", null ], + [ "operator!=", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5adfa3b7def412a62f25fcb4d154f160", null ], + [ "operator==", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a487434e408dd6301e624305f9708a1b2", null ], + [ "toString", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6ef0461c00dd105f6c38fe5a2ee22c94", null ], + [ "toVector", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a511d16a1d248592a98f6fd3345bd7547", null ], + [ "operator<<", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a88d18669eb768c7f71a92df68c886202", null ] +]; \ No newline at end of file diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion-members.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion-members.html index 23a627d8..6dc8c3bc 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion-members.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion-members.html @@ -92,23 +92,27 @@ crossMultiply(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion dotMultiply(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion dotProduct(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - exp() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - Format enum nameostk::mathematics::geometry::d3::transformation::rotation::Quaternion - getScalarPart() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - getVectorPart() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - inverse()ostk::mathematics::geometry::d3::transformation::rotation::Quaternion - isDefined() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - isUnitary() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - LERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic - log() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - NLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + EulerAngle(const rotation::EulerAngle &aEulerAngle)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + exp() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + Format enum nameostk::mathematics::geometry::d3::transformation::rotation::Quaternion + getScalarPart() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + getVectorPart() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + inverse()ostk::mathematics::geometry::d3::transformation::rotation::Quaternion + isDefined() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + isUnitary() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + LERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + log() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + NLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + norm() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion normalize()ostk::mathematics::geometry::d3::transformation::rotation::Quaternion operator!=(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - operator*(const Vector3d &aVector) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - operator*(const Real &aScalar) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - operator*(const Real &aScalar, const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionfriend - operator*=(const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternion + operator*(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + operator*(const Vector3d &aVector) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + operator*(const Real &aScalar) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + operator*(const Real &aScalar, const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionfriend + operator*=(const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternion + operator+(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion operator+=(const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternion operator/(const Quaternion &aQuaternion) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion operator/=(const Quaternion &aQuaternion)ostk::mathematics::geometry::d3::transformation::rotation::Quaternion @@ -127,15 +131,18 @@ s() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion ShortestRotation(const Vector3d &aFirstVector, const Vector3d &aSecondVector)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic SLERP(const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic - toString(const Quaternion::Format &aFormat) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - toVector(const Quaternion::Format &aFormat=Quaternion::Format::XYZS) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - Undefined()ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic - Unit()ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic - x() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic - y() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion - z() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toConjugate() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toInverse() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toNormalized() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toString(const Quaternion::Format &aFormat) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + toVector(const Quaternion::Format &aFormat=Quaternion::Format::XYZS) constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + Undefined()ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + Unit()ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + x() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)ostk::mathematics::geometry::d3::transformation::rotation::Quaternionstatic + y() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion + z() constostk::mathematics::geometry::d3::transformation::rotation::Quaternion diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html index 2e508e1c..3544e8b7 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html @@ -121,35 +121,41 @@ bool operator!= (const Quaternion &aQuaternion) const  Not equal to operator. More...
  +Quaternion operator+ (const Quaternion &aQuaternion) const + Addition operator. More...
+  +Quaternion operator* (const Quaternion &aQuaternion) const + Multiplication operator (Quaternion) More...
+  Vector3d operator* (const Vector3d &aVector) const - Addition operator (quaternion) More...
+ Multiplication operator (vector) More...
  Quaternion operator* (const Real &aScalar) const  Multiplication operator (scalar) More...
  Quaternion operator/ (const Quaternion &aQuaternion) const - Division operator (quaternion) More...
+ Division operator (Quaternion) More...
  Quaternion operator^ (const Real &aScalar) const - Power operator (quaternion) More...
+ Power operator (Quaternion) More...
  Quaternionoperator+= (const Quaternion &aQuaternion) - Addition assignment operator (quaternion) More...
+ Addition assignment operator (Quaternion) More...
  Quaternionoperator*= (const Quaternion &aQuaternion) - Multiplication assignment operator (quaternion) More...
+ Multiplication assignment operator (Quaternion) More...
  Quaternionoperator/= (const Quaternion &aQuaternion) - Division assignment operator (quaternion) More...
+ Division assignment operator (Quaternion) More...
  bool isDefined () const - Check if quaternion is defined. More...
+ Check if Quaternion is defined. More...
  bool isUnitary () const - Check if quaternion is unitary, i.e. its norm is equal to 1.0. More...
+ Check if Quaternion is unitary (i.e., its norm is equal to 1.0) More...
  bool isNear (const Quaternion &aQuaternion, const Angle &anAngularTolerance) const - Check if quaternion is near a given quaternion. More...
+ Check if Quaternion is near another Quaternion. More...
  Real x () const  Get first component of vector part. More...
@@ -168,73 +174,88 @@ Real getScalarPart () const  Get scalar part. More...
  +Quaternion toNormalized () const + Calculate normalized Quaternion. More...
+  +Quaternion toConjugate () const + Calculate conjugate of Quaternion. More...
+  +Quaternion toInverse () const + Calculate inverse of Quaternion. More...
Quaternion exp () const - Get normalized quaternion. More...
+ Calculate exponential of Quaternion. More...
  Quaternion log () const - Get logarithm. More...
+ Calculate logarithm of Quaternion. More...
  Quaternion pow (const Real &aValue) const - Get power. More...
+ Calculate power of Quaternion. More...
  +Real norm () const + Calculate norm of Quaternion. More...
Quaternion crossMultiply (const Quaternion &aQuaternion) const - Get quaternion norm. More...
+ Multiply Quaternion using cross multiplication. More...
  Quaternion dotMultiply (const Quaternion &aQuaternion) const - Multiply quaternion using dot multiplication. More...
+ Multiply Quaternion using dot multiplication. More...
  Real dotProduct (const Quaternion &aQuaternion) const - Calculate quaternion dot product. More...
+ Calculate Quaternion dot product. More...
  Vector3d rotateVector (const Vector3d &aVector) const - Rotate vector using quaternion. More...
+ Rotate vector using Quaternion. More...
  Vector4d toVector (const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const - Convert quaternion to its vector representation. More...
+ Convert Quaternion to its vector representation. More...
  String toString (const Quaternion::Format &aFormat) const - Convert quaternion to its string representation. More...
+ Convert Quaternion to its string representation. More...
  String toString (const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const   Quaternionnormalize () - Normalize quaternion. More...
+ Normalize Quaternion. More...
  Quaternionconjugate () - Conjugate quaternion. More...
+ Conjugate Quaternion. More...
  Quaternioninverse () - Inverse quaternion. More...
+ Inverse Quaternion. More...
  Quaternionrectify () - Rectify quaternion (enforce positive scalar part) More...
+ Rectify Quaternion (enforce positive scalar part) More...
  Angle angularDifferenceWith (const Quaternion &aQuaternion) const - Get angular difference with quaternion. More...
+ Compute angular difference with Quaternion. More...
  - + - + - + - + - + + + + - + - + @@ -338,14 +359,14 @@

Constructor.

-
Quaternion quaternion = { 0.0, 0.0, 0.0, 0.1, Quaternion::Format::XYZS } ;
+
Quaternion(0.0, 0.0, 0.0, 0.1, Quaternion::Format::XYZS) ;
Parameters

Static Public Member Functions

static Quaternion Undefined ()
 Constructs an undefined quaternion. More...
 Construct undefined Quaternion. More...
 
static Quaternion Unit ()
 Constructs a unit quaternion. More...
 Construct unitary Quaternion. More...
 
static Quaternion XYZS (const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
 Constructs a quaternion using the vector-scalar format. More...
 Construct Quaternion using the vector-scalar format. More...
 
static Quaternion RotationVector (const rotation::RotationVector &aRotationVector)
 Constructs a quaternion from a rotation vector. More...
 Construct Quaternion from rotation vector. More...
 
static Quaternion RotationMatrix (const rotation::RotationMatrix &aRotationMatrix)
 Constructs a rquaternion from a rotation matrix. More...
 Construct Quaternion from Rotation Matrix. More...
 
static Quaternion EulerAngle (const rotation::EulerAngle &aEulerAngle)
 Construct Quaternion from Euler Angle. More...
 
static Quaternion Parse (const String &aString, const Quaternion::Format &aFormat=Quaternion::Format::XYZS)
 Constructs a quaternion from a string. More...
 Construct Quaternion from string. More...
 
static Quaternion ShortestRotation (const Vector3d &aFirstVector, const Vector3d &aSecondVector)
 Constructs a quaternion describing the shortest rotation between two vectors. More...
 Construct Quaternion describing the shortest rotation between two vectors. More...
 
static Quaternion LERP (const Quaternion &aFirstQuaternion, const Quaternion &aSecondQuaternion, const Real &aRatio)
 Linear interpolator method. More...
- +
[in]aFirstComponentA first component
[in]aSecondComponentA second component
[in]aThirdComponentA third component
[in]aFourthComponentA fourth component
[in]aFormatA quaternion format
[in]aFormatA Quaternion format
@@ -379,11 +400,11 @@

Constructor.

-
Quaternion quaternion = { Vector4d(0.0, 0.0, 0.0, 0.1), Quaternion::Format::XYZS } ;
+
Quaternion({0.0, 0.0, 0.0, 0.1}, Quaternion::Format::XYZS) ;
Parameters
- +
[in]aVectorA 4D vector
[in]aFormatA quaternion format
[in]aFormatA Quaternion format
@@ -417,7 +438,7 @@

Constructor.

-
Quaternion quaternion = { Vector3d(0.0, 0.0, 0.0), 1.0 } ;
+
Quaternion({0.0, 0.0, 0.0}, 1.0);
Parameters
@@ -445,12 +466,11 @@

-

Get angular difference with quaternion.

-
-
0.0, 1.0)) ; // 0.0 [rad]
+

Compute angular difference with Quaternion.

+
Parameters

[in]aVectorPartA vector part
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -473,11 +493,9 @@

-

Conjugate quaternion.

-
Quaternion quaternion = Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118) ; // [0.0,
-
0.0, 0.70710678118, 0.70710678118] quaternion.conjugate() ; // [0.0, 0.0, -0.70710678118,
-
0.70710678118]
-
Returns
Reference to quaternion
+

Conjugate Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).conjugate();
+
Returns
Quaternion reference

@@ -497,23 +515,13 @@

-

Get quaternion norm.

-
Quaternion::XYZS(0.0, 0.0, -0.70710678118, 0.70710678118).norm() ; // 1.0
-
@encode
-
-
@return Quaternion norm
-
-
Real norm() const;
-
-
@brief Multiply quaternion using cross multiplication
-
-
@code
-
Quaternion q_1 = ...
-
Quaternion q_2 = ...
-
Quaternion q_3 = q_1.crossMultiply(q_2)
+

Multiply Quaternion using cross multiplication.

+
Quaternion q_1 = ...
+
Quaternion q_2 = ...
+
Quaternion q_3 = q_1.crossMultiply(q_2)
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -537,13 +545,13 @@

-

Multiply quaternion using dot multiplication.

+

Multiply Quaternion using dot multiplication.

Quaternion q_1 = ...
Quaternion q_2 = ...
Quaternion q_3 = q_1.dotMultiply(q_2)
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -567,13 +575,49 @@

-

Calculate quaternion dot product.

+

Calculate Quaternion dot product.

Quaternion q_1 = ...
Quaternion q_2 = ...
Real q_3 = q_1.dotProduct(q_2)
Parameters
- + +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
+
+
+
Returns
Quaternion
+ +

+ + +

◆ EulerAngle()

+ +
+
+ + + + + +
+ + + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::EulerAngle (const rotation::EulerAngleaEulerAngle)
+
+static
+
+ +

Construct Quaternion from Euler Angle.

+
Parameters
+ +
[in]EulerAngleA Euler Angle
@@ -596,42 +640,10 @@

-

Get normalized quaternion.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.000000000000001).toNormalized() ; // [0.0, 0.0, 0.0, 1.0]
-
@encode
-
-
@return Normalized quaternion
-
-
Quaternion toNormalized() const;
-
-
@brief Get conjugate quaternion
-
-
@code
-
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).toConjugate() ; // [0.0, 0.0,
-
-0.70710678118, 0.70710678118]
-
@encode
-
-
@return Conjugate quaternion
-
-
Quaternion toConjugate() const;
-
-
@brief Get inverse quaternion
-
-
@code
-
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).toInverse() ; // [0.0, 0.0,
-
-0.70710678118, 0.70710678118]
-
@encode
-
-
@return Inverse quaternion
-
-
Quaternion toInverse() const;
-
-
@brief Get exponential
-
-
@code
-
Quaternion q_1 = ...
-
Quaternion q_2 = q_1.exp() ;
-
Returns
Exponential
+

Calculate exponential of Quaternion.

+
Quaternion q_1 = ...
+
Quaternion q_2 = q_1.exp();
+
Returns
Quaternion

@@ -651,8 +663,8 @@

Get scalar part.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).getScalarPart() ; // 1.0
-
Returns
Scalar part
+
Returns
Real
@@ -672,8 +684,8 @@

Get vector part.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).getVectorPart() ; // [0.0, 0.0, 0.0]
-
Returns
Vector part
+
Returns
Vector
@@ -692,11 +704,9 @@

-

Inverse quaternion.

-
Quaternion quaternion = Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118) ; // [0.0,
-
0.0, 0.70710678118, 0.70710678118] quaternion.inverse() ; // [0.0, 0.0, -0.70710678118,
-
0.70710678118]
-
Returns
Reference to quaternion
+

Inverse Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).inverse();
+
Returns
Quaternion reference
@@ -715,9 +725,9 @@

-

Check if quaternion is defined.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0).isDefined() ; // True
-
Returns
True if quaternion is defined
+

Check if Quaternion is defined.

+
Returns
True if Quaternion is defined
@@ -747,17 +757,19 @@

-

Check if quaternion is near a given quaternion.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0).isNear(Quaternion::XYZS(0.0, 0.0, 0.0, 1.0 + 1e-19),
-
Angle::Radians(1e-6)) ; // True
+

Check if Quaternion is near another Quaternion.

+
+
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0 + 1e-19),
+ +
);
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
[in]anAngularToleranceAn angular tolerance
-
Returns
True if quaternions are near each other
+
Returns
True if Quaternions are near each other
@@ -776,9 +788,9 @@

-

Check if quaternion is unitary, i.e. its norm is equal to 1.0.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0).isUnitary() ; // True
-
Returns
True if quaternion is unitary
+

Check if Quaternion is unitary (i.e., its norm is equal to 1.0)

+
Returns
True if Quaternion is unitary
@@ -825,11 +837,11 @@

Quaternion q_1 = ...
Quaternion q_2 = ...
-
Quaternion q = Quaternion.LERP(q_1, q_2, 0.5)
+
Quaternion::LERP(q_1, q_2, 0.5);
Parameters
- - + +
[in]aFirstQuaternionA first quaternion
[in]aSecondQuaternionA second quaternion
[in]aFirstQuaternionA first Quaternion
[in]aSecondQuaternionA second Quaternion
[in]aRatioAn interpolator ratio
@@ -853,10 +865,10 @@

-

Get logarithm.

+

Calculate logarithm of Quaternion.

Quaternion q_1 = ...
-
Quaternion q_2 = q_1.log() ;
-
Returns
Logarithm
+
Quaternion q_2 = q_1.log();
+
Returns
Quaternion
@@ -903,17 +915,38 @@

Quaternion q_1 = ...
Quaternion q_2 = ...
-
Quaternion q = Quaternion.NLERP(q_1, q_2, 0.5)
+
Quaternion::NLERP(q_1, q_2, 0.5);
Parameters
- - + +
[in]aFirstQuaternionA first quaternion
[in]aSecondQuaternionA second quaternion
[in]aFirstQuaternionA first Quaternion
[in]aSecondQuaternionA second Quaternion
[in]aRatioAn interpolator ratio
Returns
Quaternion
+ + + +

◆ norm()

+ +
+
+ + + + + + + +
Real ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::norm () const
+
+ +

Calculate norm of Quaternion.

+
Quaternion::XYZS(0.0, 0.0, -0.70710678118, 0.70710678118).norm();
+
Returns
Quaternion norm
+
@@ -931,10 +964,9 @@

-

Normalize quaternion.

-
Quaternion quaternion = Quaternion::XYZS(0.0, 0.0, 0.0, 1.000000000000001) ; // [0.0, 0.0,
-
0.0, 1.000000000000001] quaternion.normalize() ; // [0.0, 0.0, 0.0, 1.0]
-
Returns
Reference to quaternion
+

Normalize Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.0, 1.000000000000001).normalize();
+
Returns
Quaternion reference
@@ -955,19 +987,50 @@

Not equal to operator.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) != Quaternion::XYZS(1.0, 0.0, 0.0, 0.0) ; // True
+
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
True if quaternions are not equal
+
Returns
True if Quaternions are not equal
+ +
+ + +

◆ operator*() [1/3]

+ +
+
+ + + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator* (const QuaternionaQuaternion) const
+
+ +

Multiplication operator (Quaternion)

+
Quaternion q_B_A = ... ;
+
Quaternion q_C_B = ... ;
+
Quaternion q_C_A = q_C_B * q_B_A ;
+
Note
This operator uses cross multiplication
+
Parameters
+ + +
[in]aQuaternionA Quaternion
+
+
+
Returns
Quaternion
-

◆ operator*() [1/2]

+

◆ operator*() [2/3]

@@ -983,7 +1046,7 @@

Multiplication operator (scalar)

-

Example:

Quaternion q_1 = ... ;
+
Quaternion q_1 = ... ;
Real scalar = ... ;
Quaternion q_2 = q_1 * scalar ;
Parameters
@@ -997,7 +1060,7 @@

-

◆ operator*() [2/2]

+

◆ operator*() [3/3]

@@ -1012,39 +1075,10 @@

-

Addition operator (quaternion)

-
Quaternion q_1 = ... ;
-
Quaternion q_2 = ... ;
-
Quaternion q_3 = q_1 + q_2 ;
-
@encode
-
-
@param [in] aQuaternion A quaternion
-
@return Quaternion
-
-
Quaternion operator+(const Quaternion& aQuaternion) const;
-
-
@brief Multiplication operator (quaternion)
-
-
@code
-
Quaternion q_B_A = ... ;
-
Quaternion q_C_B = ... ;
-
Quaternion q_C_A = q_C_B * q_B_A ;
-
@encode
-
-
@note This operator uses cross multiplication
-
-
@param [in] aQuaternion A quaternion
-
@return Quaternion
-
-
Quaternion operator*(const Quaternion& aQuaternion) const;
-
-
@brief Multiplication operator (vector)
-
-
Example:
-
@code
-
Quaternion q_B_A = ... ;
-
Vector3d v_A = ... ;
-
Vector3d v_B = q_B_A * v_A ;
+

Multiplication operator (vector)

+
Quaternion q_B_A = ... ;
+
Vector3d v_A = ... ;
+
Vector3d v_B = q_B_A * v_A ;
Note
This operator uses transformVector
Parameters
@@ -1072,15 +1106,45 @@

-

Multiplication assignment operator (quaternion)

+

Multiplication assignment operator (Quaternion)

Note
This operator uses cross multiplication
Parameters

- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
Reference to quaternion
+
Returns
Quaternion reference
+ +
+

+ +

◆ operator+()

+ +
+
+ + + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+ (const QuaternionaQuaternion) const
+
+ +

Addition operator.

+
Quaternion q_1 = ... ;
+
Quaternion q_2 = ... ;
+
Quaternion q_3 = q_1 + q_2 ;
+
Parameters
+ + +
[in]aQuaternionA Quaternion
+
+
+
Returns
Quaternion
@@ -1100,14 +1164,14 @@

-

Addition assignment operator (quaternion)

+

Addition assignment operator (Quaternion)

Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
Reference to quaternion
+
Returns
Quaternion reference

@@ -1127,14 +1191,14 @@

-

Division operator (quaternion)

+

Division operator (Quaternion)

Quaternion q_A_B = ... ;
Quaternion q_C_B = ... ;
Quaternion q_C_A = q_C_B / q_A_B ;
Note
This is equivalent to multiplying with the inverse
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -1158,15 +1222,15 @@

-

Division assignment operator (quaternion)

+

Division assignment operator (Quaternion)

Note
This is equivalent to multiplying with the inverse
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
Reference to quaternion
+
Returns
Quaternion reference

@@ -1187,14 +1251,14 @@

Equal to operator.

-
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) == Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) ; // True
+
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
True if quaternions are equal
+
Returns
True if Quaternions are equal
@@ -1214,7 +1278,7 @@

-

Power operator (quaternion)

+

Power operator (Quaternion)

Quaternion q_1 = ... ;
Real scalar = ... ;
Quaternion q_2 = q_1 ^ scalar ;
@@ -1262,12 +1326,12 @@

-

Constructs a quaternion from a string.

-
Quaternion quaternion = Quaternion::Parse("[0.0, 0.0, 0.0, 1.0]") ; // [0.0, 0.0, 0.0, 1.0]
+

Construct Quaternion from string.

+
Quaternion::Parse("[0.0, 0.0, 0.0, 1.0]");
Parameters
- +
[in]aStringA string
[in](optional)aFormat A quaternion format
[in](optional)aFormat A Quaternion format
@@ -1291,7 +1355,7 @@

-

Get power.

+

Calculate power of Quaternion.

Quaternion q_1 = ...
Real scalar = ...
Quaternion q_2 = q_1 ^ scalar ;
@@ -1301,7 +1365,7 @@

Returns
Power

+
Returns
Quaternion
@@ -1320,11 +1384,9 @@

-

Rectify quaternion (enforce positive scalar part)

-
Quaternion quaternion = Quaternion::XYZS(0.0, 0.0, -0.70710678118, -0.70710678118) ; //
-
[0.0, 0.0, -0.70710678118, -0.70710678118] quaternion.rectify() ; // [0.0, 0.0,
-
0.70710678118, 0.70710678118]
-
Returns
Reference to quaternion
+

Rectify Quaternion (enforce positive scalar part)

+
Quaternion::XYZS(0.0, 0.0, -0.70710678118, -0.70710678118).rectify();
+
Returns
Quaternion reference
@@ -1344,13 +1406,12 @@

-

Rotate vector using quaternion.

-
Quaternion q = ...
-
Vector3d v_1 = ...
-
Vector3d v_2 = q.rotateVector(v_1)
+

Rotate vector using Quaternion.

+
Vector3d v_1 = ...
+
Vector3d v_2 = q.rotateVector(v_1);
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -1382,11 +1443,11 @@

-

Constructs a rquaternion from a rotation matrix.

-
+

Construct Quaternion from Rotation Matrix.

+
Parameters
- +
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
@@ -1419,12 +1480,11 @@

-

Constructs a quaternion from a rotation vector.

-
-
Angle::Degrees(0.0))) ; // [0.0, 0.0, 0.0, 1.0]
+

Construct Quaternion from rotation vector.

+
Parameters
- +
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
@@ -1448,8 +1508,8 @@

@bref Get scalar part

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).s() ; // &1.0
-
Returns
Scalar part
+
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).s();
+
Returns
Real

@@ -1487,10 +1547,8 @@

-

Constructs a quaternion describing the shortest rotation between two vectors.

-
Vector3d v_1 = ...
-
Vector3d v_2 = ...
-
Quaternion q = Quaternion.ShortestRotation(v_1, v_2)
+

Construct Quaternion describing the shortest rotation between two vectors.

+
Quaternion::ShortestRotation({1.0, 0.0, 0.0}, {0.0, 1.0, 0.0});
Parameters
@@ -1545,17 +1603,80 @@

https://en.wikipedia.org/wiki/Slerp

Quaternion q_1 = ...
Quaternion q_2 = ...
-
Quaternion q = Quaternion.SLERP(q_1, q_2, 0.5)
+
Quaternion::SLERP(q_1, q_2, 0.5);
Parameters

[in]aFirstVectorA first vector
- - + +
[in]aFirstQuaternionA first quaternion
[in]aSecondQuaternionA second quaternion
[in]aFirstQuaternionA first Quaternion
[in]aSecondQuaternionA second Quaternion
[in]aRatioAn interpolator ratio
Returns
Quaternion
+
+

+ +

◆ toConjugate()

+ +
+
+ + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toConjugate () const
+
+ +

Calculate conjugate of Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).toConjugate();
+
Returns
Quaternion
+ +
+
+ +

◆ toInverse()

+ +
+
+ + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toInverse () const
+
+ +

Calculate inverse of Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.70710678118, 0.70710678118).toInverse();
+
Returns
Quaternion
+ +
+
+ +

◆ toNormalized()

+ +
+
+ + + + + + + +
Quaternion ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toNormalized () const
+
+ +

Calculate normalized Quaternion.

+
Quaternion::XYZS(0.0, 0.0, 0.0, 1.000000000000001).toNormalized();
+
Returns
Quaternion
+
@@ -1602,12 +1723,12 @@

-

Convert quaternion to its string representation.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toString() ; // "[0.0, 0.0, 0.0, 1.0]"
+

Convert Quaternion to its string representation.

+
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toString();
Parameters
- - + +
[in](optional)aPrecision A quaternion precision
[in](optional)aFormat A quaternion format
[in](optional)aPrecision A Quaternion precision
[in](optional)aFormat A Quaternion format
@@ -1631,11 +1752,11 @@

-

Convert quaternion to its vector representation.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toVector() ; // [0.0, 0.0, 0.0, 1.0]
+

Convert Quaternion to its vector representation.

+
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toVector();
Parameters
- +
[in](optional)aFormat A quaternion format
[in](optional)aFormat A Quaternion format
@@ -1666,9 +1787,9 @@

-

Constructs an undefined quaternion.

-
Quaternion quaternion = Quaternion::Undefined() ; // Undefined
-
Returns
Undefined quaternion
+

Construct undefined Quaternion.

+
Returns
Quaternion

@@ -1695,9 +1816,9 @@

-

Constructs a unit quaternion.

-
Quaternion quaternion = Quaternion::Unit() ; // [0.0, 0.0, 0.0, 1.0]
-
Returns
Unit quaternion
+

Construct unitary Quaternion.

+
Returns
Quaternion
@@ -1717,8 +1838,8 @@

Get first component of vector part.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).x() ; // &0.0
-
Returns
First component of vector part
+
Returns
Real
@@ -1768,8 +1889,8 @@

-

Constructs a quaternion using the vector-scalar format.

-
Quaternion quaternion = Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) ; // [0.0, 0.0, 0.0, 1.0]
+

Construct Quaternion using the vector-scalar format.

+
Quaternion::XYZS(0.0, 0.0, 0.0, 1.0);
Parameters
@@ -1799,8 +1920,8 @@

Get second component of vector part.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).y() ; // &0.0
-
Returns
Second component of vector part
+
Returns
Real
@@ -1820,8 +1941,8 @@

Get third component of vector part.

-
Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).z() ; // &0.0
-
Returns
Third component of vector part
+
Returns
Real
@@ -1861,13 +1982,13 @@

Multiplication operator (scalar)

-

Example:

Real scalar = ... ;
+
Real scalar = ... ;
Quaternion q_1 = ... ;
Quaternion q_2 = scalar * q_1 ;
Parameters

[in]aFirstComponentA first component
- +
[in]aScalarA scalar
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -1910,15 +2031,15 @@

Output stream operator.

-
std::cout << Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) ;
+
std::cout << Quaternion::XYZS(0.0, 0.0, 0.0, 1.0);
Parameters
- +
[in]anOutputStreamAn output stream
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
A reference to output stream
+
Returns
Output stream reference

@@ -1928,26 +2049,38 @@

static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:433
-
static RotationMatrix Unit()
Constructs a unit rotation matrix.
Definition: RotationMatrix.cpp:288
-
Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)
Constructor.
Definition: Quaternion.cpp:23
-
Angle angularDifferenceWith(const Quaternion &aQuaternion) const
Get angular difference with quaternion.
Definition: Quaternion.cpp:470
-
static Quaternion RotationVector(const rotation::RotationVector &aRotationVector)
Constructs a quaternion from a rotation vector.
Definition: Quaternion.cpp:499
-
static Quaternion Undefined()
Constructs an undefined quaternion.
Definition: Quaternion.cpp:482
-
bool isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) const
Check if quaternion is near a given quaternion.
Definition: Quaternion.cpp:178
-
bool isUnitary() const
Check if quaternion is unitary, i.e. its norm is equal to 1.0.
Definition: Quaternion.cpp:168
-
bool isDefined() const
Check if quaternion is defined.
Definition: Quaternion.cpp:163
-
static Angle Radians(const Real &aValue)
Definition: Angle.cpp:428
+
Real getScalarPart() const
Get scalar part.
Definition: Quaternion.cpp:240
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
Real x() const
Get first component of vector part.
Definition: Quaternion.cpp:190
+
Quaternion toConjugate() const
Calculate conjugate of Quaternion.
Definition: Quaternion.cpp:255
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static RotationMatrix Unit()
Construct unitary Rotation Matrix.
Definition: RotationMatrix.cpp:290
+
Real norm() const
Calculate norm of Quaternion.
Definition: Quaternion.cpp:302
+
Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)
Constructor.
Definition: Quaternion.cpp:24
+
Angle angularDifferenceWith(const Quaternion &aQuaternion) const
Compute angular difference with Quaternion.
Definition: Quaternion.cpp:471
+
static Quaternion RotationVector(const rotation::RotationVector &aRotationVector)
Construct Quaternion from rotation vector.
Definition: Quaternion.cpp:500
+
static Quaternion ShortestRotation(const Vector3d &aFirstVector, const Vector3d &aSecondVector)
Construct Quaternion describing the shortest rotation between two vectors.
Definition: Quaternion.cpp:655
+
static Quaternion Undefined()
Construct undefined Quaternion.
Definition: Quaternion.cpp:483
+
bool isNear(const Quaternion &aQuaternion, const Angle &anAngularTolerance) const
Check if Quaternion is near another Quaternion.
Definition: Quaternion.cpp:179
+
Quaternion toNormalized() const
Calculate normalized Quaternion.
Definition: Quaternion.cpp:250
+
bool isUnitary() const
Check if Quaternion is unitary (i.e., its norm is equal to 1.0)
Definition: Quaternion.cpp:169
+
bool isDefined() const
Check if Quaternion is defined.
Definition: Quaternion.cpp:164
+
Vector3d getVectorPart() const
Get vector part.
Definition: Quaternion.cpp:230
+
static Angle Radians(const Real &aValue)
Definition: Angle.cpp:459
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
-
Eigen::Vector4d Vector4d
Definition: Vector.hpp:39
-
Quaternion & inverse()
Inverse quaternion.
Definition: Quaternion.cpp:430
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
-
Vector3d operator*(const Vector3d &aVector) const
Addition operator (quaternion)
Definition: Quaternion.cpp:81
-
Quaternion & conjugate()
Conjugate quaternion.
Definition: Quaternion.cpp:416
-
static Quaternion RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Constructs a rquaternion from a rotation matrix.
Definition: Quaternion.cpp:511
-
static Quaternion Unit()
Constructs a unit quaternion.
Definition: Quaternion.cpp:487
-
static Quaternion Parse(const String &aString, const Quaternion::Format &aFormat=Quaternion::Format::XYZS)
Constructs a quaternion from a string.
Definition: Quaternion.cpp:572
+
Quaternion & inverse()
Inverse Quaternion.
Definition: Quaternion.cpp:431
+
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Construct Quaternion using the vector-scalar format.
Definition: Quaternion.cpp:493
+
Real y() const
Get second component of vector part.
Definition: Quaternion.cpp:200
+
Quaternion & rectify()
Rectify Quaternion (enforce positive scalar part)
Definition: Quaternion.cpp:453
+
Real z() const
Get third component of vector part.
Definition: Quaternion.cpp:210
+
Quaternion toInverse() const
Calculate inverse of Quaternion.
Definition: Quaternion.cpp:260
+
Quaternion & normalize()
Normalize Quaternion.
Definition: Quaternion.cpp:400
+
Quaternion & conjugate()
Conjugate Quaternion.
Definition: Quaternion.cpp:417
+
static Quaternion RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Construct Quaternion from Rotation Matrix.
Definition: Quaternion.cpp:512
+
static Quaternion Unit()
Construct unitary Quaternion.
Definition: Quaternion.cpp:488
+
static Quaternion EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Quaternion from Euler Angle.
Definition: Quaternion.cpp:576
+
static Quaternion Parse(const String &aString, const Quaternion::Format &aFormat=Quaternion::Format::XYZS)
Construct Quaternion from string.
Definition: Quaternion.cpp:636
diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html index 9a7f9f35..508449ea 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html @@ -122,10 +122,10 @@  Index function operator. More...
  bool isDefined () const - Check if rotation matrix is defined. More...
+ Check if Rotation Matrix is defined. More...
  const Matrix3d & accessMatrix () const - Access underlying rotation matrix. More...
+ Access underlying 3D Matrix. More...
  Vector3d getRowAt (const Index &aRowIndex) const  Get row at index. More...
@@ -134,44 +134,47 @@  Get column at index. More...
  Matrix3d getMatrix () const - Get underlying rotation matrix. More...
+ Get underlying 3D Matrix. More...
  RotationMatrix toTransposed () const - Get transposed rotation matrix. More...
+ Calculate transposed Rotation Matrix. More...
  RotationMatrixtranspose () - Transpose rotation matrix. More...
+ Transpose Rotation Matrix. More...
  - + - + - + - + - + - + - + - + - + + + +

Static Public Member Functions

static RotationMatrix Undefined ()
 Constructs an undefined rotation matrix. More...
 Construct an undefined Rotation Matrix. More...
 
static RotationMatrix Unit ()
 Constructs a unit rotation matrix. More...
 Construct unitary Rotation Matrix. More...
 
static RotationMatrix RX (const Angle &aRotationAngle)
 Constructs a rotation matrix representing a rotation around the X-axis. More...
 Construct Rotation Matrix representing a rotation around the X-axis. More...
 
static RotationMatrix RY (const Angle &aRotationAngle)
 Constructs a rotation matrix representing a rotation around the Y-axis. More...
 Construct Rotation Matrix representing a rotation around the Y-axis. More...
 
static RotationMatrix RZ (const Angle &aRotationAngle)
 Constructs a rotation matrix representing a rotation around the Z-axis. More...
 Construct Rotation Matrix representing a rotation around the Z-axis. More...
 
static RotationMatrix Rows (const Vector3d &aFirstRow, const Vector3d &aSecondRow, const Vector3d &aThirdRow)
 Constructs a rotation matrix from row vectors. More...
 Construct Rotation Matrix from row vectors. More...
 
static RotationMatrix Columns (const Vector3d &aFirstColumn, const Vector3d &aSecondColumn, const Vector3d &aThirdColumn)
 Constructs a rotation matrix from column vectors. More...
 Construct Rotation Matrix from column vectors. More...
 
static RotationMatrix Quaternion (const rotation::Quaternion &aQuaternion)
 Constructs a rotation matrix from a quaternion. More...
 Construct Rotation Matrix from Quaternion. More...
 
static RotationMatrix RotationVector (const rotation::RotationVector &aRotationVector)
 Constructs a rotation matrix from a rotation vector. More...
 Construct Rotation Matrix from Rotation Vector. More...
 
static RotationMatrix EulerAngle (const rotation::EulerAngle &aEulerAngle)
 Construct Rotation Matrix from Euler Angle. More...
 
@@ -311,8 +314,8 @@

-

Access underlying rotation matrix.

-
Returns
Reference to underlying rotation matrix
+

Access underlying 3D Matrix.

+
Returns
Matrix reference
@@ -356,9 +359,8 @@

-

Constructs a rotation matrix from column vectors.

-
RotationMatrix rotationMatrix = RotationMatrix::Columns(Vector3d(1.0, 0.0, 0.0),
-
Vector3d(1.0, 0.0, 0.0), Vector3d(1.0, 0.0, 0.0)) ;
+

Construct Rotation Matrix from column vectors.

+
RotationMatrix::Columns({1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0});
Parameters

Friends

@@ -369,6 +371,42 @@

Returns
Rotation matrix
+ + +
+

◆ EulerAngle()

+ +
+
+

[in]aFirstColumnA first column
+ + + + +
+ + + + + + + + +
RotationMatrix ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::EulerAngle (const rotation::EulerAngleaEulerAngle)
+
+static
+
+ +

Construct Rotation Matrix from Euler Angle.

+
Parameters
+ + +
[in]aEulerAngleA Euler Angle
+
+
+
Returns
Rotation matrix
+
@@ -394,7 +432,7 @@

Returns
Column at index
+
Returns
Vector
@@ -413,8 +451,8 @@

-

Get underlying rotation matrix.

-
Returns
Underlying rotation matrix
+

Get underlying 3D Matrix.

+
Returns
Matrix
@@ -441,7 +479,7 @@

Returns
Row at index
+
Returns
Vector
@@ -460,9 +498,9 @@

-

Check if rotation matrix is defined.

-
RotationMatrix(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)).isDefined() ; // True
-
Returns
True if rotation matrix is defined
+

Check if Rotation Matrix is defined.

+
RotationMatrix(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)).isDefined();
+
Returns
True if Rotation Matrix is defined
@@ -483,10 +521,10 @@

Not equal to operator.

-
+
Parameters
- +
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
@@ -521,7 +559,7 @@

Index function operator.

-
+
rotationMatrix(0, 0) = 0.0 ;
Parameters
@@ -561,8 +599,8 @@

Index function operator.

-
-
double value_00 = rotationMatrix(0, 0) ; // 1.0
+
+
double value_00 = rotationMatrix(0, 0); // 1.0
Parameters

@@ -596,7 +634,7 @@

RotationMatrix rotationMatrix_A_C = rotationMatrix_A_B * rotationMatrix_B_C ;
Parameters

[in]aRowIndexA row index
- +
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
@@ -651,10 +689,10 @@

Equal to operator.

-
+
Parameters
- +
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
@@ -686,12 +724,11 @@

-

Constructs a rotation matrix from a quaternion.

-
-
0.0, 1.0)) ;
+

Construct Rotation Matrix from Quaternion.

+
Parameters
- +
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
@@ -723,12 +760,11 @@

-

Constructs a rotation matrix from a rotation vector.

-
RotationMatrix rotationMatrix = RotationMatrix::RotationVector(Vector3d(0.0, 0.0, 1.0),
- +

Construct Rotation Matrix from Rotation Vector.

+
Parameters
- +
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
@@ -776,9 +812,8 @@

-

Constructs a rotation matrix from row vectors.

-
RotationMatrix rotationMatrix = RotationMatrix::Rows(Vector3d(1.0, 0.0, 0.0), Vector3d(1.0,
-
0.0, 0.0), Vector3d(1.0, 0.0, 0.0)) ;
+

Construct Rotation Matrix from row vectors.

+
RotationMatrix::Rows({1.0, 0.0, 0.0}, {1.0, 0.0, 0.0}, {1.0, 0.0, 0.0});
Parameters
@@ -815,8 +850,8 @@

-

Constructs a rotation matrix representing a rotation around the X-axis.

-
+

Construct Rotation Matrix representing a rotation around the X-axis.

+
Parameters

[in]aFirstRowA first row
@@ -851,8 +886,8 @@

-

Constructs a rotation matrix representing a rotation around the Y-axis.

-
+

Construct Rotation Matrix representing a rotation around the Y-axis.

+
Parameters

[in]aRotationAngleA rotation angle
@@ -887,8 +922,8 @@

-

Constructs a rotation matrix representing a rotation around the Z-axis.

-
+

Construct Rotation Matrix representing a rotation around the Z-axis.

+
Parameters

[in]aRotationAngleA rotation angle
@@ -914,9 +949,9 @@

-

Get transposed rotation matrix.

-
RotationMatrix(...).toTransposed() ;
-
Returns
Transposed rotation matrix
+

Calculate transposed Rotation Matrix.

+
RotationMatrix(...).toTransposed();
+
Returns
Rotation Matrix
@@ -935,9 +970,10 @@

-

Transpose rotation matrix.

-
RotationMatrix(...).transpose() ;
-
+

Transpose Rotation Matrix.

+
RotationMatrix(...).transpose();
+
Returns
Rotation Matrix reference
+ @@ -963,9 +999,9 @@

-

Constructs an undefined rotation matrix.

-
RotationMatrix rotationMatrix = RotationMatrix::Undefined() ; // Undefined
-
Returns
Undefined rotation matrix
+

Construct an undefined Rotation Matrix.

+
Returns
Rotation Matrix
@@ -992,9 +1028,9 @@

-

Constructs a unit rotation matrix.

-
-
Returns
Unit rotation matrix
+

Construct unitary Rotation Matrix.

+
Returns
Rotation Matrix
@@ -1034,15 +1070,15 @@

Output stream operator.

-
+
std::cout << RotationMatrix(...);
Parameters

[in]aRotationAngleA rotation angle
- +
[in]anOutputStreamAn output stream
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
-
Returns
A reference to output stream
+
Returns
Output stream reference

@@ -1052,19 +1088,22 @@

static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:433

-
static RotationMatrix Unit()
Constructs a unit rotation matrix.
Definition: RotationMatrix.cpp:288
-
static RotationMatrix Undefined()
Constructs an undefined rotation matrix.
Definition: RotationMatrix.cpp:283
-
static RotationMatrix Rows(const Vector3d &aFirstRow, const Vector3d &aSecondRow, const Vector3d &aThirdRow)
Constructs a rotation matrix from row vectors.
Definition: RotationMatrix.cpp:344
-
static RotationMatrix RY(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the Y-axis.
Definition: RotationMatrix.cpp:310
-
static RotationMatrix RZ(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the Z-axis.
Definition: RotationMatrix.cpp:327
-
static RotationMatrix RotationVector(const rotation::RotationVector &aRotationVector)
Constructs a rotation matrix from a rotation vector.
Definition: RotationMatrix.cpp:497
+
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static RotationMatrix Unit()
Construct unitary Rotation Matrix.
Definition: RotationMatrix.cpp:290
+
static RotationMatrix Undefined()
Construct an undefined Rotation Matrix.
Definition: RotationMatrix.cpp:285
+
static RotationMatrix Rows(const Vector3d &aFirstRow, const Vector3d &aSecondRow, const Vector3d &aThirdRow)
Construct Rotation Matrix from row vectors.
Definition: RotationMatrix.cpp:346
+
static RotationMatrix RY(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the Y-axis.
Definition: RotationMatrix.cpp:312
+
static RotationMatrix RZ(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the Z-axis.
Definition: RotationMatrix.cpp:329
+
static RotationMatrix RotationVector(const rotation::RotationVector &aRotationVector)
Construct Rotation Matrix from Rotation Vector.
Definition: RotationMatrix.cpp:499
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
-
RotationMatrix(const Matrix3d &aMatrix)
Constructor.
Definition: RotationMatrix.cpp:23
-
static RotationMatrix RX(const Angle &aRotationAngle)
Constructs a rotation matrix representing a rotation around the X-axis.
Definition: RotationMatrix.cpp:293
-
static RotationMatrix Columns(const Vector3d &aFirstColumn, const Vector3d &aSecondColumn, const Vector3d &aThirdColumn)
Constructs a rotation matrix from column vectors.
Definition: RotationMatrix.cpp:399
-
static RotationMatrix Quaternion(const rotation::Quaternion &aQuaternion)
Constructs a rotation matrix from a quaternion.
Definition: RotationMatrix.cpp:456
+
RotationMatrix(const Matrix3d &aMatrix)
Constructor.
Definition: RotationMatrix.cpp:24
+
static RotationMatrix RX(const Angle &aRotationAngle)
Construct Rotation Matrix representing a rotation around the X-axis.
Definition: RotationMatrix.cpp:295
+
static RotationMatrix Columns(const Vector3d &aFirstColumn, const Vector3d &aSecondColumn, const Vector3d &aThirdColumn)
Construct Rotation Matrix from column vectors.
Definition: RotationMatrix.cpp:401
+
static Quaternion Unit()
Construct unitary Quaternion.
Definition: Quaternion.cpp:488
+
static RotationMatrix EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Rotation Matrix from Euler Angle.
Definition: RotationMatrix.cpp:533
+
static RotationMatrix Quaternion(const rotation::Quaternion &aQuaternion)
Construct Rotation Matrix from Quaternion.
Definition: RotationMatrix.cpp:458

diff --git a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html index f18246d3..b5dc8655 100644 --- a/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html +++ b/html/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html @@ -90,7 +90,7 @@

-

Rotation vector. +

Rotation Vector. More...

#include <RotationVector.hpp>

@@ -100,6 +100,9 @@  RotationVector (const Vector3d &anAxis, const Angle &anAngle)  Constructor. More...
  + RotationVector (const Vector3d &anAxis, const Angle::Unit &anAngleUnit) + Construct Rotation Vector from vector and angle unit The norm of the vector defines the rotation angle. More...
+  bool operator== (const RotationVector &aRotationVector) const  Equal to operator. More...
  @@ -107,7 +110,7 @@  Not equal to operator. More...
  bool isDefined () const - Check if rotation vector is defined. More...
+ Check if Rotation Vector is defined. More...
  Vector3d getAxis () const  Get rotation axis. More...
@@ -116,32 +119,38 @@  Get rotation angle. More...
  String toString (const Integer &aPrecision=Integer::Undefined()) const - Convert rotation vector to its string representation. More...
+ Convert Rotation Vector to string representation. More...
  +RotationVectorrectify () + Rectify Rotation Vector (enforce positive angle) More...
+  - + - + - + - + - + - + - + + + +

Static Public Member Functions

static RotationVector Undefined ()
 Constructs an undefined rotation vector. More...
 Construct an undefined Rotation Vector. More...
 
static RotationVector Unit ()
 Constructs a unit rotation vector. More...
 Construct a unitary Rotation Vector. More...
 
static RotationVector X (const Angle &anAngle)
 Constructs a rotation vector around X-axis. More...
 Construct Rotation Vector around X-axis. More...
 
static RotationVector Y (const Angle &anAngle)
 Constructs a rotation vector around Y-axis. More...
 Construct Rotation Vector around Y-axis. More...
 
static RotationVector Z (const Angle &anAngle)
 Constructs a rotation vector around Z-axis. More...
 Construct Rotation Vector around Z-axis. More...
 
static RotationVector Quaternion (const rotation::Quaternion &aQuaternion)
 Constructs a rotation vector from a quaternion. More...
 Construct Rotation Vector from Quaternion. More...
 
static RotationVector RotationMatrix (const rotation::RotationMatrix &aRotationMatrix)
 Constructs a rotation vector from a rotation matrix. More...
 Construct Rotation Vector from Rotation Matrix. More...
 
static RotationVector EulerAngle (const rotation::EulerAngle &aEulerAngle)
 Construct Rotation Vector from Euler Angle. More...
 
@@ -150,11 +159,11 @@

Friends

 

Detailed Description

-

Rotation vector.

+

Rotation Vector.

–angle_representation#Rotation_vector

Constructor & Destructor Documentation

-

◆ RotationVector()

+

◆ RotationVector() [1/2]

@@ -180,7 +189,8 @@

Constructor.

-
Parameters
+
RotationVector({1.0, 0.0, 0.0}, Angle::Degrees(45.0));
+
Parameters
@@ -188,9 +198,83 @@

+

◆ RotationVector() [2/2]

+ +
+
+

[in]anAxisA rotation axis
[in]anAngleA rotation angle
+ + + + + + + + + + + + + + + + + +
ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector (const Vector3d & anAxis,
const Angle::UnitanAngleUnit 
)
+

+ +

Construct Rotation Vector from vector and angle unit The norm of the vector defines the rotation angle.

+
+
Parameters
+ + + +
[in]aVectorA vector
[in]anAngleUnitAn angle unit
+
+
+

Member Function Documentation

+ +

◆ EulerAngle()

+ +
+
+ + + + + +
+ + + + + + + + +
RotationVector ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::EulerAngle (const rotation::EulerAngleaEulerAngle)
+
+static
+
+ +

Construct Rotation Vector from Euler Angle.

+
Parameters
+ + +
[in]aEulerAngleA Euler Angle
+
+
+
Returns
Rotation Vector
+ +
+

◆ getAngle()

@@ -207,7 +291,8 @@

Get rotation angle.

-
Returns
Rotation angle
+
Returns
Rotation angle

@@ -227,7 +312,8 @@

Get rotation axis.

-
Returns
Rotation axis
+
Returns
Rotation axis

@@ -246,9 +332,9 @@

-

Check if rotation vector is defined.

-
RotationVector(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)).isDefined() ; // True
-
Returns
True if rotation vector is defined
+

Check if Rotation Vector is defined.

+
Returns
True if Rotation Vector is defined
@@ -269,15 +355,14 @@

Not equal to operator.

-
RotationVector(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)) !=
-
RotationVector(Vector3d(1.0, 0.0, 0.0), Angle::Degrees(90.0)) ; // True
+
Parameters
- +
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
-
Returns
True if rotation vectors are not equal
+
Returns
True if Rotation Vectors are not equal
@@ -298,15 +383,14 @@

Equal to operator.

-
RotationVector(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)) ==
-
RotationVector(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)) ; // True
+
Parameters
- +
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
-
Returns
True if rotation vectors are equal
+
Returns
True if Rotation Vectors are equal
@@ -334,16 +418,36 @@

-

Constructs a rotation vector from a quaternion.

-
-
0.0, 1.0)) ;
+

Construct Rotation Vector from Quaternion.

+
Parameters
[in]aQuaternionA quaternion
-
Returns
Rotation vector
+
Returns
Rotation Vector
+ +
+ + +

◆ rectify()

+ +
+
+ + + + + + + +
RotationVector & ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::rectify ()
+
+ +

Rectify Rotation Vector (enforce positive angle)

+
Returns
Rotation Vector reference
@@ -371,15 +475,15 @@

-

Constructs a rotation vector from a rotation matrix.

-
+

Construct Rotation Vector from Rotation Matrix.

+
Parameters
- +
[in]aRotationMatrixA rotation matrix
[in]aRotationMatrixA Rotation Matrix
-
Returns
Rotation vector
+
Returns
Rotation Vector
@@ -399,9 +503,8 @@

-

Convert rotation vector to its string representation.

-
RotationVector(Vector3d(0.0, 0.0, 1.0), Angle::Degrees(90.0)).toString() ; // "[0.0,
-
0.0, 1.0] : 90.0 [deg]"
+

Convert Rotation Vector to string representation.

+
Parameters
@@ -435,9 +538,9 @@

-

Constructs an undefined rotation vector.

-
RotationVector rotationVector = RotationVector::Undefined() ; // Undefined
-
Returns
Undefined rotation vector
+

Construct an undefined Rotation Vector.

+
Returns
Undefined Rotation Vector
@@ -464,9 +567,9 @@

-

Constructs a unit rotation vector.

-
-
Returns
Unit rotation vector
+

Construct a unitary Rotation Vector.

+
Returns
Unitary Rotation Vector
@@ -494,15 +597,15 @@

-

Constructs a rotation vector around X-axis.

-
+

Construct Rotation Vector around X-axis.

+
Parameters

[in](optional)aPrecision A precision
[in]anAngleA rotation angle
-
Returns
Rotation vector
+
Returns
Rotation Vector
@@ -530,15 +633,15 @@

-

Constructs a rotation vector around Y-axis.

-
+

Construct Rotation Vector around Y-axis.

+
Parameters
[in]anAngleA rotation angle
-
Returns
Rotation vector
+
Returns
Rotation Vector
@@ -566,15 +669,15 @@

-

Constructs a rotation vector around Z-axis.

-
+

Construct Rotation Vector around Z-axis.

+
Parameters
[in]anAngleA rotation angle
-
Returns
Rotation vector
+
Returns
Rotation Vector
@@ -614,15 +717,15 @@

Output stream operator.

-
+
std::cout << RotationVector::Unit();
Parameters
- +
[in]anOutputStreamAn output stream
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
-
Returns
A reference to output stream
+
Returns
Reference to output stream
@@ -632,16 +735,23 @@

static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:433
-
static RotationVector Unit()
Constructs a unit rotation vector.
Definition: RotationVector.cpp:110
-
static RotationVector Undefined()
Constructs an undefined rotation vector.
Definition: RotationVector.cpp:105
-
static RotationVector Quaternion(const rotation::Quaternion &aQuaternion)
Constructs a rotation vector from a quaternion.
Definition: RotationVector.cpp:145
-
static RotationMatrix Unit()
Constructs a unit rotation matrix.
Definition: RotationMatrix.cpp:288
-
static RotationVector X(const Angle &anAngle)
Constructs a rotation vector around X-axis.
Definition: RotationVector.cpp:115
-
RotationVector(const Vector3d &anAxis, const Angle &anAngle)
Constructor.
Definition: RotationVector.cpp:23
-
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
-
static RotationVector RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Constructs a rotation vector from a rotation matrix.
Definition: RotationVector.cpp:168
+
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:464
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
Vector3d getAxis() const
Get rotation axis.
Definition: RotationVector.cpp:84
+
static RotationVector EulerAngle(const rotation::EulerAngle &aEulerAngle)
Construct Rotation Vector from Euler Angle.
Definition: RotationVector.cpp:225
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static RotationVector Undefined()
Construct an undefined Rotation Vector.
Definition: RotationVector.cpp:138
+
static RotationVector Quaternion(const rotation::Quaternion &aQuaternion)
Construct Rotation Vector from Quaternion.
Definition: RotationVector.cpp:178
+
static RotationMatrix Unit()
Construct unitary Rotation Matrix.
Definition: RotationMatrix.cpp:290
+
bool isDefined() const
Check if Rotation Vector is defined.
Definition: RotationVector.cpp:79
+
static RotationVector X(const Angle &anAngle)
Construct Rotation Vector around X-axis.
Definition: RotationVector.cpp:148
+
RotationVector(const Vector3d &anAxis, const Angle &anAngle)
Constructor.
Definition: RotationVector.cpp:24
+ +
static RotationVector RotationMatrix(const rotation::RotationMatrix &aRotationMatrix)
Construct Rotation Vector from Rotation Matrix.
Definition: RotationVector.cpp:201
+
RotationVector & rectify()
Rectify Rotation Vector (enforce positive angle)
Definition: RotationVector.cpp:104
+
static Quaternion Unit()
Construct unitary Quaternion.
Definition: Quaternion.cpp:488
+
String toString(const Integer &aPrecision=Integer::Undefined()) const
Convert Rotation Vector to string representation.
Definition: RotationVector.cpp:126
+
Angle getAngle() const
Get rotation angle.
Definition: RotationVector.cpp:94
diff --git a/html/dir_1db2ca725bce6a597a50db1f9271e018.html b/html/dir_1db2ca725bce6a597a50db1f9271e018.html index f6f6cec7..add1db81 100644 --- a/html/dir_1db2ca725bce6a597a50db1f9271e018.html +++ b/html/dir_1db2ca725bce6a597a50db1f9271e018.html @@ -87,6 +87,8 @@ + + diff --git a/html/dir_1db2ca725bce6a597a50db1f9271e018.js b/html/dir_1db2ca725bce6a597a50db1f9271e018.js index e75a3bdb..795bd73c 100644 --- a/html/dir_1db2ca725bce6a597a50db1f9271e018.js +++ b/html/dir_1db2ca725bce6a597a50db1f9271e018.js @@ -1,5 +1,6 @@ var dir_1db2ca725bce6a597a50db1f9271e018 = [ + [ "EulerAngle.cpp", "_euler_angle_8cpp.html", "_euler_angle_8cpp" ], [ "Quaternion.cpp", "_quaternion_8cpp.html", "_quaternion_8cpp" ], [ "RotationMatrix.cpp", "_rotation_matrix_8cpp.html", "_rotation_matrix_8cpp" ], [ "RotationVector.cpp", "_rotation_vector_8cpp.html", "_rotation_vector_8cpp" ] diff --git a/html/dir_c48729c886b2b7edc80a06810b6badd5.js b/html/dir_c48729c886b2b7edc80a06810b6badd5.js index 2f790b31..e7fc6cee 100644 --- a/html/dir_c48729c886b2b7edc80a06810b6badd5.js +++ b/html/dir_c48729c886b2b7edc80a06810b6badd5.js @@ -1,6 +1,8 @@ var dir_c48729c886b2b7edc80a06810b6badd5 = [ - [ "EulerAngle.hpp", "_euler_angle_8hpp.html", null ], + [ "EulerAngle.hpp", "_euler_angle_8hpp.html", [ + [ "EulerAngle", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle" ] + ] ], [ "Quaternion.hpp", "_quaternion_8hpp.html", [ [ "Quaternion", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion" ] ] ], diff --git a/html/files.html b/html/files.html index 6485bb59..9a85ccb9 100644 --- a/html/files.html +++ b/html/files.html @@ -186,9 +186,10 @@ - - - + + + + diff --git a/html/functions.html b/html/functions.html index b6033603..cf97e4d4 100644 --- a/html/functions.html +++ b/html/functions.html @@ -171,6 +171,9 @@

- a -

diff --git a/html/functions_e.html b/html/functions_e.html index fe5467a1..88dc23c2 100644 --- a/html/functions_e.html +++ b/html/functions_e.html @@ -112,10 +112,16 @@

- e -

Files

file  EulerAngle.cpp
 
file  Quaternion.cpp
 
file  RotationMatrix.cpp
  Transformation
 Intersection.cpp
 Object.cpp
 Transformation.cpp
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 Costk::mathematics::geometry::AngleAngle
 Costk::mathematics::geometry::d2::object::PointSet::HasherPoint hasher
 Costk::mathematics::geometry::d3::object::PointSet::HasherPoint hasher
 Costk::mathematics::curvefitting::InterpolatorInterpolator (abstract class)
 Costk::mathematics::curvefitting::interpolator::BarycentricRationalBarycentricRational
 Costk::mathematics::curvefitting::interpolator::CubicSplineCubicSpline
 Costk::mathematics::curvefitting::interpolator::LinearLinear
 Costk::mathematics::geometry::d2::Intersection2D intersection
 Costk::mathematics::geometry::d3::Intersection3D intersection
 Costk::mathematics::object::IntervalBaseInterval base (used to avoid having a templated enum)
 Costk::mathematics::object::Interval< T >Set of numbers with the property that any number that lies between two numbers in the set is also included in the set
 Costk::mathematics::solver::NumericalSolverDefines a numerical ODE solver that use the Boost Odeint libraries. This class will be moved into OSTk-math in the future
 Costk::mathematics::geometry::d2::Object2D object
 Costk::mathematics::geometry::d2::object::CompositeComposite object
 Costk::mathematics::geometry::d2::object::LineLine
 Costk::mathematics::geometry::d2::object::LineStringLine string
 Costk::mathematics::geometry::d2::object::MultiLineStringMulti Line string
 Costk::mathematics::geometry::d2::object::MultiPolygonMulti-polygon
 Costk::mathematics::geometry::d2::object::PointPoint
 Costk::mathematics::geometry::d2::object::PointSetPoint set
 Costk::mathematics::geometry::d2::object::PolygonPolygon
 Costk::mathematics::geometry::d2::object::SegmentSegment
 Costk::mathematics::geometry::d3::Object3D object
 Costk::mathematics::geometry::d3::object::CompositeComposite object
 Costk::mathematics::geometry::d3::object::ConeCone
 Costk::mathematics::geometry::d3::object::CuboidCuboid
 Costk::mathematics::geometry::d3::object::EllipsoidEllipsoid
 Costk::mathematics::geometry::d3::object::LineLine
 Costk::mathematics::geometry::d3::object::LineStringLine string
 Costk::mathematics::geometry::d3::object::PlanePlane
 Costk::mathematics::geometry::d3::object::PointPoint
 Costk::mathematics::geometry::d3::object::PointSetPoint set
 Costk::mathematics::geometry::d3::object::PolygonPolygon
 Costk::mathematics::geometry::d3::object::PyramidPyramid
 Costk::mathematics::geometry::d3::object::RayRay
 Costk::mathematics::geometry::d3::object::SegmentSegment
 Costk::mathematics::geometry::d3::object::SphereSphere
 Costk::mathematics::geometry::d3::transformation::rotation::QuaternionQuaternion
 Costk::mathematics::geometry::d3::transformation::rotation::RotationMatrixRotation matrix
 Costk::mathematics::geometry::d3::transformation::rotation::RotationVectorRotation vector
 Costk::mathematics::geometry::d3::Transformation
 Costk::mathematics::geometry::d2::Transformation
 Costk::mathematics::geometry::d3::transformation::rotation::EulerAngleEuler Angle (intrinsic rotation)
 Costk::mathematics::geometry::d2::object::PointSet::HasherPoint hasher
 Costk::mathematics::geometry::d3::object::PointSet::HasherPoint hasher
 Costk::mathematics::curvefitting::InterpolatorInterpolator (abstract class)
 Costk::mathematics::curvefitting::interpolator::BarycentricRationalBarycentricRational
 Costk::mathematics::curvefitting::interpolator::CubicSplineCubicSpline
 Costk::mathematics::curvefitting::interpolator::LinearLinear
 Costk::mathematics::geometry::d2::Intersection2D intersection
 Costk::mathematics::geometry::d3::Intersection3D intersection
 Costk::mathematics::object::IntervalBaseInterval base (used to avoid having a templated enum)
 Costk::mathematics::object::Interval< T >Set of numbers with the property that any number that lies between two numbers in the set is also included in the set
 Costk::mathematics::solver::NumericalSolverDefines a numerical ODE solver that use the Boost Odeint libraries. This class will be moved into OSTk-math in the future
 Costk::mathematics::geometry::d2::Object2D object
 Costk::mathematics::geometry::d2::object::CompositeComposite object
 Costk::mathematics::geometry::d2::object::LineLine
 Costk::mathematics::geometry::d2::object::LineStringLine string
 Costk::mathematics::geometry::d2::object::MultiLineStringMulti Line string
 Costk::mathematics::geometry::d2::object::MultiPolygonMulti-polygon
 Costk::mathematics::geometry::d2::object::PointPoint
 Costk::mathematics::geometry::d2::object::PointSetPoint set
 Costk::mathematics::geometry::d2::object::PolygonPolygon
 Costk::mathematics::geometry::d2::object::SegmentSegment
 Costk::mathematics::geometry::d3::Object3D object
 Costk::mathematics::geometry::d3::object::CompositeComposite object
 Costk::mathematics::geometry::d3::object::ConeCone
 Costk::mathematics::geometry::d3::object::CuboidCuboid
 Costk::mathematics::geometry::d3::object::EllipsoidEllipsoid
 Costk::mathematics::geometry::d3::object::LineLine
 Costk::mathematics::geometry::d3::object::LineStringLine string
 Costk::mathematics::geometry::d3::object::PlanePlane
 Costk::mathematics::geometry::d3::object::PointPoint
 Costk::mathematics::geometry::d3::object::PointSetPoint set
 Costk::mathematics::geometry::d3::object::PolygonPolygon
 Costk::mathematics::geometry::d3::object::PyramidPyramid
 Costk::mathematics::geometry::d3::object::RayRay
 Costk::mathematics::geometry::d3::object::SegmentSegment
 Costk::mathematics::geometry::d3::object::SphereSphere
 Costk::mathematics::geometry::d3::transformation::rotation::QuaternionQuaternion
 Costk::mathematics::geometry::d3::transformation::rotation::RotationMatrixRotation matrix
 Costk::mathematics::geometry::d3::transformation::rotation::RotationVectorRotation Vector
 Costk::mathematics::geometry::d3::Transformation
 Costk::mathematics::geometry::d2::Transformation
diff --git a/html/hierarchy.js b/html/hierarchy.js index 00dbd156..3b678f87 100644 --- a/html/hierarchy.js +++ b/html/hierarchy.js @@ -1,6 +1,7 @@ var hierarchy = [ [ "ostk::mathematics::geometry::Angle", "classostk_1_1mathematics_1_1geometry_1_1_angle.html", null ], + [ "ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle", "classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html", null ], [ "ostk::mathematics::geometry::d2::object::PointSet::Hasher", "structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html", null ], [ "ostk::mathematics::geometry::d3::object::PointSet::Hasher", "structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html", null ], [ "ostk::mathematics::curvefitting::Interpolator", "classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html", [ diff --git a/html/index.html b/html/index.html index 1e531d6a..7ea004f8 100644 --- a/html/index.html +++ b/html/index.html @@ -358,7 +358,7 @@

Definition: Intersection.hpp:25
- + + + +

◆ operator<<() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
std::ostream& ostk::mathematics::geometry::d3::transformation::rotation::operator<< (std::ostream & anOutputStream,
const EulerAngleaEulerAngle 
)
+
+
std::cout << EulerAngle::Unit();
+
Parameters
+ + + +
[in]anOutputStreamAn output stream
[in]aEulerAngleA Euler Angle
+
+
+
Returns
Output stream reference
+
-

◆ operator<<() [1/3]

+

◆ operator<<() [2/4]

@@ -176,20 +218,20 @@

-
std::cout << Quaternion::XYZS(0.0, 0.0, 0.0, 1.0) ;
+
std::cout << Quaternion::XYZS(0.0, 0.0, 0.0, 1.0);
Parameters
- +
[in]anOutputStreamAn output stream
[in]aQuaternionA quaternion
[in]aQuaternionA Quaternion
-
Returns
A reference to output stream
+
Returns
Output stream reference

-

◆ operator<<() [2/3]

+

◆ operator<<() [3/4]

-

◆ operator<<() [3/3]

+

◆ operator<<() [4/4]

@@ -250,23 +292,23 @@

-
+
std::cout << RotationVector::Unit();
Parameters
- +
[in]anOutputStreamAn output stream
[in]aRotationVectorA rotation vector
[in]aRotationVectorA Rotation Vector
-
Returns
A reference to output stream
+
Returns
Reference to output stream

-
static Angle Degrees(const Real &aValue)
Definition: Angle.cpp:433
-
Eigen::Vector3d Vector3d
Definition: Vector.hpp:38
-
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Constructs a quaternion using the vector-scalar format.
Definition: Quaternion.cpp:492
+
static EulerAngle Unit()
Construct unitary Euler Angle.
Definition: EulerAngle.cpp:186
+
static RotationVector Unit()
Construct a unitary Rotation Vector.
Definition: RotationVector.cpp:143
+
static Quaternion XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)
Construct Quaternion using the vector-scalar format.
Definition: Quaternion.cpp:493
diff --git a/html/navtreedata.js b/html/navtreedata.js index 73fa3fb3..5c2e123c 100644 --- a/html/navtreedata.js +++ b/html/navtreedata.js @@ -94,10 +94,10 @@ var NAVTREE = var NAVTREEINDEX = [ "2_d_2_intersection_8cpp.html", -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9", -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36", -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899", -"classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868" +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1", +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9", +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c", +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/html/navtreeindex0.js b/html/navtreeindex0.js index 2773291a..4a266cd0 100644 --- a/html/navtreeindex0.js +++ b/html/navtreeindex0.js @@ -100,6 +100,8 @@ var NAVTREEINDEX0 = "_ellipsoid_8hpp.html":[5,0,1,0,0,1,1,0,3], "_ellipsoid_8hpp.html#a5c684aeaeb24d197904b5a34839d2dd9":[5,0,1,0,0,1,1,0,3,1], "_ellipsoid_8hpp_source.html":[5,0,1,0,0,1,1,0,3], +"_euler_angle_8cpp.html":[5,0,2,0,0,1,1,1,0,0], +"_euler_angle_8cpp.html#a4039583c5e12d44db90af36b8420cffd":[5,0,2,0,0,1,1,1,0,0,0], "_euler_angle_8hpp.html":[5,0,1,0,0,1,1,1,0,0], "_euler_angle_8hpp_source.html":[5,0,1,0,0,1,1,1,0,0], "_geometry_22_d_2_object_8hpp.html":[5,0,1,0,0,1,0,2], @@ -142,21 +144,21 @@ var NAVTREEINDEX0 = "_pyramid_8hpp.html#a3eb9931e85ba4c9718113211e549e91d":[5,0,1,0,0,1,1,0,10,1], "_pyramid_8hpp.html#af424617f7c785f4835e2feba5a5640f2":[5,0,1,0,0,1,1,0,10,2], "_pyramid_8hpp_source.html":[5,0,1,0,0,1,1,0,10], -"_quaternion_8cpp.html":[5,0,2,0,0,1,1,1,0,0], -"_quaternion_8cpp.html#a6028c92c3bd330713db8cab7bc5122e1":[5,0,2,0,0,1,1,1,0,0,0], -"_quaternion_8cpp.html#ae26404779f77ca73c95975806e5402d1":[5,0,2,0,0,1,1,1,0,0,1], +"_quaternion_8cpp.html":[5,0,2,0,0,1,1,1,0,1], +"_quaternion_8cpp.html#a6028c92c3bd330713db8cab7bc5122e1":[5,0,2,0,0,1,1,1,0,1,0], +"_quaternion_8cpp.html#ae26404779f77ca73c95975806e5402d1":[5,0,2,0,0,1,1,1,0,1,1], "_quaternion_8hpp.html":[5,0,1,0,0,1,1,1,0,1], "_quaternion_8hpp_source.html":[5,0,1,0,0,1,1,1,0,1], "_ray_8cpp.html":[5,0,2,0,0,1,1,0,11], "_ray_8hpp.html":[5,0,1,0,0,1,1,0,11], "_ray_8hpp.html#af424617f7c785f4835e2feba5a5640f2":[5,0,1,0,0,1,1,0,11,1], "_ray_8hpp_source.html":[5,0,1,0,0,1,1,0,11], -"_rotation_matrix_8cpp.html":[5,0,2,0,0,1,1,1,0,1], -"_rotation_matrix_8cpp.html#afa8bc95840d3ed51eb2c9726bbd52f23":[5,0,2,0,0,1,1,1,0,1,0], +"_rotation_matrix_8cpp.html":[5,0,2,0,0,1,1,1,0,2], +"_rotation_matrix_8cpp.html#afa8bc95840d3ed51eb2c9726bbd52f23":[5,0,2,0,0,1,1,1,0,2,0], "_rotation_matrix_8hpp.html":[5,0,1,0,0,1,1,1,0,2], "_rotation_matrix_8hpp_source.html":[5,0,1,0,0,1,1,1,0,2], -"_rotation_vector_8cpp.html":[5,0,2,0,0,1,1,1,0,2], -"_rotation_vector_8cpp.html#a89b141f8b9cd2a93dbd9b584bab23d5b":[5,0,2,0,0,1,1,1,0,2,0], +"_rotation_vector_8cpp.html":[5,0,2,0,0,1,1,1,0,3], +"_rotation_vector_8cpp.html#a89b141f8b9cd2a93dbd9b584bab23d5b":[5,0,2,0,0,1,1,1,0,3,0], "_rotation_vector_8hpp.html":[5,0,1,0,0,1,1,1,0,3], "_rotation_vector_8hpp_source.html":[5,0,1,0,0,1,1,1,0,3], "_sphere_8cpp.html":[5,0,2,0,0,1,1,0,13], @@ -216,22 +218,24 @@ var NAVTREEINDEX0 = "classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a741b61d24af15b3332721b0751ec3a7a":[4,0,0,0,0,0,2,2], "classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#ac1332768995f471149cd3852b3ba2782":[4,0,0,0,0,0,2,3], "classostk_1_1mathematics_1_1geometry_1_1_angle.html":[4,0,0,0,1,2], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6":[4,0,0,0,1,2,27], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7":[4,0,0,0,1,2,16], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6":[4,0,0,0,1,2,29], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7":[4,0,0,0,1,2,18], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0514385b3b70596b16568a4f6a8b89f7":[4,0,0,0,1,2,1], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed":[4,0,0,0,1,2,29], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369":[4,0,0,0,1,2,19], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342":[4,0,0,0,1,2,14], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1":[4,0,0,0,1,2,22], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed":[4,0,0,0,1,2,31], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369":[4,0,0,0,1,2,21], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342":[4,0,0,0,1,2,16], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1":[4,0,0,0,1,2,24], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a20aa823cd2cd954365f0daaba9e77c6d":[4,0,0,0,1,2,7], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a2a14798865b6afe512b1d21797092c84":[4,0,0,0,1,2,6], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a31b1cd5ca5d3ca1c5c866b0274933edb":[4,0,0,0,1,2,8], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d":[4,0,0,0,1,2,20], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54":[4,0,0,0,1,2,21], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d":[4,0,0,0,1,2,22], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54":[4,0,0,0,1,2,23], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4d56166e0b2512567cedf1e4f267d29e":[4,0,0,0,1,2,9], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792":[4,0,0,0,1,2,17], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792":[4,0,0,0,1,2,19], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a5a4a660668c35df6cc2ad47e02727b7e":[4,0,0,0,1,2,3], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad":[4,0,0,0,1,2,23], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad":[4,0,0,0,1,2,25], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a80267bbfcf53ac84f70e8c64c0ae4162":[4,0,0,0,1,2,15], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#a93759a5dc36449aaa68d749d270fa736":[4,0,0,0,1,2,14], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371":[4,0,0,0,1,2,0], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c":[4,0,0,0,1,2,0,1], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8":[4,0,0,0,1,2,0,2], @@ -239,15 +243,11 @@ var NAVTREEINDEX0 = "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a7839ceecae19481f2e21e0ce3e11d3aa":[4,0,0,0,1,2,0,4], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aad09b2d48b2811c68e5a2bf421f7f2f2":[4,0,0,0,1,2,0,5], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aec0fc0100c4fc1ce4eea230c3dc10360":[4,0,0,0,1,2,0,0], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833":[4,0,0,0,1,2,26], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833":[4,0,0,0,1,2,28], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#aaf5a6fca6315e78ec77c6b4bbc3dd5c9":[4,0,0,0,1,2,2], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b":[4,0,0,0,1,2,18], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b":[4,0,0,0,1,2,20], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#acfb4ab5bc33ca5bf005bcffae8c02073":[4,0,0,0,1,2,11], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52":[4,0,0,0,1,2,25], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52":[4,0,0,0,1,2,27], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad99d5ff3a95e93b3599248c72b631ff1":[4,0,0,0,1,2,13], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2":[4,0,0,0,1,2,4], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1":[4,0,0,0,1,2,24], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7":[4,0,0,0,1,2,10], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd":[4,0,0,0,1,2,15], -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b":[4,0,0,0,1,2,5] +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2":[4,0,0,0,1,2,4] }; diff --git a/html/navtreeindex1.js b/html/navtreeindex1.js index d66fad98..cab3911d 100644 --- a/html/navtreeindex1.js +++ b/html/navtreeindex1.js @@ -1,6 +1,10 @@ var NAVTREEINDEX1 = { -"classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9":[4,0,0,0,1,2,28], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1":[4,0,0,0,1,2,26], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7":[4,0,0,0,1,2,10], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd":[4,0,0,0,1,2,17], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b":[4,0,0,0,1,2,5], +"classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9":[4,0,0,0,1,2,30], "classostk_1_1mathematics_1_1geometry_1_1_angle.html#aff2915c9dfacf75a3c601688b3ab0d6b":[4,0,0,0,1,2,12], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html":[4,0,0,0,1,0,1], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0f8d688de5a4819053d1f69a50e5a78e":[4,0,0,0,1,0,1,3], @@ -245,9 +249,5 @@ var NAVTREEINDEX1 = "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0417919bc94c59ae23492d591514b6c9":[4,0,0,0,1,0,0,8,11], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0fa9db689dceda267581043aab6bc8b9":[4,0,0,0,1,0,0,8,5], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a104bbc842576324e46876838e92b18c9":[4,0,0,0,1,0,0,8,16], -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0":[4,0,0,0,1,0,0,8,17], -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9":[4,0,0,0,1,0,0,8,8], -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3":[4,0,0,0,1,0,0,8,4], -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341":[4,0,0,0,1,0,0,8,18], -"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54":[4,0,0,0,1,0,0,8,2] +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0":[4,0,0,0,1,0,0,8,17] }; diff --git a/html/navtreeindex2.js b/html/navtreeindex2.js index 02b074ae..67f4cadb 100644 --- a/html/navtreeindex2.js +++ b/html/navtreeindex2.js @@ -1,5 +1,9 @@ var NAVTREEINDEX2 = { +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9":[4,0,0,0,1,0,0,8,8], +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3":[4,0,0,0,1,0,0,8,4], +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341":[4,0,0,0,1,0,0,8,18], +"classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54":[4,0,0,0,1,0,0,8,2], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36":[4,0,0,0,1,0,0,8,6], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a678b14d476c41b11372b86e9db54b3a6":[4,0,0,0,1,0,0,8,1], "classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a694a856a4e694e0c570b3e0bbbee9f53":[4,0,0,0,1,0,0,8,3], @@ -245,9 +249,5 @@ var NAVTREEINDEX2 = "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html":[4,0,0,0,1,1,0,6], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a04c4eacdc8f5d1edd6a1ff0da1d6e0fa":[4,0,0,0,1,1,0,6,19], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a07a393740306e4f8363920a8d82823e7":[4,0,0,0,1,1,0,6,2], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47":[4,0,0,0,1,1,0,6,20], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c":[4,0,0,0,1,1,0,6,10], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c":[4,0,0,0,1,1,0,6,7], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0":[4,0,0,0,1,1,0,6,9], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2":[4,0,0,0,1,1,0,6,3] +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47":[4,0,0,0,1,1,0,6,20] }; diff --git a/html/navtreeindex3.js b/html/navtreeindex3.js index 13c9a5d9..52460356 100644 --- a/html/navtreeindex3.js +++ b/html/navtreeindex3.js @@ -1,5 +1,9 @@ var NAVTREEINDEX3 = { +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c":[4,0,0,0,1,1,0,6,10], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c":[4,0,0,0,1,1,0,6,7], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0":[4,0,0,0,1,1,0,6,9], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2":[4,0,0,0,1,1,0,6,3], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899":[4,0,0,0,1,1,0,6,13], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a524aa96a108be7503f1ff86394a08f2c":[4,0,0,0,1,1,0,6,4], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a52ef325acb9072394c691b2511f875e9":[4,0,0,0,1,1,0,6,22], @@ -163,91 +167,87 @@ var NAVTREEINDEX3 = "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aec7fa1a21969f2175948bd57ac8a46ff":[4,0,0,0,1,1,0,13,1], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#af155cd1d10cd5b010b134a29e6d67492":[4,0,0,0,1,1,0,13,8], "classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#afc06f6968104f1207b1f3da7ceaae4aa":[4,0,0,0,1,1,0,13,16], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html":[4,0,0,0,1,1,1,0,0], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a012834daa1dcccf7a85d69f84b265dfb":[4,0,0,0,1,1,1,0,0,4], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb":[4,0,0,0,1,1,1,0,0,12], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a":[4,0,0,0,1,1,1,0,0,35], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4":[4,0,0,0,1,1,1,0,0,25], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f":[4,0,0,0,1,1,1,0,0,9], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001":[4,0,0,0,1,1,1,0,0,13], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea":[4,0,0,0,1,1,1,0,0,37], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45":[4,0,0,0,1,1,1,0,0,32], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40":[4,0,0,0,1,1,1,0,0,29], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c":[4,0,0,0,1,1,1,0,0,11], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca":[4,0,0,0,1,1,1,0,0,6], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba":[4,0,0,0,1,1,1,0,0,23], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853":[4,0,0,0,1,1,1,0,0,1], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3":[4,0,0,0,1,1,1,0,0,21], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a":[4,0,0,0,1,1,1,0,0,7], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a":[4,0,0,0,1,1,1,0,0,5], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc":[4,0,0,0,1,1,1,0,0,0], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5":[4,0,0,0,1,1,1,0,0,0,0], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be":[4,0,0,0,1,1,1,0,0,0,1], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529":[4,0,0,0,1,1,1,0,0,17], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c":[4,0,0,0,1,1,1,0,0,26], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261":[4,0,0,0,1,1,1,0,0,3], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1":[4,0,0,0,1,1,1,0,0,27], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15":[4,0,0,0,1,1,1,0,0,18], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764":[4,0,0,0,1,1,1,0,0,30], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3":[4,0,0,0,1,1,1,0,0,24], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf":[4,0,0,0,1,1,1,0,0,36], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd":[4,0,0,0,1,1,1,0,0,28], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708":[4,0,0,0,1,1,1,0,0,38], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3":[4,0,0,0,1,1,1,0,0,31], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3":[4,0,0,0,1,1,1,0,0,33], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d":[4,0,0,0,1,1,1,0,0,22], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7":[4,0,0,0,1,1,1,0,0,16], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096":[4,0,0,0,1,1,1,0,0,2], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796":[4,0,0,0,1,1,1,0,0,8], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738":[4,0,0,0,1,1,1,0,0,34], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa":[4,0,0,0,1,1,1,0,0,15], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669":[4,0,0,0,1,1,1,0,0,10], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66":[4,0,0,0,1,1,1,0,0,20], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd":[4,0,0,0,1,1,1,0,0,14], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122":[4,0,0,0,1,1,1,0,0,19], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html":[4,0,0,0,1,1,1,0,1], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2":[4,0,0,0,1,1,1,0,1,7], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf":[4,0,0,0,1,1,1,0,1,3], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2":[4,0,0,0,1,1,1,0,1,4], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f":[4,0,0,0,1,1,1,0,1,10], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d":[4,0,0,0,1,1,1,0,1,11], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4e911a9772e1740533c371d9c89cefb8":[4,0,0,0,1,1,1,0,1,2], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea":[4,0,0,0,1,1,1,0,1,0], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be":[4,0,0,0,1,1,1,0,1,8], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1":[4,0,0,0,1,1,1,0,1,5], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba":[4,0,0,0,1,1,1,0,1,9], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9":[4,0,0,0,1,1,1,0,1,15], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237":[4,0,0,0,1,1,1,0,1,14], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded":[4,0,0,0,1,1,1,0,1,13], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4":[4,0,0,0,1,1,1,0,1,6], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4":[4,0,0,0,1,1,1,0,1,12], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e":[4,0,0,0,1,1,1,0,1,1], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html":[4,0,0,0,1,1,1,0,2], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958":[4,0,0,0,1,1,1,0,2,2], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234":[4,0,0,0,1,1,1,0,2,4], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d":[4,0,0,0,1,1,1,0,2,3], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f":[4,0,0,0,1,1,1,0,2,0], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70":[4,0,0,0,1,1,1,0,2,5], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44":[4,0,0,0,1,1,1,0,2,6], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe":[4,0,0,0,1,1,1,0,2,7], -"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5":[4,0,0,0,1,1,1,0,2,1], -"classostk_1_1mathematics_1_1object_1_1_interval.html":[4,0,0,0,2,0], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619":[4,0,0,0,2,0,15], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b":[4,0,0,0,2,0,11], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060":[4,0,0,0,2,0,17], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a":[4,0,0,0,2,0,14], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf":[4,0,0,0,2,0,20], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1":[4,0,0,0,2,0,7], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b":[4,0,0,0,2,0,21], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3":[4,0,0,0,2,0,19], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a575cb7312386085246bed0ee94aeda56":[4,0,0,0,2,0,2], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525":[4,0,0,0,2,0,0], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708":[4,0,0,0,2,0,13], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60":[4,0,0,0,2,0,8], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5":[4,0,0,0,2,0,3], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808":[4,0,0,0,2,0,12], -"classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc":[4,0,0,0,2,0,16], -"classostk_1_1mathematics_1_1object_1_1_interval.html#ac2e35a2096405efb9a7ab511a1c2e532":[4,0,0,0,2,0,1], -"classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e":[4,0,0,0,2,0,4], -"classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201":[4,0,0,0,2,0,18] +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html":[4,0,0,0,1,1,1,0,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a13a35f51cad01171184a1feb3910b68b":[4,0,0,0,1,1,1,0,0,6], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a21bb162e148332ca5c36fe4ec1d9de58":[4,0,0,0,1,1,1,0,0,5], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a487434e408dd6301e624305f9708a1b2":[4,0,0,0,1,1,1,0,0,11], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a511d16a1d248592a98f6fd3345bd7547":[4,0,0,0,1,1,1,0,0,13], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5140298e4d18f9b63fe1791e2785938c":[4,0,0,0,1,1,1,0,0,7], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5adfa3b7def412a62f25fcb4d154f160":[4,0,0,0,1,1,1,0,0,10], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6a2ec66eea87c4645cc7815c82d09d0e":[4,0,0,0,1,1,1,0,0,4], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6ef0461c00dd105f6c38fe5a2ee22c94":[4,0,0,0,1,1,1,0,0,12], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a75a6bd4f088b43ba2f9e7a9a1a963e64":[4,0,0,0,1,1,1,0,0,9], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a7d88d303ded4e39e598cdf566796cc9e":[4,0,0,0,1,1,1,0,0,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a88d18669eb768c7f71a92df68c886202":[4,0,0,0,1,1,1,0,0,14], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a959afa9de94bff84008813662da769e0":[4,0,0,0,1,1,1,0,0,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ab25e5b93b6cff6716c08d5b9de4ab2c5":[4,0,0,0,1,1,1,0,0,8], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168c":[4,0,0,0,1,1,1,0,0,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3":[4,0,0,0,1,1,1,0,0,0,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc":[4,0,0,0,1,1,1,0,0,0,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be":[4,0,0,0,1,1,1,0,0,0,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360":[4,0,0,0,1,1,1,0,0,0,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#aef0ee3faab6cf338e6c3fef716160378":[4,0,0,0,1,1,1,0,0,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html":[4,0,0,0,1,1,1,0,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a012834daa1dcccf7a85d69f84b265dfb":[4,0,0,0,1,1,1,0,1,4], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb":[4,0,0,0,1,1,1,0,1,12], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a":[4,0,0,0,1,1,1,0,1,41], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4":[4,0,0,0,1,1,1,0,1,28], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f":[4,0,0,0,1,1,1,0,1,9], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001":[4,0,0,0,1,1,1,0,1,13], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea":[4,0,0,0,1,1,1,0,1,43], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45":[4,0,0,0,1,1,1,0,1,38], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40":[4,0,0,0,1,1,1,0,1,32], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c":[4,0,0,0,1,1,1,0,1,11], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca":[4,0,0,0,1,1,1,0,1,6], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba":[4,0,0,0,1,1,1,0,1,26], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853":[4,0,0,0,1,1,1,0,1,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3":[4,0,0,0,1,1,1,0,1,23], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a":[4,0,0,0,1,1,1,0,1,7], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a57e55414171904bd5126707ec5b1cb1b":[4,0,0,0,1,1,1,0,1,35], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a":[4,0,0,0,1,1,1,0,1,5], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc":[4,0,0,0,1,1,1,0,1,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5":[4,0,0,0,1,1,1,0,1,0,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be":[4,0,0,0,1,1,1,0,1,0,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529":[4,0,0,0,1,1,1,0,1,18], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a76d45236d97aca97432d5e6604cf6acf":[4,0,0,0,1,1,1,0,1,36], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c":[4,0,0,0,1,1,1,0,1,29], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261":[4,0,0,0,1,1,1,0,1,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a87ad253260d586f019f07b6ae7202e19":[4,0,0,0,1,1,1,0,1,24], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1":[4,0,0,0,1,1,1,0,1,30], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a95aa653a242332b5d3590c81f8819bb8":[4,0,0,0,1,1,1,0,1,20], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15":[4,0,0,0,1,1,1,0,1,19], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764":[4,0,0,0,1,1,1,0,1,33], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3":[4,0,0,0,1,1,1,0,1,27], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf":[4,0,0,0,1,1,1,0,1,42], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd":[4,0,0,0,1,1,1,0,1,31], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708":[4,0,0,0,1,1,1,0,1,44], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3":[4,0,0,0,1,1,1,0,1,37], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abd6b6809b6be6bff26bf99a4c2afbcdb":[4,0,0,0,1,1,1,0,1,34], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3":[4,0,0,0,1,1,1,0,1,39], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d":[4,0,0,0,1,1,1,0,1,25], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7":[4,0,0,0,1,1,1,0,1,16], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096":[4,0,0,0,1,1,1,0,1,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adac286e89986a4dc8cd2791c96bcb979":[4,0,0,0,1,1,1,0,1,17], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796":[4,0,0,0,1,1,1,0,1,8], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738":[4,0,0,0,1,1,1,0,1,40], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa":[4,0,0,0,1,1,1,0,1,15], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669":[4,0,0,0,1,1,1,0,1,10], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66":[4,0,0,0,1,1,1,0,1,22], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd":[4,0,0,0,1,1,1,0,1,14], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122":[4,0,0,0,1,1,1,0,1,21], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html":[4,0,0,0,1,1,1,0,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2":[4,0,0,0,1,1,1,0,2,7], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf":[4,0,0,0,1,1,1,0,2,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2":[4,0,0,0,1,1,1,0,2,4], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f":[4,0,0,0,1,1,1,0,2,10], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d":[4,0,0,0,1,1,1,0,2,11], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4e911a9772e1740533c371d9c89cefb8":[4,0,0,0,1,1,1,0,2,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea":[4,0,0,0,1,1,1,0,2,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be":[4,0,0,0,1,1,1,0,2,8], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1":[4,0,0,0,1,1,1,0,2,5], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba":[4,0,0,0,1,1,1,0,2,9], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9":[4,0,0,0,1,1,1,0,2,15], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237":[4,0,0,0,1,1,1,0,2,14], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded":[4,0,0,0,1,1,1,0,2,13], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4":[4,0,0,0,1,1,1,0,2,6] }; diff --git a/html/navtreeindex4.js b/html/navtreeindex4.js index 70628399..d00b0820 100644 --- a/html/navtreeindex4.js +++ b/html/navtreeindex4.js @@ -1,5 +1,37 @@ var NAVTREEINDEX4 = { +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4":[4,0,0,0,1,1,1,0,2,12], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e":[4,0,0,0,1,1,1,0,2,1], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html":[4,0,0,0,1,1,1,0,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a02150f4e7ec88996f75eaae63b215cfb":[4,0,0,0,1,1,1,0,3,7], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958":[4,0,0,0,1,1,1,0,3,3], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234":[4,0,0,0,1,1,1,0,3,5], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d":[4,0,0,0,1,1,1,0,3,4], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f":[4,0,0,0,1,1,1,0,3,0], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70":[4,0,0,0,1,1,1,0,3,6], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44":[4,0,0,0,1,1,1,0,3,8], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe":[4,0,0,0,1,1,1,0,3,9], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5":[4,0,0,0,1,1,1,0,3,2], +"classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aca6953257290fbef4b31d1ae9ce91c8f":[4,0,0,0,1,1,1,0,3,1], +"classostk_1_1mathematics_1_1object_1_1_interval.html":[4,0,0,0,2,0], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619":[4,0,0,0,2,0,15], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b":[4,0,0,0,2,0,11], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060":[4,0,0,0,2,0,17], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a":[4,0,0,0,2,0,14], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf":[4,0,0,0,2,0,20], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1":[4,0,0,0,2,0,7], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b":[4,0,0,0,2,0,21], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3":[4,0,0,0,2,0,19], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a575cb7312386085246bed0ee94aeda56":[4,0,0,0,2,0,2], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525":[4,0,0,0,2,0,0], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708":[4,0,0,0,2,0,13], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60":[4,0,0,0,2,0,8], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5":[4,0,0,0,2,0,3], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808":[4,0,0,0,2,0,12], +"classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc":[4,0,0,0,2,0,16], +"classostk_1_1mathematics_1_1object_1_1_interval.html#ac2e35a2096405efb9a7ab511a1c2e532":[4,0,0,0,2,0,1], +"classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e":[4,0,0,0,2,0,4], +"classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201":[4,0,0,0,2,0,18], "classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868":[4,0,0,0,2,0,6], "classostk_1_1mathematics_1_1object_1_1_interval.html#ad84a50656e1779837cdf34e8cb8867a2":[4,0,0,0,2,0,5], "classostk_1_1mathematics_1_1object_1_1_interval.html#aed3a6e8e931beaa732211ccb44e2c43d":[4,0,0,0,2,0,9], @@ -78,16 +110,16 @@ var NAVTREEINDEX4 = "dir_fd3690f781644d3d8006908d200a3e52.html":[5,0,1,0,0,1,1], "dir_fdc2ce6839bd9a3b87630c53f2ae038b.html":[5,0,2,0], "files.html":[5,0], -"functions.html":[4,2,0], "functions.html":[4,2,0,0], +"functions.html":[4,2,0], "functions_b.html":[4,2,0,1], "functions_c.html":[4,2,0,2], "functions_d.html":[4,2,0,3], "functions_e.html":[4,2,0,4], "functions_enum.html":[4,2,4], "functions_f.html":[4,2,0,5], -"functions_func.html":[4,2,1], "functions_func.html":[4,2,1,0], +"functions_func.html":[4,2,1], "functions_func_b.html":[4,2,1,1], "functions_func_c.html":[4,2,1,2], "functions_func_d.html":[4,2,1,3], @@ -135,8 +167,8 @@ var NAVTREEINDEX4 = "globals_defs.html":[5,1,2], "globals_func.html":[5,1,1], "hierarchy.html":[4,1], -"index.html":[0], "index.html":[], +"index.html":[0], "index.html#autotoc_md1":[0,0], "index.html#autotoc_md10":[0,2], "index.html#autotoc_md11":[0,3], @@ -170,14 +202,14 @@ var NAVTREEINDEX4 = "namespaceostk.html":[3,0,0], "namespaceostk_1_1mathematics.html":[4,0,0,0], "namespaceostk_1_1mathematics.html":[3,0,0,0], -"namespaceostk_1_1mathematics_1_1curvefitting.html":[3,0,0,0,0], "namespaceostk_1_1mathematics_1_1curvefitting.html":[4,0,0,0,0], +"namespaceostk_1_1mathematics_1_1curvefitting.html":[3,0,0,0,0], "namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html":[3,0,0,0,0,0], "namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html":[4,0,0,0,0,0], -"namespaceostk_1_1mathematics_1_1geometry.html":[4,0,0,0,1], "namespaceostk_1_1mathematics_1_1geometry.html":[3,0,0,0,1], -"namespaceostk_1_1mathematics_1_1geometry_1_1d2.html":[3,0,0,0,1,0], +"namespaceostk_1_1mathematics_1_1geometry.html":[4,0,0,0,1], "namespaceostk_1_1mathematics_1_1geometry_1_1d2.html":[4,0,0,0,1,0], +"namespaceostk_1_1mathematics_1_1geometry_1_1d2.html":[3,0,0,0,1,0], "namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html":[3,0,0,0,1,0,0], "namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html":[4,0,0,0,1,0,0], "namespaceostk_1_1mathematics_1_1geometry_1_1d3.html":[4,0,0,0,1,1], @@ -190,8 +222,8 @@ var NAVTREEINDEX4 = "namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html":[4,0,0,0,1,1,1,0], "namespaceostk_1_1mathematics_1_1object.html":[4,0,0,0,2], "namespaceostk_1_1mathematics_1_1object.html":[3,0,0,0,2], -"namespaceostk_1_1mathematics_1_1solver.html":[3,0,0,0,3], "namespaceostk_1_1mathematics_1_1solver.html":[4,0,0,0,3], +"namespaceostk_1_1mathematics_1_1solver.html":[3,0,0,0,3], "namespaces.html":[3,0], "pages.html":[], "structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html":[4,0,0,0,1,0,0,6,0], diff --git a/html/search/all_0.js b/html/search/all_0.js index abe36429..864524dc 100644 --- a/html/search/all_0.js +++ b/html/search/all_0.js @@ -22,5 +22,6 @@ var searchData= ['arcsecond_19',['Arcsecond',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a7839ceecae19481f2e21e0ce3e11d3aa',1,'ostk::mathematics::geometry::Angle']]], ['arcseconds_20',['Arcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad8845fbfd652eb58936c0b01da672c07',1,'ostk::mathematics::geometry::Angle']]], ['as_21',['as',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab61bad3ddb1b3810311ffe4d517e7b79',1,'ostk::mathematics::geometry::d2::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a1736931ccff0a138dbbf02b87bd6b5a7',1,'ostk::mathematics::geometry::d2::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ac93f620075e3364e9cdaef6c6191c4f9',1,'ostk::mathematics::geometry::d3::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a77bcf425bb31b5265f028de762878699',1,'ostk::mathematics::geometry::d3::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#acc1ec9fde56128d7fde8b96fa57180c4',1,'ostk::mathematics::geometry::d3::Object::as()']]], - ['asvector_22',['asVector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a2e3cfa4a339fec6203c201ab9922f35b',1,'ostk::mathematics::geometry::d2::object::Point::asVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a1d9614ed94b6049d6ce56ae529e7ca2b',1,'ostk::mathematics::geometry::d3::object::Point::asVector()']]] + ['asvector_22',['asVector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a2e3cfa4a339fec6203c201ab9922f35b',1,'ostk::mathematics::geometry::d2::object::Point::asVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a1d9614ed94b6049d6ce56ae529e7ca2b',1,'ostk::mathematics::geometry::d3::object::Point::asVector()']]], + ['axissequence_23',['AxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168c',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]] ]; diff --git a/html/search/all_1.js b/html/search/all_1.js index 5cbce206..f7b39376 100644 --- a/html/search/all_1.js +++ b/html/search/all_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['barycentricrational_23',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a864926f51a4eb2c3566649d0fcf03fd3',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::BarycentricRational()'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a98cf9ba70112c998166a82b6f289bb9f',1,'ostk::mathematics::curvefitting::Interpolator::BarycentricRational()']]], - ['barycentricrational_2ecpp_24',['BarycentricRational.cpp',['../_barycentric_rational_8cpp.html',1,'']]], - ['barycentricrational_2ehpp_25',['BarycentricRational.hpp',['../_barycentric_rational_8hpp.html',1,'']]], - ['begin_26',['begin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a89beece656a90043d888c5cdd4504753',1,'ostk::mathematics::geometry::d2::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a51ad3a2adffa4a272897a22593da1428',1,'ostk::mathematics::geometry::d2::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afb12934caca48b8b55108c2087a3b3e3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a5572c34cc89ec6a975e25df33a6b70a5',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab0cdaa3e1f7ed827822cf1fa1798e3ca',1,'ostk::mathematics::geometry::d2::object::PointSet::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a69f7864cea32998901589429105a3965',1,'ostk::mathematics::geometry::d3::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#aa57ee802638910c77c4b2dd712614192',1,'ostk::mathematics::geometry::d3::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a2deda4dd9c626c22663b5a58f8a877d7',1,'ostk::mathematics::geometry::d3::object::PointSet::begin()']]], - ['between_27',['Between',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa09f2fa86b1ebb2f5b83f4e79f5b2c94',1,'ostk::mathematics::geometry::Angle::Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4eb394d49e185968a7ee16b6b40dc0c5',1,'ostk::mathematics::geometry::Angle::Between(const Vector3d &aFirstVector, const Vector3d &aSecondVector)']]] + ['barycentricrational_24',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a864926f51a4eb2c3566649d0fcf03fd3',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::BarycentricRational()'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a98cf9ba70112c998166a82b6f289bb9f',1,'ostk::mathematics::curvefitting::Interpolator::BarycentricRational()']]], + ['barycentricrational_2ecpp_25',['BarycentricRational.cpp',['../_barycentric_rational_8cpp.html',1,'']]], + ['barycentricrational_2ehpp_26',['BarycentricRational.hpp',['../_barycentric_rational_8hpp.html',1,'']]], + ['begin_27',['begin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a89beece656a90043d888c5cdd4504753',1,'ostk::mathematics::geometry::d2::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a51ad3a2adffa4a272897a22593da1428',1,'ostk::mathematics::geometry::d2::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afb12934caca48b8b55108c2087a3b3e3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a5572c34cc89ec6a975e25df33a6b70a5',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab0cdaa3e1f7ed827822cf1fa1798e3ca',1,'ostk::mathematics::geometry::d2::object::PointSet::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a69f7864cea32998901589429105a3965',1,'ostk::mathematics::geometry::d3::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#aa57ee802638910c77c4b2dd712614192',1,'ostk::mathematics::geometry::d3::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a2deda4dd9c626c22663b5a58f8a877d7',1,'ostk::mathematics::geometry::d3::object::PointSet::begin()']]], + ['between_28',['Between',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa09f2fa86b1ebb2f5b83f4e79f5b2c94',1,'ostk::mathematics::geometry::Angle::Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4eb394d49e185968a7ee16b6b40dc0c5',1,'ostk::mathematics::geometry::Angle::Between(const Vector3d &aFirstVector, const Vector3d &aSecondVector)']]] ]; diff --git a/html/search/all_10.js b/html/search/all_10.js index 0438b7e2..338e099d 100644 --- a/html/search/all_10.js +++ b/html/search/all_10.js @@ -1,33 +1,34 @@ var searchData= [ - ['s_315',['s',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['scaling_316',['Scaling',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9abc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d2::Transformation::Scaling()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacabc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d3::Transformation::Scaling()']]], - ['segment_317',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d2::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d3::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad326132c2af6ff427d658d6fdcc726be',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#aa04a6a68ea74f4702d1d98baa78b050d',1,'ostk::mathematics::geometry::d2::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ac5180c75994c3f3f1d824307a600874f',1,'ostk::mathematics::geometry::d2::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a79cfcb916d8b86acfc012a1e81452a5c',1,'ostk::mathematics::geometry::d3::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4a92c1b91c16ae49fe38a3bf347586c0',1,'ostk::mathematics::geometry::d3::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ab79700bcf0eb146f1fc37d3cffc44fb4',1,'ostk::mathematics::geometry::d3::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d3::Intersection::Segment()']]], - ['segment_2ecpp_318',['Segment.cpp',['../2_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)']]], - ['segment_2ehpp_319',['Segment.hpp',['../2_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)']]], - ['setlowerbound_320',['setLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060',1,'ostk::mathematics::object::Interval']]], - ['settype_321',['setType',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201',1,'ostk::mathematics::object::Interval']]], - ['setupperbound_322',['setUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3',1,'ostk::mathematics::object::Interval']]], - ['shear_323',['Shear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d2::Transformation::Shear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d3::Transformation::Shear()']]], - ['shortestrotation_324',['ShortestRotation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a428dd39d288a6b42d9566733e038fb96',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['slerp_325',['SLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a0f9b33ebd521725a1fd852e68cf3bfba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['solution_326',['Solution',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aef6d06e4478e44fbe3354dbe8f80b94d',1,'ostk::mathematics::solver::NumericalSolver']]], - ['sphere_327',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html',1,'ostk::mathematics::geometry::d3::object::Sphere'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a44cf858e4351d1890cc1116bb85f9850',1,'ostk::mathematics::geometry::d3::object::Sphere::Sphere()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdab7095f057db3fefa7325ad93a04e14fd',1,'ostk::mathematics::geometry::d3::Intersection::Sphere()']]], - ['sphere_2ecpp_328',['Sphere.cpp',['../_sphere_8cpp.html',1,'']]], - ['sphere_2ehpp_329',['Sphere.hpp',['../_sphere_8hpp.html',1,'']]], - ['spheregtevectorfrompoint_330',['SphereGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a2373bb69e26976644af9d80cc0921e3e',1,'ostk::mathematics::geometry::d3::object']]], - ['spheregtevectorfromvector3d_331',['SphereGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae919c4084c1540b6b56fc219efdcc30a',1,'ostk::mathematics::geometry::d3::object']]], - ['spherepointfromgtevector_332',['SpherePointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a31af6093bf793c50cfaa72b62da029e3',1,'ostk::mathematics::geometry::d3::object']]], - ['standard_333',['Standard',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aeb6d8ae6f20283755b339c0dc273988b',1,'ostk::mathematics::geometry::d2::Object']]], - ['statevector_334',['StateVector',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a321c69ab0db9e09939b690580685a4b9',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stepper_5ftype_5f4_335',['stepper_type_4',['../namespaceostk_1_1mathematics_1_1solver.html#a239397c5452cb7026b6b7bd5909c49ea',1,'ostk::mathematics::solver']]], - ['steppertype_336',['StepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97',1,'ostk::mathematics::solver::NumericalSolver']]], - ['steppertype_5f_337',['stepperType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad99c1d09276752b4cf3bb1291c54e138',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stringfromlogtype_338',['StringFromLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7cee34ba53141a87ef6b43c8109b3444',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stringfromsteppertype_339',['StringFromStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a2c4600d661dbfbc01f5cd4c3380440c7',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stringfromtype_340',['StringFromType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7b00ce84dad2ae6d6bc09ca964dd4e28',1,'ostk::mathematics::geometry::d2::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ab96e3a181ecfd0079fa589839fe963a5',1,'ostk::mathematics::geometry::d2::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad4acfac77266ddeaeabbc89150f480c2',1,'ostk::mathematics::geometry::d3::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#abc82b6b7508d4a3986bb445e6913e610',1,'ostk::mathematics::geometry::d3::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a906c45e8ea21c1d762015a491afa2254',1,'ostk::mathematics::object::Interval::StringFromType()']]], - ['stringfromunit_341',['StringFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa8a1a9c33c0f6bd09dabd9580436fa9c',1,'ostk::mathematics::geometry::Angle']]], - ['sxyz_342',['SXYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['symbolfromunit_343',['SymbolFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aef349823dc4fc1bd9aae2f3893c9a248',1,'ostk::mathematics::geometry::Angle']]], - ['systemofequationswrapper_344',['SystemOfEquationsWrapper',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af087a68c505e3da6f7ebfd0cfb1d2ef5',1,'ostk::mathematics::solver::NumericalSolver']]] + ['s_324',['s',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['scaling_325',['Scaling',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9abc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d2::Transformation::Scaling()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacabc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d3::Transformation::Scaling()']]], + ['segment_326',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d3::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d2::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad326132c2af6ff427d658d6fdcc726be',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#aa04a6a68ea74f4702d1d98baa78b050d',1,'ostk::mathematics::geometry::d2::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ac5180c75994c3f3f1d824307a600874f',1,'ostk::mathematics::geometry::d2::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a79cfcb916d8b86acfc012a1e81452a5c',1,'ostk::mathematics::geometry::d3::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4a92c1b91c16ae49fe38a3bf347586c0',1,'ostk::mathematics::geometry::d3::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ab79700bcf0eb146f1fc37d3cffc44fb4',1,'ostk::mathematics::geometry::d3::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d3::Intersection::Segment()']]], + ['segment_2ecpp_327',['Segment.cpp',['../2_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)']]], + ['segment_2ehpp_328',['Segment.hpp',['../2_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)']]], + ['setlowerbound_329',['setLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060',1,'ostk::mathematics::object::Interval']]], + ['settype_330',['setType',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201',1,'ostk::mathematics::object::Interval']]], + ['setupperbound_331',['setUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3',1,'ostk::mathematics::object::Interval']]], + ['shear_332',['Shear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d2::Transformation::Shear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d3::Transformation::Shear()']]], + ['shortestrotation_333',['ShortestRotation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a428dd39d288a6b42d9566733e038fb96',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['slerp_334',['SLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a0f9b33ebd521725a1fd852e68cf3bfba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['solution_335',['Solution',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aef6d06e4478e44fbe3354dbe8f80b94d',1,'ostk::mathematics::solver::NumericalSolver']]], + ['sphere_336',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html',1,'ostk::mathematics::geometry::d3::object::Sphere'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a44cf858e4351d1890cc1116bb85f9850',1,'ostk::mathematics::geometry::d3::object::Sphere::Sphere()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdab7095f057db3fefa7325ad93a04e14fd',1,'ostk::mathematics::geometry::d3::Intersection::Sphere()']]], + ['sphere_2ecpp_337',['Sphere.cpp',['../_sphere_8cpp.html',1,'']]], + ['sphere_2ehpp_338',['Sphere.hpp',['../_sphere_8hpp.html',1,'']]], + ['spheregtevectorfrompoint_339',['SphereGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a2373bb69e26976644af9d80cc0921e3e',1,'ostk::mathematics::geometry::d3::object']]], + ['spheregtevectorfromvector3d_340',['SphereGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae919c4084c1540b6b56fc219efdcc30a',1,'ostk::mathematics::geometry::d3::object']]], + ['spherepointfromgtevector_341',['SpherePointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a31af6093bf793c50cfaa72b62da029e3',1,'ostk::mathematics::geometry::d3::object']]], + ['standard_342',['Standard',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aeb6d8ae6f20283755b339c0dc273988b',1,'ostk::mathematics::geometry::d2::Object']]], + ['statevector_343',['StateVector',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a321c69ab0db9e09939b690580685a4b9',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stepper_5ftype_5f4_344',['stepper_type_4',['../namespaceostk_1_1mathematics_1_1solver.html#a239397c5452cb7026b6b7bd5909c49ea',1,'ostk::mathematics::solver']]], + ['steppertype_345',['StepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97',1,'ostk::mathematics::solver::NumericalSolver']]], + ['steppertype_5f_346',['stepperType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad99c1d09276752b4cf3bb1291c54e138',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stringfromaxissequence_347',['StringFromAxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#af8605f8fa6810bdf2043cdb8b4b2f2a2',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['stringfromlogtype_348',['StringFromLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7cee34ba53141a87ef6b43c8109b3444',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stringfromsteppertype_349',['StringFromStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a2c4600d661dbfbc01f5cd4c3380440c7',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stringfromtype_350',['StringFromType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7b00ce84dad2ae6d6bc09ca964dd4e28',1,'ostk::mathematics::geometry::d2::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ab96e3a181ecfd0079fa589839fe963a5',1,'ostk::mathematics::geometry::d2::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad4acfac77266ddeaeabbc89150f480c2',1,'ostk::mathematics::geometry::d3::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#abc82b6b7508d4a3986bb445e6913e610',1,'ostk::mathematics::geometry::d3::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a906c45e8ea21c1d762015a491afa2254',1,'ostk::mathematics::object::Interval::StringFromType()']]], + ['stringfromunit_351',['StringFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa8a1a9c33c0f6bd09dabd9580436fa9c',1,'ostk::mathematics::geometry::Angle']]], + ['sxyz_352',['SXYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['symbolfromunit_353',['SymbolFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aef349823dc4fc1bd9aae2f3893c9a248',1,'ostk::mathematics::geometry::Angle']]], + ['systemofequationswrapper_354',['SystemOfEquationsWrapper',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af087a68c505e3da6f7ebfd0cfb1d2ef5',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/all_11.js b/html/search/all_11.js index b08ec87d..c953029e 100644 --- a/html/search/all_11.js +++ b/html/search/all_11.js @@ -1,18 +1,21 @@ var searchData= [ - ['tutorial_345',['Tutorial',['../md_docs__tutorial.html',1,'']]], - ['timestep_5f_346',['timeStep_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a5f05521e24c29047c899ddffa410b614',1,'ostk::mathematics::solver::NumericalSolver']]], - ['toline_347',['toLine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0',1,'ostk::mathematics::geometry::d2::object::Segment::toLine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afb05593ca4e9cd6c3f7df6bac574d6c1',1,'ostk::mathematics::geometry::d3::object::Segment::toLine()']]], - ['tostring_348',['toString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5b9183cde21c414bc8a12e2e079e4ed1',1,'ostk::mathematics::geometry::d2::object::Composite::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3c03f6d92663a15da6e2dc6dbdbc46ab',1,'ostk::mathematics::geometry::d2::object::Line::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a896eb59a09118ed324b444616538c699',1,'ostk::mathematics::geometry::d2::object::LineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a08e4ad2714d08fc8b90e2f4fd643bcfd',1,'ostk::mathematics::geometry::d2::object::MultiLineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab51f3ac0454156100fd02a75fcf3f7f7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acf4c687922d62a5aba718135134da5c6',1,'ostk::mathematics::geometry::d2::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a6cc208100261019089ad86b71b700864',1,'ostk::mathematics::geometry::d2::object::PointSet::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#acae5758cc07f2787875897d4392a07a4',1,'ostk::mathematics::geometry::d2::object::Polygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341',1,'ostk::mathematics::geometry::d2::object::Segment::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aedf9c7ef5af5892d15cf08da795fa1af',1,'ostk::mathematics::geometry::d2::Object::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa84b03a8b7122c8e18038800882bd368',1,'ostk::mathematics::geometry::d3::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Quaternion::Format &aFormat) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6',1,'ostk::mathematics::geometry::Angle::toString()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf',1,'ostk::mathematics::object::Interval::toString()'],['../_eigen_8hpp.html#a12b926fa5c60e26e4a170e5b4e870dea',1,'toString(): Eigen.hpp']]], - ['totransposed_349',['toTransposed',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['tovector_350',['toVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['transformation_351',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html',1,'ostk::mathematics::geometry::d3::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html',1,'ostk::mathematics::geometry::d2::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a75793220f8bb3d271b771b7f060b636c',1,'ostk::mathematics::geometry::d2::Transformation::Transformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a208df471aa963dabb54cfed7a6cbaa09',1,'ostk::mathematics::geometry::d3::Transformation::Transformation()']]], - ['transformation_2ecpp_352',['Transformation.cpp',['../2_d_2_transformation_8cpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8cpp.html',1,'(Global Namespace)']]], - ['transformation_2ehpp_353',['Transformation.hpp',['../2_d_2_transformation_8hpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8hpp.html',1,'(Global Namespace)']]], - ['translation_354',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ac20f9204fa06c83f5c3d5e487f2909e9',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#af9058de81115d953ab8d9b8922abe692',1,'ostk::mathematics::geometry::d3::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]], - ['transpose_355',['transpose',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['tutorial_2emd_356',['Tutorial.md',['../_tutorial_8md.html',1,'']]], - ['twopi_357',['TwoPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac282022eaa53c2f999a181c241b358b0',1,'ostk::mathematics::geometry::Angle']]], - ['type_358',['Type',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557',1,'ostk::mathematics::curvefitting::Interpolator::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faae',1,'ostk::mathematics::geometry::d2::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9',1,'ostk::mathematics::geometry::d2::Transformation::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cd',1,'ostk::mathematics::geometry::d3::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdac',1,'ostk::mathematics::geometry::d3::Transformation::Type()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201',1,'ostk::mathematics::object::IntervalBase::Type()']]], - ['typeofmatrix_359',['TypeOfMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a50b50b58b43aa9534849d2c0398bd710',1,'ostk::mathematics::geometry::d2::Transformation::TypeOfMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a21a3ef00ead4aad2df9f7685729db7b3',1,'ostk::mathematics::geometry::d3::Transformation::TypeOfMatrix()']]] + ['tutorial_355',['Tutorial',['../md_docs__tutorial.html',1,'']]], + ['timestep_5f_356',['timeStep_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a5f05521e24c29047c899ddffa410b614',1,'ostk::mathematics::solver::NumericalSolver']]], + ['toconjugate_357',['toConjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abd6b6809b6be6bff26bf99a4c2afbcdb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['toinverse_358',['toInverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a57e55414171904bd5126707ec5b1cb1b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['toline_359',['toLine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0',1,'ostk::mathematics::geometry::d2::object::Segment::toLine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afb05593ca4e9cd6c3f7df6bac574d6c1',1,'ostk::mathematics::geometry::d3::object::Segment::toLine()']]], + ['tonormalized_360',['toNormalized',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a76d45236d97aca97432d5e6604cf6acf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['tostring_361',['toString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5b9183cde21c414bc8a12e2e079e4ed1',1,'ostk::mathematics::geometry::d2::object::Composite::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3c03f6d92663a15da6e2dc6dbdbc46ab',1,'ostk::mathematics::geometry::d2::object::Line::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a896eb59a09118ed324b444616538c699',1,'ostk::mathematics::geometry::d2::object::LineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a08e4ad2714d08fc8b90e2f4fd643bcfd',1,'ostk::mathematics::geometry::d2::object::MultiLineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab51f3ac0454156100fd02a75fcf3f7f7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acf4c687922d62a5aba718135134da5c6',1,'ostk::mathematics::geometry::d2::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a6cc208100261019089ad86b71b700864',1,'ostk::mathematics::geometry::d2::object::PointSet::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#acae5758cc07f2787875897d4392a07a4',1,'ostk::mathematics::geometry::d2::object::Polygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341',1,'ostk::mathematics::geometry::d2::object::Segment::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aedf9c7ef5af5892d15cf08da795fa1af',1,'ostk::mathematics::geometry::d2::Object::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa84b03a8b7122c8e18038800882bd368',1,'ostk::mathematics::geometry::d3::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6ef0461c00dd105f6c38fe5a2ee22c94',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Quaternion::Format &aFormat) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6',1,'ostk::mathematics::geometry::Angle::toString()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf',1,'ostk::mathematics::object::Interval::toString()'],['../_eigen_8hpp.html#a12b926fa5c60e26e4a170e5b4e870dea',1,'toString(): Eigen.hpp']]], + ['totransposed_362',['toTransposed',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['tovector_363',['toVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a511d16a1d248592a98f6fd3345bd7547',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toVector()']]], + ['transformation_364',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html',1,'ostk::mathematics::geometry::d3::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html',1,'ostk::mathematics::geometry::d2::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a75793220f8bb3d271b771b7f060b636c',1,'ostk::mathematics::geometry::d2::Transformation::Transformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a208df471aa963dabb54cfed7a6cbaa09',1,'ostk::mathematics::geometry::d3::Transformation::Transformation()']]], + ['transformation_2ecpp_365',['Transformation.cpp',['../2_d_2_transformation_8cpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8cpp.html',1,'(Global Namespace)']]], + ['transformation_2ehpp_366',['Transformation.hpp',['../2_d_2_transformation_8hpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8hpp.html',1,'(Global Namespace)']]], + ['translation_367',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ac20f9204fa06c83f5c3d5e487f2909e9',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#af9058de81115d953ab8d9b8922abe692',1,'ostk::mathematics::geometry::d3::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]], + ['transpose_368',['transpose',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['tutorial_2emd_369',['Tutorial.md',['../_tutorial_8md.html',1,'']]], + ['twopi_370',['TwoPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac282022eaa53c2f999a181c241b358b0',1,'ostk::mathematics::geometry::Angle']]], + ['type_371',['Type',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557',1,'ostk::mathematics::curvefitting::Interpolator::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faae',1,'ostk::mathematics::geometry::d2::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9',1,'ostk::mathematics::geometry::d2::Transformation::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cd',1,'ostk::mathematics::geometry::d3::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdac',1,'ostk::mathematics::geometry::d3::Transformation::Type()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201',1,'ostk::mathematics::object::IntervalBase::Type()']]], + ['typeofmatrix_372',['TypeOfMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a50b50b58b43aa9534849d2c0398bd710',1,'ostk::mathematics::geometry::d2::Transformation::TypeOfMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a21a3ef00ead4aad2df9f7685729db7b3',1,'ostk::mathematics::geometry::d3::Transformation::TypeOfMatrix()']]] ]; diff --git a/html/search/all_12.js b/html/search/all_12.js index dd7b3306..05838dcb 100644 --- a/html/search/all_12.js +++ b/html/search/all_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['undefined_360',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af09e4e5f1f8a4b76d0b5e91e3ea7ec11',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68ef0c5cbb3fde1c662f60c5f137fe60',1,'ostk::mathematics::geometry::d2::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a728722304ee853205eab876dec1ec632',1,'ostk::mathematics::geometry::d2::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#acc1cc81fdc22237fd4030fceff9962c0',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a71002eaa63a8305e0566b490ec7740ec',1,'ostk::mathematics::geometry::d2::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adcfe062c3f4fdf897e701399f3d6fd3c',1,'ostk::mathematics::geometry::d2::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abe41a221a94af6243a986b71e27f49ff',1,'ostk::mathematics::geometry::d2::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ae17a40e15a7800a2395825a16cbdea46',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a00b64df4b806356fd959b39e22140856',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ae9de0eace4f4bc2eeef0b79c48723aec',1,'ostk::mathematics::geometry::d3::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a05a5cf02c3eae74349a97c3347d54429',1,'ostk::mathematics::geometry::d3::object::Cone::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a137ba797d414aa5432154e59227c7cfc',1,'ostk::mathematics::geometry::d3::object::Cuboid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a926b28952c1364fff54b2cf2ace854ff',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a22a81cbf24719168493158361bb24ee7',1,'ostk::mathematics::geometry::d3::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a426953082cf45d17f80fde82753583df',1,'ostk::mathematics::geometry::d3::object::Plane::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a48d5b17426787474bdae338a5f154424',1,'ostk::mathematics::geometry::d3::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a446de1b35f71c1ac2be694b9c258b6cc',1,'ostk::mathematics::geometry::d3::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a631ca947390c95b73c78b42c3d840b12',1,'ostk::mathematics::geometry::d3::object::Pyramid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a96df474e37b59adc0de41d1b99b5550a',1,'ostk::mathematics::geometry::d3::object::Ray::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a350e73ef7a773419e87b5cec077f9482',1,'ostk::mathematics::geometry::d3::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a74397702d3224ec9a01897273de8f590',1,'ostk::mathematics::geometry::d3::object::Sphere::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9828e84f2f4b0837912d2a38459e052f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aeae6917c12ec1afe40af8d15bcd1ed0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac296ba2d49497a1d7a5b1d1aa1628294',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aac3424b240ed5116413462fa5e1f7c8f',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07abb07ad2d332bfd5ac200bf68f0dd',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a877844b24a34a2c5c5109ce658cd5551',1,'ostk::mathematics::object::Interval::Undefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1e196c06ce05721dd871501fd4df0500',1,'ostk::mathematics::solver::NumericalSolver::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Object::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::object::IntervalBase::Undefined()']]], - ['unionwith_361',['unionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#adb9f3fc9b4a828252c89a0a314d851c8',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::unionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#addbc0c8111c2f8c5ce1ff347135d54fe',1,'ostk::mathematics::geometry::d2::object::Polygon::unionWith()']]], - ['unit_362',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371',1,'ostk::mathematics::geometry::Angle::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a81b2f22059fd4a1235795783e0cfcbb3',1,'ostk::mathematics::geometry::d3::object::Sphere::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#affb9e0b77d6b66dfcfdccb17ec10d1bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a54cce35b27cb061a457bf0011f1312ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a31c276c930ed9d5ff4cb406be6a48f7e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Unit()']]] + ['undefined_373',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af09e4e5f1f8a4b76d0b5e91e3ea7ec11',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68ef0c5cbb3fde1c662f60c5f137fe60',1,'ostk::mathematics::geometry::d2::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a728722304ee853205eab876dec1ec632',1,'ostk::mathematics::geometry::d2::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#acc1cc81fdc22237fd4030fceff9962c0',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a71002eaa63a8305e0566b490ec7740ec',1,'ostk::mathematics::geometry::d2::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adcfe062c3f4fdf897e701399f3d6fd3c',1,'ostk::mathematics::geometry::d2::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abe41a221a94af6243a986b71e27f49ff',1,'ostk::mathematics::geometry::d2::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ae17a40e15a7800a2395825a16cbdea46',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a00b64df4b806356fd959b39e22140856',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ae9de0eace4f4bc2eeef0b79c48723aec',1,'ostk::mathematics::geometry::d3::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a05a5cf02c3eae74349a97c3347d54429',1,'ostk::mathematics::geometry::d3::object::Cone::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a137ba797d414aa5432154e59227c7cfc',1,'ostk::mathematics::geometry::d3::object::Cuboid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a926b28952c1364fff54b2cf2ace854ff',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a22a81cbf24719168493158361bb24ee7',1,'ostk::mathematics::geometry::d3::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a426953082cf45d17f80fde82753583df',1,'ostk::mathematics::geometry::d3::object::Plane::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a48d5b17426787474bdae338a5f154424',1,'ostk::mathematics::geometry::d3::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a446de1b35f71c1ac2be694b9c258b6cc',1,'ostk::mathematics::geometry::d3::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a631ca947390c95b73c78b42c3d840b12',1,'ostk::mathematics::geometry::d3::object::Pyramid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a96df474e37b59adc0de41d1b99b5550a',1,'ostk::mathematics::geometry::d3::object::Ray::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a350e73ef7a773419e87b5cec077f9482',1,'ostk::mathematics::geometry::d3::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a74397702d3224ec9a01897273de8f590',1,'ostk::mathematics::geometry::d3::object::Sphere::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a65f9ff57748fe200180b4c7ffee03dd5',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9828e84f2f4b0837912d2a38459e052f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aeae6917c12ec1afe40af8d15bcd1ed0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac296ba2d49497a1d7a5b1d1aa1628294',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aac3424b240ed5116413462fa5e1f7c8f',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07abb07ad2d332bfd5ac200bf68f0dd',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a877844b24a34a2c5c5109ce658cd5551',1,'ostk::mathematics::object::Interval::Undefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1e196c06ce05721dd871501fd4df0500',1,'ostk::mathematics::solver::NumericalSolver::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Object::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::object::IntervalBase::Undefined()']]], + ['unionwith_374',['unionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#adb9f3fc9b4a828252c89a0a314d851c8',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::unionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#addbc0c8111c2f8c5ce1ff347135d54fe',1,'ostk::mathematics::geometry::d2::object::Polygon::unionWith()']]], + ['unit_375',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371',1,'ostk::mathematics::geometry::Angle::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a81b2f22059fd4a1235795783e0cfcbb3',1,'ostk::mathematics::geometry::d3::object::Sphere::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a970d830a551e4596701281e2cf0a1899',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#affb9e0b77d6b66dfcfdccb17ec10d1bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a54cce35b27cb061a457bf0011f1312ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a31c276c930ed9d5ff4cb406be6a48f7e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Unit()']]] ]; diff --git a/html/search/all_13.js b/html/search/all_13.js index ea524b25..09d923cb 100644 --- a/html/search/all_13.js +++ b/html/search/all_13.js @@ -1,16 +1,16 @@ var searchData= [ - ['vector_363',['Vector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#ac1a68722649ac022d295b1e52cd715c5',1,'ostk::mathematics::geometry::d2::object::Point::Vector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa467c6aeea346a0a8d1d2c2b0397b069',1,'ostk::mathematics::geometry::d3::object::Point::Vector()']]], - ['vector_2ecpp_364',['Vector.cpp',['../_vector_8cpp.html',1,'']]], - ['vector_2ehpp_365',['Vector.hpp',['../_vector_8hpp.html',1,'']]], - ['vector2d_366',['Vector2d',['../namespaceostk_1_1mathematics_1_1object.html#ac86e8f85187dc85c1f935627d56c1beb',1,'ostk::mathematics::object']]], - ['vector2i_367',['Vector2i',['../namespaceostk_1_1mathematics_1_1object.html#ad80cd7b98ff80674edeb802fc9cda7df',1,'ostk::mathematics::object']]], - ['vector3d_368',['Vector3d',['../namespaceostk_1_1mathematics_1_1object.html#a69d9a055814e9440af219eff448c6c23',1,'ostk::mathematics::object']]], - ['vector3i_369',['Vector3i',['../namespaceostk_1_1mathematics_1_1object.html#ac4d313022be5530ea8ff4587b1738177',1,'ostk::mathematics::object']]], - ['vector4d_370',['Vector4d',['../namespaceostk_1_1mathematics_1_1object.html#a4a69dcd1bf9592d64b93139e22f15beb',1,'ostk::mathematics::object']]], - ['vector4i_371',['Vector4i',['../namespaceostk_1_1mathematics_1_1object.html#a3eb95cd6c5c7d6642071579eadd72e6f',1,'ostk::mathematics::object']]], - ['vector6d_372',['Vector6d',['../namespaceostk_1_1mathematics_1_1object.html#a709e40375d597c36635def856021a648',1,'ostk::mathematics::object']]], - ['vectorxd_373',['VectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a7353155bb00668655919bf5698f74c84',1,'ostk::mathematics::object']]], - ['vectorxi_374',['VectorXi',['../namespaceostk_1_1mathematics_1_1object.html#a2b9807c143e8b3bf0dba3aeab50baa57',1,'ostk::mathematics::object']]], - ['vertex_375',['Vertex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adf15f8325e848f3c4e310169aa8e0657',1,'ostk::mathematics::geometry::d2::object::Polygon::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ad7320e905fa787d1ccdadefd58ceac7b',1,'ostk::mathematics::geometry::d3::object::Cuboid::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a33d84704d7e18430f2a86399103eb84d',1,'ostk::mathematics::geometry::d3::object::Polygon::Vertex()']]] + ['vector_376',['Vector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#ac1a68722649ac022d295b1e52cd715c5',1,'ostk::mathematics::geometry::d2::object::Point::Vector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa467c6aeea346a0a8d1d2c2b0397b069',1,'ostk::mathematics::geometry::d3::object::Point::Vector()']]], + ['vector_2ecpp_377',['Vector.cpp',['../_vector_8cpp.html',1,'']]], + ['vector_2ehpp_378',['Vector.hpp',['../_vector_8hpp.html',1,'']]], + ['vector2d_379',['Vector2d',['../namespaceostk_1_1mathematics_1_1object.html#ac86e8f85187dc85c1f935627d56c1beb',1,'ostk::mathematics::object']]], + ['vector2i_380',['Vector2i',['../namespaceostk_1_1mathematics_1_1object.html#ad80cd7b98ff80674edeb802fc9cda7df',1,'ostk::mathematics::object']]], + ['vector3d_381',['Vector3d',['../namespaceostk_1_1mathematics_1_1object.html#a69d9a055814e9440af219eff448c6c23',1,'ostk::mathematics::object']]], + ['vector3i_382',['Vector3i',['../namespaceostk_1_1mathematics_1_1object.html#ac4d313022be5530ea8ff4587b1738177',1,'ostk::mathematics::object']]], + ['vector4d_383',['Vector4d',['../namespaceostk_1_1mathematics_1_1object.html#a4a69dcd1bf9592d64b93139e22f15beb',1,'ostk::mathematics::object']]], + ['vector4i_384',['Vector4i',['../namespaceostk_1_1mathematics_1_1object.html#a3eb95cd6c5c7d6642071579eadd72e6f',1,'ostk::mathematics::object']]], + ['vector6d_385',['Vector6d',['../namespaceostk_1_1mathematics_1_1object.html#a709e40375d597c36635def856021a648',1,'ostk::mathematics::object']]], + ['vectorxd_386',['VectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a7353155bb00668655919bf5698f74c84',1,'ostk::mathematics::object']]], + ['vectorxi_387',['VectorXi',['../namespaceostk_1_1mathematics_1_1object.html#a2b9807c143e8b3bf0dba3aeab50baa57',1,'ostk::mathematics::object']]], + ['vertex_388',['Vertex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adf15f8325e848f3c4e310169aa8e0657',1,'ostk::mathematics::geometry::d2::object::Polygon::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ad7320e905fa787d1ccdadefd58ceac7b',1,'ostk::mathematics::geometry::d3::object::Cuboid::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a33d84704d7e18430f2a86399103eb84d',1,'ostk::mathematics::geometry::d3::object::Polygon::Vertex()']]] ]; diff --git a/html/search/all_14.js b/html/search/all_14.js index df760ab3..61301cad 100644 --- a/html/search/all_14.js +++ b/html/search/all_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['wkt_376',['WKT',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13a9ab05752e6beff2c783a6046ed592661',1,'ostk::mathematics::geometry::d2::Object']]] + ['wkt_389',['WKT',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13a9ab05752e6beff2c783a6046ed592661',1,'ostk::mathematics::geometry::d2::Object']]] ]; diff --git a/html/search/all_15.js b/html/search/all_15.js index 18f6c9be..53754f50 100644 --- a/html/search/all_15.js +++ b/html/search/all_15.js @@ -1,5 +1,6 @@ var searchData= [ - ['x_377',['x',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#af8b071291f40e389405fb96905c1d6a8',1,'ostk::mathematics::geometry::d2::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3ddbe352084484876eb27f736cbeb652',1,'ostk::mathematics::geometry::d3::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ad5a563a069f6665a086b2ba5fc20ea76',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::X()']]], - ['xyzs_378',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab065862f2a77807e42f6feaadc0637e2',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::XYZS()']]] + ['x_390',['x',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#af8b071291f40e389405fb96905c1d6a8',1,'ostk::mathematics::geometry::d2::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3ddbe352084484876eb27f736cbeb652',1,'ostk::mathematics::geometry::d3::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ad5a563a069f6665a086b2ba5fc20ea76',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::X()']]], + ['xyz_391',['XYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ad67a6f747c305d3528a7d9639ce14bf4',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::XYZ(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::XYZ()']]], + ['xyzs_392',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab065862f2a77807e42f6feaadc0637e2',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::XYZS(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::XYZS()']]] ]; diff --git a/html/search/all_16.js b/html/search/all_16.js index d30fe78e..4475b940 100644 --- a/html/search/all_16.js +++ b/html/search/all_16.js @@ -1,4 +1,4 @@ var searchData= [ - ['y_379',['y',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a90787dd1713e93c1220b0fc5afa96d93',1,'ostk::mathematics::geometry::d2::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa3c577975615062970c71fd90a166861',1,'ostk::mathematics::geometry::d3::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a30ecbac5afd7470bc9cb68079997fc0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Y()']]] + ['y_393',['Y',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a30ecbac5afd7470bc9cb68079997fc0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Y()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a90787dd1713e93c1220b0fc5afa96d93',1,'ostk::mathematics::geometry::d2::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa3c577975615062970c71fd90a166861',1,'ostk::mathematics::geometry::d3::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::y()']]] ]; diff --git a/html/search/all_17.js b/html/search/all_17.js index bff2e5aa..6ad66171 100644 --- a/html/search/all_17.js +++ b/html/search/all_17.js @@ -1,5 +1,7 @@ var searchData= [ - ['z_380',['Z',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a4985f992a53c3d1412a06b2ebedd4bca',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ac4c697327bcf0b3bf414664b5e4b5da8',1,'ostk::mathematics::geometry::d3::object::Point::z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::z()']]], - ['zero_381',['Zero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a8e6ae32f87c8dd9dbb5b13f0403bb93b',1,'ostk::mathematics::geometry::Angle']]] + ['z_394',['Z',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a4985f992a53c3d1412a06b2ebedd4bca',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ac4c697327bcf0b3bf414664b5e4b5da8',1,'ostk::mathematics::geometry::d3::object::Point::z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::z()']]], + ['zero_395',['Zero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a8e6ae32f87c8dd9dbb5b13f0403bb93b',1,'ostk::mathematics::geometry::Angle']]], + ['zxy_396',['ZXY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5c480a99e25a582539a3d23bbc1cfaad',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZXY(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZXY()']]], + ['zyx_397',['ZYX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5a32a18b2e11e5cce47df3f651e22fe8',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZYX(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::ZYX()']]] ]; diff --git a/html/search/all_18.js b/html/search/all_18.js index 312783b1..6bb76c3d 100644 --- a/html/search/all_18.js +++ b/html/search/all_18.js @@ -1,11 +1,11 @@ var searchData= [ - ['_7ebarycentricrational_382',['~BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a084b79dfcfae56e18cd7c1dd5269e007',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], - ['_7ecubicspline_383',['~CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a458bf216be06ad3ef539343e8397ef44',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline']]], - ['_7einterpolator_384',['~Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#ac980e413bfeb65eceb347e787899c1f4',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['_7eintersection_385',['~Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0f8d688de5a4819053d1f69a50e5a78e',1,'ostk::mathematics::geometry::d2::Intersection::~Intersection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#afcedc858d9629b15c995294c81a6b22b',1,'ostk::mathematics::geometry::d3::Intersection::~Intersection()']]], - ['_7elinear_386',['~Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a6e6d93d0ac658408b32a8bb8dd66d069',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], - ['_7emultipolygon_387',['~MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae98f8850dcfc6dbd6d1aa3d1a4105408',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['_7eobject_388',['~Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af11dec981b2e1ab08deae342ec2c4ef8',1,'ostk::mathematics::geometry::d2::Object::~Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aae1324c306129cce2e7d42a28c0de181',1,'ostk::mathematics::geometry::d3::Object::~Object()']]], - ['_7epolygon_389',['~Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad145d668431abe12328dc010394684cb',1,'ostk::mathematics::geometry::d2::object::Polygon']]] + ['_7ebarycentricrational_398',['~BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a084b79dfcfae56e18cd7c1dd5269e007',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], + ['_7ecubicspline_399',['~CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a458bf216be06ad3ef539343e8397ef44',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline']]], + ['_7einterpolator_400',['~Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#ac980e413bfeb65eceb347e787899c1f4',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['_7eintersection_401',['~Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0f8d688de5a4819053d1f69a50e5a78e',1,'ostk::mathematics::geometry::d2::Intersection::~Intersection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#afcedc858d9629b15c995294c81a6b22b',1,'ostk::mathematics::geometry::d3::Intersection::~Intersection()']]], + ['_7elinear_402',['~Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a6e6d93d0ac658408b32a8bb8dd66d069',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], + ['_7emultipolygon_403',['~MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae98f8850dcfc6dbd6d1aa3d1a4105408',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['_7eobject_404',['~Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af11dec981b2e1ab08deae342ec2c4ef8',1,'ostk::mathematics::geometry::d2::Object::~Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aae1324c306129cce2e7d42a28c0de181',1,'ostk::mathematics::geometry::d3::Object::~Object()']]], + ['_7epolygon_405',['~Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad145d668431abe12328dc010394684cb',1,'ostk::mathematics::geometry::d2::object::Polygon']]] ]; diff --git a/html/search/all_2.js b/html/search/all_2.js index f07ece03..e141d051 100644 --- a/html/search/all_2.js +++ b/html/search/all_2.js @@ -1,30 +1,30 @@ var searchData= [ - ['clone_28',['clone',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a19f3ba420ea69eefa3a2b948d59a2fab',1,'ostk::mathematics::geometry::d2::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a60f4de4753ac3be12c6084aca4b9cc3a',1,'ostk::mathematics::geometry::d2::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a37f35461ca951c8a01b50631500cddd8',1,'ostk::mathematics::geometry::d2::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#aab7aa00392d691582dfc454fd0d7a7c5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a04159c43117169d31c0e275f10617912',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a6130fa9acf01d10db49a6ea301efd579',1,'ostk::mathematics::geometry::d2::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a0ee1f055d01e740ac294252806887fc6',1,'ostk::mathematics::geometry::d2::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a290758ce99124ae08292c683a9d77fc3',1,'ostk::mathematics::geometry::d2::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54',1,'ostk::mathematics::geometry::d2::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af63da855554f9114803103fe2390f5eb',1,'ostk::mathematics::geometry::d2::Object::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4d5a9ea98d5a028f2792d3b11e9fd6e8',1,'ostk::mathematics::geometry::d3::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0c99b116c5a6f6e0915cb5375fc66149',1,'ostk::mathematics::geometry::d3::object::Cone::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ab67f8c5204e7d81204f80ca1298073a8',1,'ostk::mathematics::geometry::d3::object::Cuboid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca293bcf279702b8b59d72fe4dd09217',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a34fd0962885cf69d1a70a5d62395acc9',1,'ostk::mathematics::geometry::d3::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a6d27eb6359000685e81a6a5d79fbb807',1,'ostk::mathematics::geometry::d3::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a07a393740306e4f8363920a8d82823e7',1,'ostk::mathematics::geometry::d3::object::Plane::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#adf6a7e433d64879df60ea17403bf4694',1,'ostk::mathematics::geometry::d3::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1ab0dfee99b56b4324e782a406ca1687',1,'ostk::mathematics::geometry::d3::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0502f752850b36aa89c4fc443f7e4376',1,'ostk::mathematics::geometry::d3::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a61cb86ec44359755cc1edc8dec1604c0',1,'ostk::mathematics::geometry::d3::object::Pyramid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#ad6ef8e1e883a675f054a790093c152b8',1,'ostk::mathematics::geometry::d3::object::Ray::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aaaed581dfea7bf716e1125a088ba963c',1,'ostk::mathematics::geometry::d3::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a28e9a96d726b5eea0da0696647912780',1,'ostk::mathematics::geometry::d3::object::Sphere::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a8ea8d4074bfaaa3d996d760d5d5751db',1,'ostk::mathematics::geometry::d3::Object::clone()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ade382b45dc13976a125ee742a7e0e299',1,'ostk::mathematics::solver::NumericalSolver::clone()']]], - ['closed_29',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3d13b7bfa9bcfee7dd3a7f9998378c4b',1,'ostk::mathematics::object::Interval::Closed()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a03f4a47830f97377a35321051685071e',1,'ostk::mathematics::object::IntervalBase::Closed()']]], - ['columns_30',['Columns',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a255df0da5d9ec95a9842ed312a67beb2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['complex_31',['Complex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d2::Intersection::Complex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d3::Intersection::Complex()']]], - ['composite_32',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d2::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d3::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a46840777485fc459449f36c304ef8989',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a40e91d9468ac09b2b87155b79d196d1d',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a66437dec2907929057147bcf7e6cd364',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae777b05fd25e69c98d8d664b6a3e4e14',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Composite &aComposite)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad3c66a24df2c50819fbc8dbe288b85ee',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aec24fbd4ad7f8beaea120b2fa2743bd5',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aa67f5a8fadff55239bc9710c3c86b08b',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a66ac8dd91f5a192965ed771a69593ac3',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Composite &aComposite)']]], - ['composite_2ecpp_33',['Composite.cpp',['../2_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)']]], - ['composite_2ehpp_34',['Composite.hpp',['../2_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)']]], - ['cone_35',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html',1,'ostk::mathematics::geometry::d3::object::Cone'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a10d3d96af94c8dc4219c4b4ffec15dce',1,'ostk::mathematics::geometry::d3::object::Cone::Cone()']]], - ['cone_2ecpp_36',['Cone.cpp',['../_cone_8cpp.html',1,'']]], - ['cone_2ehpp_37',['Cone.hpp',['../_cone_8hpp.html',1,'']]], - ['conjugate_38',['conjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['constiterator_39',['ConstIterator',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a34efd57a99c61f2e4e63fd6444dae04f',1,'ostk::mathematics::geometry::d2::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#acacd5fbb50b8d1b38b2d90b9139cbfa9',1,'ostk::mathematics::geometry::d2::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a56904ee7e27c37e2c3a1c94359ec01c9',1,'ostk::mathematics::geometry::d2::object::MultiLineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac8c8663dfd3465fdc37f369adc826488',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a82c1f98e0313394b616bf3e09b8dfb91',1,'ostk::mathematics::geometry::d2::object::PointSet::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a3fb7f38a564e36224fb4753be74836ff',1,'ostk::mathematics::geometry::d3::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5bc4dc999137d0087978e3a1df1d8f7b',1,'ostk::mathematics::geometry::d3::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a257f4e16cbaf7a172b99449b9b9130a0',1,'ostk::mathematics::geometry::d3::object::PointSet::ConstIterator()']]], - ['container_40',['Container',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a210d9e23e5160ce058c2d9af547bd649',1,'ostk::mathematics::geometry::d2::object::PointSet::Container()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a313907ba2105a4ba75badb42c2277dc0',1,'ostk::mathematics::geometry::d3::object::PointSet::Container()']]], - ['contains_41',['contains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a9c1fbdcbb36a4689a047ec6a9e887ebc',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aff95d8fa19dde2346269555c4b8e05cf',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#aefb7b93e8cea6c18e38ee2e6627da0e5',1,'ostk::mathematics::geometry::d2::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a44ea437739c18c9c49f05d0f7453cb32',1,'ostk::mathematics::geometry::d2::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a6c13eb4d91446900ddda8f0040455020',1,'ostk::mathematics::geometry::d2::object::LineString::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a910773da45f1028fd287d54cf983d80a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab8545c27cb14a4c15ba5d7b80f07c91a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4b5a24cc8cb60cf10d710aa62f742478',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac1e78b5240370ba32bcfd6078793888c',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a0c4427854d9487e06ba35456128692fb',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const LineString &aLineString) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a694a856a4e694e0c570b3e0bbbee9f53',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a43eaa4a59d81e7eb36b80f6695de6ce1',1,'ostk::mathematics::geometry::d2::Object::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9a69a179318ed283eb977f7ed6649061',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9239c58d4c8dc813b944bd4ab92371a7',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0e66cd58ae5abba7d1c183ec5c9daef7',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aaa970b79b1e3b9dcd247a4bff7bd9378',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a2f3b44690e2997261115755b7aef8a07',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a81f8bff0944acb412ca59238bb717426',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a3c18746829be63f97a7b50e7c6fa69c4',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a589c4383552d6e6dcc23f20dc3d6008d',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af9c1badd7cb2289a15179b0013624045',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a3cf093f96d14d21cfd9851b1cbe744be',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#adf437c225438cc4d8464002c75eea143',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#acd6265aa0324a0a42782255c6c68fd6c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aa0d3177d1ed9985503ec6055f40768a8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2f6d64044fbfaa53a018f3f0e62fa2ce',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac1c03c840e6a7da0f4c7dd756181d7bb',1,'ostk::mathematics::geometry::d3::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8371e47909da7e742bb96ef1a1db99c7',1,'ostk::mathematics::geometry::d3::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a524aa96a108be7503f1ff86394a08f2c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab0b9146d7ba1edd4386336b6838fa27f',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a6ccf2471ed3a0c7ca9d52b96aecfd01d',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b9e0648b92e137af003fa83b0a7d882',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a24f4e1fe595451ef6cb1c3acef15d894',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4df37b7e74dcdbce1d4485e5531a6f65',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#afb8fc0cc19a2ed253abf288c91d6a769',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a21258f62dee6d2ce47cc7dc5ce758f95',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aaa1043541f46cbf9939ccb1f24ab8ee9',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a1848ffef38a11b7014ae9fbdbf293503',1,'ostk::mathematics::geometry::d3::object::Segment::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a4a3a9cec2f8df6799344ea779a635fd5',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ac55784d01e1ab5c8ea2b800dc844448b',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af60902b6b025fdaf8839c08e532dd2b0',1,'ostk::mathematics::geometry::d3::Object::contains()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e',1,'ostk::mathematics::object::Interval::contains(const T &aValue) const'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5',1,'ostk::mathematics::object::Interval::contains(const Interval &anInterval) const']]], - ['contributing_2emd_42',['CONTRIBUTING.md',['../_c_o_n_t_r_i_b_u_t_i_n_g_8md.html',1,'']]], - ['crossmultiply_43',['crossMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['cube_44',['Cube',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a50197f54dd665a9dc63004e89bad728e',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['cubicspline_45',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#af32918b90ad7b87440323e3b0e4a8d6e',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &anXVector, const VectorXd &aYVector)'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#aee7259e030e792e73991125e793f0862',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &aYVector, const Real &x0, const Real &h)'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557abc050383dcd36a2e1f9481e562332cfa',1,'ostk::mathematics::curvefitting::Interpolator::CubicSpline()']]], - ['cubicspline_2ecpp_46',['CubicSpline.cpp',['../_cubic_spline_8cpp.html',1,'']]], - ['cubicspline_2ehpp_47',['CubicSpline.hpp',['../_cubic_spline_8hpp.html',1,'']]], - ['cuboid_48',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html',1,'ostk::mathematics::geometry::d3::object::Cuboid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa8163a96646fa5b9069c7a19d6a6c642',1,'ostk::mathematics::geometry::d3::object::Cuboid::Cuboid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdadccdaa100fb1b4c91e2e6114ab957e28',1,'ostk::mathematics::geometry::d3::Intersection::Cuboid()']]], - ['cuboid_2ecpp_49',['Cuboid.cpp',['../_cuboid_8cpp.html',1,'']]], - ['cuboid_2ehpp_50',['Cuboid.hpp',['../_cuboid_8hpp.html',1,'']]], - ['cuboidgtevectorfrompoint_51',['CuboidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#aacca6849c92edb9524d03ca2a4f37905',1,'ostk::mathematics::geometry::d3::object']]], - ['cuboidgtevectorfromvector3d_52',['CuboidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0c088041334cad9e4d7fee2ea9ef573a',1,'ostk::mathematics::geometry::d3::object']]], - ['cuboidpointfromgtevector_53',['CuboidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a45b420bc462a2d1e530f360e1b071ee1',1,'ostk::mathematics::geometry::d3::object']]], - ['contributing_54',['Contributing',['../md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]] + ['clone_29',['clone',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a19f3ba420ea69eefa3a2b948d59a2fab',1,'ostk::mathematics::geometry::d2::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a60f4de4753ac3be12c6084aca4b9cc3a',1,'ostk::mathematics::geometry::d2::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a37f35461ca951c8a01b50631500cddd8',1,'ostk::mathematics::geometry::d2::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#aab7aa00392d691582dfc454fd0d7a7c5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a04159c43117169d31c0e275f10617912',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a6130fa9acf01d10db49a6ea301efd579',1,'ostk::mathematics::geometry::d2::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a0ee1f055d01e740ac294252806887fc6',1,'ostk::mathematics::geometry::d2::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a290758ce99124ae08292c683a9d77fc3',1,'ostk::mathematics::geometry::d2::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54',1,'ostk::mathematics::geometry::d2::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af63da855554f9114803103fe2390f5eb',1,'ostk::mathematics::geometry::d2::Object::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4d5a9ea98d5a028f2792d3b11e9fd6e8',1,'ostk::mathematics::geometry::d3::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0c99b116c5a6f6e0915cb5375fc66149',1,'ostk::mathematics::geometry::d3::object::Cone::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ab67f8c5204e7d81204f80ca1298073a8',1,'ostk::mathematics::geometry::d3::object::Cuboid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca293bcf279702b8b59d72fe4dd09217',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a34fd0962885cf69d1a70a5d62395acc9',1,'ostk::mathematics::geometry::d3::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a6d27eb6359000685e81a6a5d79fbb807',1,'ostk::mathematics::geometry::d3::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a07a393740306e4f8363920a8d82823e7',1,'ostk::mathematics::geometry::d3::object::Plane::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#adf6a7e433d64879df60ea17403bf4694',1,'ostk::mathematics::geometry::d3::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1ab0dfee99b56b4324e782a406ca1687',1,'ostk::mathematics::geometry::d3::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0502f752850b36aa89c4fc443f7e4376',1,'ostk::mathematics::geometry::d3::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a61cb86ec44359755cc1edc8dec1604c0',1,'ostk::mathematics::geometry::d3::object::Pyramid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#ad6ef8e1e883a675f054a790093c152b8',1,'ostk::mathematics::geometry::d3::object::Ray::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aaaed581dfea7bf716e1125a088ba963c',1,'ostk::mathematics::geometry::d3::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a28e9a96d726b5eea0da0696647912780',1,'ostk::mathematics::geometry::d3::object::Sphere::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a8ea8d4074bfaaa3d996d760d5d5751db',1,'ostk::mathematics::geometry::d3::Object::clone()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ade382b45dc13976a125ee742a7e0e299',1,'ostk::mathematics::solver::NumericalSolver::clone()']]], + ['closed_30',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3d13b7bfa9bcfee7dd3a7f9998378c4b',1,'ostk::mathematics::object::Interval::Closed()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a03f4a47830f97377a35321051685071e',1,'ostk::mathematics::object::IntervalBase::Closed()']]], + ['columns_31',['Columns',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a255df0da5d9ec95a9842ed312a67beb2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['complex_32',['Complex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d2::Intersection::Complex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d3::Intersection::Complex()']]], + ['composite_33',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d2::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d3::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a46840777485fc459449f36c304ef8989',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a40e91d9468ac09b2b87155b79d196d1d',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a66437dec2907929057147bcf7e6cd364',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae777b05fd25e69c98d8d664b6a3e4e14',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Composite &aComposite)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad3c66a24df2c50819fbc8dbe288b85ee',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aec24fbd4ad7f8beaea120b2fa2743bd5',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aa67f5a8fadff55239bc9710c3c86b08b',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a66ac8dd91f5a192965ed771a69593ac3',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Composite &aComposite)']]], + ['composite_2ecpp_34',['Composite.cpp',['../2_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)']]], + ['composite_2ehpp_35',['Composite.hpp',['../2_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)']]], + ['cone_36',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html',1,'ostk::mathematics::geometry::d3::object::Cone'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a10d3d96af94c8dc4219c4b4ffec15dce',1,'ostk::mathematics::geometry::d3::object::Cone::Cone()']]], + ['cone_2ecpp_37',['Cone.cpp',['../_cone_8cpp.html',1,'']]], + ['cone_2ehpp_38',['Cone.hpp',['../_cone_8hpp.html',1,'']]], + ['conjugate_39',['conjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['constiterator_40',['ConstIterator',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a34efd57a99c61f2e4e63fd6444dae04f',1,'ostk::mathematics::geometry::d2::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#acacd5fbb50b8d1b38b2d90b9139cbfa9',1,'ostk::mathematics::geometry::d2::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a56904ee7e27c37e2c3a1c94359ec01c9',1,'ostk::mathematics::geometry::d2::object::MultiLineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac8c8663dfd3465fdc37f369adc826488',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a82c1f98e0313394b616bf3e09b8dfb91',1,'ostk::mathematics::geometry::d2::object::PointSet::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a3fb7f38a564e36224fb4753be74836ff',1,'ostk::mathematics::geometry::d3::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5bc4dc999137d0087978e3a1df1d8f7b',1,'ostk::mathematics::geometry::d3::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a257f4e16cbaf7a172b99449b9b9130a0',1,'ostk::mathematics::geometry::d3::object::PointSet::ConstIterator()']]], + ['container_41',['Container',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a210d9e23e5160ce058c2d9af547bd649',1,'ostk::mathematics::geometry::d2::object::PointSet::Container()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a313907ba2105a4ba75badb42c2277dc0',1,'ostk::mathematics::geometry::d3::object::PointSet::Container()']]], + ['contains_42',['contains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a9c1fbdcbb36a4689a047ec6a9e887ebc',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aff95d8fa19dde2346269555c4b8e05cf',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#aefb7b93e8cea6c18e38ee2e6627da0e5',1,'ostk::mathematics::geometry::d2::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a44ea437739c18c9c49f05d0f7453cb32',1,'ostk::mathematics::geometry::d2::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a6c13eb4d91446900ddda8f0040455020',1,'ostk::mathematics::geometry::d2::object::LineString::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a910773da45f1028fd287d54cf983d80a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab8545c27cb14a4c15ba5d7b80f07c91a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4b5a24cc8cb60cf10d710aa62f742478',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac1e78b5240370ba32bcfd6078793888c',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a0c4427854d9487e06ba35456128692fb',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const LineString &aLineString) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a694a856a4e694e0c570b3e0bbbee9f53',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a43eaa4a59d81e7eb36b80f6695de6ce1',1,'ostk::mathematics::geometry::d2::Object::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9a69a179318ed283eb977f7ed6649061',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9239c58d4c8dc813b944bd4ab92371a7',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0e66cd58ae5abba7d1c183ec5c9daef7',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aaa970b79b1e3b9dcd247a4bff7bd9378',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a2f3b44690e2997261115755b7aef8a07',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a81f8bff0944acb412ca59238bb717426',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a3c18746829be63f97a7b50e7c6fa69c4',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a589c4383552d6e6dcc23f20dc3d6008d',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af9c1badd7cb2289a15179b0013624045',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a3cf093f96d14d21cfd9851b1cbe744be',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#adf437c225438cc4d8464002c75eea143',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#acd6265aa0324a0a42782255c6c68fd6c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aa0d3177d1ed9985503ec6055f40768a8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2f6d64044fbfaa53a018f3f0e62fa2ce',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac1c03c840e6a7da0f4c7dd756181d7bb',1,'ostk::mathematics::geometry::d3::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8371e47909da7e742bb96ef1a1db99c7',1,'ostk::mathematics::geometry::d3::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a524aa96a108be7503f1ff86394a08f2c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab0b9146d7ba1edd4386336b6838fa27f',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a6ccf2471ed3a0c7ca9d52b96aecfd01d',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b9e0648b92e137af003fa83b0a7d882',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a24f4e1fe595451ef6cb1c3acef15d894',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4df37b7e74dcdbce1d4485e5531a6f65',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#afb8fc0cc19a2ed253abf288c91d6a769',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a21258f62dee6d2ce47cc7dc5ce758f95',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aaa1043541f46cbf9939ccb1f24ab8ee9',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a1848ffef38a11b7014ae9fbdbf293503',1,'ostk::mathematics::geometry::d3::object::Segment::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a4a3a9cec2f8df6799344ea779a635fd5',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ac55784d01e1ab5c8ea2b800dc844448b',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af60902b6b025fdaf8839c08e532dd2b0',1,'ostk::mathematics::geometry::d3::Object::contains()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e',1,'ostk::mathematics::object::Interval::contains(const T &aValue) const'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5',1,'ostk::mathematics::object::Interval::contains(const Interval &anInterval) const']]], + ['contributing_2emd_43',['CONTRIBUTING.md',['../_c_o_n_t_r_i_b_u_t_i_n_g_8md.html',1,'']]], + ['crossmultiply_44',['crossMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['cube_45',['Cube',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a50197f54dd665a9dc63004e89bad728e',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['cubicspline_46',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#af32918b90ad7b87440323e3b0e4a8d6e',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &anXVector, const VectorXd &aYVector)'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#aee7259e030e792e73991125e793f0862',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &aYVector, const Real &x0, const Real &h)'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557abc050383dcd36a2e1f9481e562332cfa',1,'ostk::mathematics::curvefitting::Interpolator::CubicSpline()']]], + ['cubicspline_2ecpp_47',['CubicSpline.cpp',['../_cubic_spline_8cpp.html',1,'']]], + ['cubicspline_2ehpp_48',['CubicSpline.hpp',['../_cubic_spline_8hpp.html',1,'']]], + ['cuboid_49',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html',1,'ostk::mathematics::geometry::d3::object::Cuboid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa8163a96646fa5b9069c7a19d6a6c642',1,'ostk::mathematics::geometry::d3::object::Cuboid::Cuboid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdadccdaa100fb1b4c91e2e6114ab957e28',1,'ostk::mathematics::geometry::d3::Intersection::Cuboid()']]], + ['cuboid_2ecpp_50',['Cuboid.cpp',['../_cuboid_8cpp.html',1,'']]], + ['cuboid_2ehpp_51',['Cuboid.hpp',['../_cuboid_8hpp.html',1,'']]], + ['cuboidgtevectorfrompoint_52',['CuboidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#aacca6849c92edb9524d03ca2a4f37905',1,'ostk::mathematics::geometry::d3::object']]], + ['cuboidgtevectorfromvector3d_53',['CuboidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0c088041334cad9e4d7fee2ea9ef573a',1,'ostk::mathematics::geometry::d3::object']]], + ['cuboidpointfromgtevector_54',['CuboidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a45b420bc462a2d1e530f360e1b071ee1',1,'ostk::mathematics::geometry::d3::object']]], + ['contributing_55',['Contributing',['../md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]] ]; diff --git a/html/search/all_3.js b/html/search/all_3.js index b799ea21..e9efb3d3 100644 --- a/html/search/all_3.js +++ b/html/search/all_3.js @@ -1,16 +1,16 @@ var searchData= [ - ['default_55',['Default',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1653209d9c0b27cc3299fafaa4df7368',1,'ostk::mathematics::solver::NumericalSolver']]], - ['default_5fdiscretization_5flevel_56',['DEFAULT_DISCRETIZATION_LEVEL',['../_cone_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Cone.hpp'],['../_pyramid_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Pyramid.hpp']]], - ['default_5fonly_5fin_5fsight_57',['DEFAULT_ONLY_IN_SIGHT',['../_pyramid_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Pyramid.hpp'],['../_ray_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Ray.hpp'],['../_sphere_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Sphere.hpp']]], - ['default_5forientation_58',['DEFAULT_ORIENTATION',['../_ellipsoid_8hpp.html#a5c684aeaeb24d197904b5a34839d2dd9',1,'Ellipsoid.hpp']]], - ['default_5fprecision_59',['DEFAULT_PRECISION',['../3_d_2_object_2_point_8hpp.html#a6d81881a7883657dbc659ca545d9085d',1,'Point.hpp']]], - ['default_5fray_5fcount_60',['DEFAULT_RAY_COUNT',['../_cone_8hpp.html#a95759f940e1d5e70e977d66fa8fcb5ec',1,'Cone.hpp']]], - ['degree_61',['Degree',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8',1,'ostk::mathematics::geometry::Angle']]], - ['degrees_62',['Degrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf219273c9f6215c4a47a5530e0a3aa3',1,'ostk::mathematics::geometry::Angle']]], - ['dense_5fstepper_5ftype_5f5_63',['dense_stepper_type_5',['../namespaceostk_1_1mathematics_1_1solver.html#a9e0e29898fea269d43fccf27c4fedd60',1,'ostk::mathematics::solver']]], - ['differencewith_64',['differenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a7caedd5217a76f4739ae14c56d7c2387',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['distanceto_65',['distanceTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#af81c8fb3c528d9dd47a72628533f6860',1,'ostk::mathematics::geometry::d2::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5ac6096d3ec22385b722e911afbd3bba',1,'ostk::mathematics::geometry::d2::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a88ba7ea275fba11813b6170e927d1477',1,'ostk::mathematics::geometry::d2::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0fa9db689dceda267581043aab6bc8b9',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a7325f4a0c092cb59c505d281d0c064b0',1,'ostk::mathematics::geometry::d3::object::Cone::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a43104ae42afd24aaa0278f31b2c287a5',1,'ostk::mathematics::geometry::d3::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9d9227bdcc6c23de1b327db7383bcc9f',1,'ostk::mathematics::geometry::d3::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a0c0b80b471c070b67768752d65a36b66',1,'ostk::mathematics::geometry::d3::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a4582d8b43bf47e6d1ede6102425d905c',1,'ostk::mathematics::geometry::d3::object::Ray::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a827fa4980d4799eb154256c59e21e406',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a916bf81d9f186f4712cde0b04d28176a',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const PointSet &aPointSet) const']]], - ['dotmultiply_66',['dotMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['dotproduct_67',['dotProduct',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['default_56',['Default',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1653209d9c0b27cc3299fafaa4df7368',1,'ostk::mathematics::solver::NumericalSolver']]], + ['default_5fdiscretization_5flevel_57',['DEFAULT_DISCRETIZATION_LEVEL',['../_cone_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Cone.hpp'],['../_pyramid_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Pyramid.hpp']]], + ['default_5fonly_5fin_5fsight_58',['DEFAULT_ONLY_IN_SIGHT',['../_pyramid_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Pyramid.hpp'],['../_ray_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Ray.hpp'],['../_sphere_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Sphere.hpp']]], + ['default_5forientation_59',['DEFAULT_ORIENTATION',['../_ellipsoid_8hpp.html#a5c684aeaeb24d197904b5a34839d2dd9',1,'Ellipsoid.hpp']]], + ['default_5fprecision_60',['DEFAULT_PRECISION',['../3_d_2_object_2_point_8hpp.html#a6d81881a7883657dbc659ca545d9085d',1,'Point.hpp']]], + ['default_5fray_5fcount_61',['DEFAULT_RAY_COUNT',['../_cone_8hpp.html#a95759f940e1d5e70e977d66fa8fcb5ec',1,'Cone.hpp']]], + ['degree_62',['Degree',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8',1,'ostk::mathematics::geometry::Angle']]], + ['degrees_63',['Degrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf219273c9f6215c4a47a5530e0a3aa3',1,'ostk::mathematics::geometry::Angle']]], + ['dense_5fstepper_5ftype_5f5_64',['dense_stepper_type_5',['../namespaceostk_1_1mathematics_1_1solver.html#a9e0e29898fea269d43fccf27c4fedd60',1,'ostk::mathematics::solver']]], + ['differencewith_65',['differenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a7caedd5217a76f4739ae14c56d7c2387',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['distanceto_66',['distanceTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#af81c8fb3c528d9dd47a72628533f6860',1,'ostk::mathematics::geometry::d2::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5ac6096d3ec22385b722e911afbd3bba',1,'ostk::mathematics::geometry::d2::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a88ba7ea275fba11813b6170e927d1477',1,'ostk::mathematics::geometry::d2::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0fa9db689dceda267581043aab6bc8b9',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a7325f4a0c092cb59c505d281d0c064b0',1,'ostk::mathematics::geometry::d3::object::Cone::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a43104ae42afd24aaa0278f31b2c287a5',1,'ostk::mathematics::geometry::d3::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9d9227bdcc6c23de1b327db7383bcc9f',1,'ostk::mathematics::geometry::d3::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a0c0b80b471c070b67768752d65a36b66',1,'ostk::mathematics::geometry::d3::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a4582d8b43bf47e6d1ede6102425d905c',1,'ostk::mathematics::geometry::d3::object::Ray::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a827fa4980d4799eb154256c59e21e406',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a916bf81d9f186f4712cde0b04d28176a',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const PointSet &aPointSet) const']]], + ['dotmultiply_67',['dotMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['dotproduct_68',['dotProduct',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/all_4.js b/html/search/all_4.js index a2de17e2..ecbea34f 100644 --- a/html/search/all_4.js +++ b/html/search/all_4.js @@ -1,19 +1,21 @@ var searchData= [ - ['edge_68',['Edge',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#afe8fc2aa12ac96c61c7eb213a1be60b5',1,'ostk::mathematics::geometry::d2::object::Polygon::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a2caa3ede4a8f8684fc8b62a8cdce0a57',1,'ostk::mathematics::geometry::d3::object::Cuboid::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a58c843dbce8d1d9eca6203b027477e11',1,'ostk::mathematics::geometry::d3::object::Polygon::Edge()']]], - ['eigen_2ehpp_69',['Eigen.hpp',['../_eigen_8hpp.html',1,'']]], - ['eigen_5fmatrixbase_5fplugin_70',['EIGEN_MATRIXBASE_PLUGIN',['../_vector_8hpp.html#afc792de073c9a00a2f3739a451be4312',1,'Vector.hpp']]], - ['ellipsoid_71',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html',1,'ostk::mathematics::geometry::d3::object::Ellipsoid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a770daad95f02aec5ed9e124592548152',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Ellipsoid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaeee5397cecd880d16ef7244819aa383d',1,'ostk::mathematics::geometry::d3::Intersection::Ellipsoid()']]], - ['ellipsoid_2ecpp_72',['Ellipsoid.cpp',['../_ellipsoid_8cpp.html',1,'']]], - ['ellipsoid_2ehpp_73',['Ellipsoid.hpp',['../_ellipsoid_8hpp.html',1,'']]], - ['ellipsoidgtevectorfrompoint_74',['EllipsoidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ac7819bb67f76c012bdc8c2924ccff8c6',1,'ostk::mathematics::geometry::d3::object']]], - ['ellipsoidgtevectorfromvector3d_75',['EllipsoidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0b95578c2aff528cc4d83bd900884c99',1,'ostk::mathematics::geometry::d3::object']]], - ['ellipsoidpointfromgtevector_76',['EllipsoidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a9153855848bb4b44e441d4fd8efc2195',1,'ostk::mathematics::geometry::d3::object']]], - ['empty_77',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b1d39b9c1516c2b1129957e1aaeab61',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5704d4c2404b89ef12ccf562fd48a7f5',1,'ostk::mathematics::geometry::d2::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a1c013105d818b7e58ce82ba781ad5e95',1,'ostk::mathematics::geometry::d2::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a55c60a678817302f5eedabceca6dbf43',1,'ostk::mathematics::geometry::d2::object::MultiLineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a512dbda75dd8c2143329e525c0478c47',1,'ostk::mathematics::geometry::d2::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#add4cb4f79cbc36b7de65ca88190ae011',1,'ostk::mathematics::geometry::d3::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a2d1b2de30917d5cb24843a4590c45cf4',1,'ostk::mathematics::geometry::d3::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5a7f530f442be990ea18c30032f04d45',1,'ostk::mathematics::geometry::d3::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aa973f5bcaee2c808e981ced66f60156c',1,'ostk::mathematics::geometry::d3::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d3::Intersection::Empty()']]], - ['end_78',['end',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a01d075d05560cae44d5fc4fa17f3594c',1,'ostk::mathematics::geometry::d2::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac4688c0d0f28a9627add88395df8337f',1,'ostk::mathematics::geometry::d2::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a7c91eca1a5cfcbae562a1c709b975cf5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac54e468edcaf72136cb1e93f0b73e779',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a39a4223c3ee108f0b0b07d28fa337c3b',1,'ostk::mathematics::geometry::d2::object::PointSet::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a44e8b75a9ba8fa5b92d4589ec8cfe323',1,'ostk::mathematics::geometry::d3::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1427440792919bda6cc0704fe286cd71',1,'ostk::mathematics::geometry::d3::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a4939eefd0f54e0076af40960dfe93418',1,'ostk::mathematics::geometry::d3::object::PointSet::end()']]], - ['error_5fstepper_5ftype_5f54_79',['error_stepper_type_54',['../namespaceostk_1_1mathematics_1_1solver.html#aff57be115a1ef18c0a53de6e79b00023',1,'ostk::mathematics::solver']]], - ['error_5fstepper_5ftype_5f78_80',['error_stepper_type_78',['../namespaceostk_1_1mathematics_1_1solver.html#a446382cbb767b2c1a4413b9f6f4fee34',1,'ostk::mathematics::solver']]], - ['eulerangle_2ehpp_81',['EulerAngle.hpp',['../_euler_angle_8hpp.html',1,'']]], - ['evaluate_82',['evaluate',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a0a440a296a04347ed9b4a9a22f1cf57f',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a343d5f5f554639ce936706ea75109006',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a6852a278bdd114175116ae0e875bd258',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a2f91b443473606d1236a81d24d643368',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#ac1332768995f471149cd3852b3ba2782',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a741b61d24af15b3332721b0751ec3a7a',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a2e5f87beae48daf0ebbd4da6c0fdcb77',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const VectorXd &aQueryVector) const =0'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#aae0c8423f11e7aa9f764ee4973070c36',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const double &aQueryValue) const =0']]], - ['exp_83',['exp',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['edge_69',['Edge',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#afe8fc2aa12ac96c61c7eb213a1be60b5',1,'ostk::mathematics::geometry::d2::object::Polygon::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a2caa3ede4a8f8684fc8b62a8cdce0a57',1,'ostk::mathematics::geometry::d3::object::Cuboid::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a58c843dbce8d1d9eca6203b027477e11',1,'ostk::mathematics::geometry::d3::object::Polygon::Edge()']]], + ['eigen_2ehpp_70',['Eigen.hpp',['../_eigen_8hpp.html',1,'']]], + ['eigen_5fmatrixbase_5fplugin_71',['EIGEN_MATRIXBASE_PLUGIN',['../_vector_8hpp.html#afc792de073c9a00a2f3739a451be4312',1,'Vector.hpp']]], + ['ellipsoid_72',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html',1,'ostk::mathematics::geometry::d3::object::Ellipsoid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a770daad95f02aec5ed9e124592548152',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Ellipsoid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaeee5397cecd880d16ef7244819aa383d',1,'ostk::mathematics::geometry::d3::Intersection::Ellipsoid()']]], + ['ellipsoid_2ecpp_73',['Ellipsoid.cpp',['../_ellipsoid_8cpp.html',1,'']]], + ['ellipsoid_2ehpp_74',['Ellipsoid.hpp',['../_ellipsoid_8hpp.html',1,'']]], + ['ellipsoidgtevectorfrompoint_75',['EllipsoidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ac7819bb67f76c012bdc8c2924ccff8c6',1,'ostk::mathematics::geometry::d3::object']]], + ['ellipsoidgtevectorfromvector3d_76',['EllipsoidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0b95578c2aff528cc4d83bd900884c99',1,'ostk::mathematics::geometry::d3::object']]], + ['ellipsoidpointfromgtevector_77',['EllipsoidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a9153855848bb4b44e441d4fd8efc2195',1,'ostk::mathematics::geometry::d3::object']]], + ['empty_78',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b1d39b9c1516c2b1129957e1aaeab61',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5704d4c2404b89ef12ccf562fd48a7f5',1,'ostk::mathematics::geometry::d2::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a1c013105d818b7e58ce82ba781ad5e95',1,'ostk::mathematics::geometry::d2::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a55c60a678817302f5eedabceca6dbf43',1,'ostk::mathematics::geometry::d2::object::MultiLineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a512dbda75dd8c2143329e525c0478c47',1,'ostk::mathematics::geometry::d2::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#add4cb4f79cbc36b7de65ca88190ae011',1,'ostk::mathematics::geometry::d3::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a2d1b2de30917d5cb24843a4590c45cf4',1,'ostk::mathematics::geometry::d3::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5a7f530f442be990ea18c30032f04d45',1,'ostk::mathematics::geometry::d3::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aa973f5bcaee2c808e981ced66f60156c',1,'ostk::mathematics::geometry::d3::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d3::Intersection::Empty()']]], + ['end_79',['end',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a01d075d05560cae44d5fc4fa17f3594c',1,'ostk::mathematics::geometry::d2::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac4688c0d0f28a9627add88395df8337f',1,'ostk::mathematics::geometry::d2::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a7c91eca1a5cfcbae562a1c709b975cf5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac54e468edcaf72136cb1e93f0b73e779',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a39a4223c3ee108f0b0b07d28fa337c3b',1,'ostk::mathematics::geometry::d2::object::PointSet::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a44e8b75a9ba8fa5b92d4589ec8cfe323',1,'ostk::mathematics::geometry::d3::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1427440792919bda6cc0704fe286cd71',1,'ostk::mathematics::geometry::d3::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a4939eefd0f54e0076af40960dfe93418',1,'ostk::mathematics::geometry::d3::object::PointSet::end()']]], + ['error_5fstepper_5ftype_5f54_80',['error_stepper_type_54',['../namespaceostk_1_1mathematics_1_1solver.html#aff57be115a1ef18c0a53de6e79b00023',1,'ostk::mathematics::solver']]], + ['error_5fstepper_5ftype_5f78_81',['error_stepper_type_78',['../namespaceostk_1_1mathematics_1_1solver.html#a446382cbb767b2c1a4413b9f6f4fee34',1,'ostk::mathematics::solver']]], + ['eulerangle_82',['EulerAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a7d88d303ded4e39e598cdf566796cc9e',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#aef0ee3faab6cf338e6c3fef716160378',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle(const Vector3d &aVector, const Angle::Unit &anAngleUnit, const EulerAngle::AxisSequence &anAxisSequence)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2d7a76dced15258282988935a8161cbe',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::EulerAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a17e0c181b02dd8857a0414331ac54bac',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::EulerAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#acfff1d3bbd3dc4b5998bed27cca91e7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::EulerAngle()']]], + ['eulerangle_2ecpp_83',['EulerAngle.cpp',['../_euler_angle_8cpp.html',1,'']]], + ['eulerangle_2ehpp_84',['EulerAngle.hpp',['../_euler_angle_8hpp.html',1,'']]], + ['evaluate_85',['evaluate',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a0a440a296a04347ed9b4a9a22f1cf57f',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a343d5f5f554639ce936706ea75109006',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a6852a278bdd114175116ae0e875bd258',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a2f91b443473606d1236a81d24d643368',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#ac1332768995f471149cd3852b3ba2782',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a741b61d24af15b3332721b0751ec3a7a',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a2e5f87beae48daf0ebbd4da6c0fdcb77',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const VectorXd &aQueryVector) const =0'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#aae0c8423f11e7aa9f764ee4973070c36',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const double &aQueryValue) const =0']]], + ['exp_86',['exp',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/all_5.js b/html/search/all_5.js index a046cd04..132a29bb 100644 --- a/html/search/all_5.js +++ b/html/search/all_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['format_84',['Format',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13',1,'ostk::mathematics::geometry::d2::Object::Format()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Format()']]] + ['format_87',['Format',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13',1,'ostk::mathematics::geometry::d2::Object::Format()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Format()']]] ]; diff --git a/html/search/all_6.js b/html/search/all_6.js index 07ae994a..da5d1741 100644 --- a/html/search/all_6.js +++ b/html/search/all_6.js @@ -1,75 +1,79 @@ var searchData= [ - ['generatearraywithsize_85',['generateArrayWithSize',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad84a50656e1779837cdf34e8cb8867a2',1,'ostk::mathematics::object::Interval']]], - ['generatearraywithstep_86',['generateArrayWithStep',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868',1,'ostk::mathematics::object::Interval']]], - ['generateinterpolator_87',['GenerateInterpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a41019cdd1cad7b5c5c818ff25a122536',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['getabsolutetolerance_88',['getAbsoluteTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acd9c18a1b9dc2ba8bb5605da416638dc',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getangle_89',['getAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a9ab023a205fcfdb8b12dae5aae10daad',1,'ostk::mathematics::geometry::d3::object::Cone::getAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAngle()']]], - ['getapex_90',['getApex',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#af4e2a4ec2ea977f144e7f7e9a0aed779',1,'ostk::mathematics::geometry::d3::object::Cone::getApex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a11b0783c46852783670d9d0aa82fc61a',1,'ostk::mathematics::geometry::d3::object::Pyramid::getApex()']]], - ['getaxis_91',['getAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a8089b763c1415d24136cd42b31a95fee',1,'ostk::mathematics::geometry::d3::object::Cone::getAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAxis()']]], - ['getbase_92',['getBase',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8438922f810553cb5ca34e777ef809bd',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getcenter_93',['getCenter',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7e8e8108964812282c0bd08bd8020116',1,'ostk::mathematics::geometry::d2::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7d4dde36b455d6e11a3ed9a0dbbafa01',1,'ostk::mathematics::geometry::d3::object::Cuboid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aaffdeef56c13f84501e5e303c932890a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afef142ebd804a348980d9ba1b86bc955',1,'ostk::mathematics::geometry::d3::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a02fcea7a4eaae6f396bc09e09bcc6966',1,'ostk::mathematics::geometry::d3::object::Sphere::getCenter()']]], - ['getcolumnat_94',['getColumnAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['getconvexhull_95',['getConvexHull',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a83c6178d69cbf895f4def2487cac0b06',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::getConvexHull()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a28f6ead5b5f3b2125330c318e2aee4c5',1,'ostk::mathematics::geometry::d2::object::Polygon::getConvexHull()']]], - ['getdirection_96',['getDirection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#abe689136d2b21263bfc7a0e4431a4941',1,'ostk::mathematics::geometry::d2::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9',1,'ostk::mathematics::geometry::d2::object::Segment::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac14c45f446051372e0a4dc3f4a6d514c',1,'ostk::mathematics::geometry::d3::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a5154c1a63676ebf5948aaa544a819608',1,'ostk::mathematics::geometry::d3::object::Ray::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae164dfde1de40b86054ec6b945b7e274',1,'ostk::mathematics::geometry::d3::object::Segment::getDirection()']]], - ['getedgeat_97',['getEdgeAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#accd882308127423cb544a6baa5230e0a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af2becfe7fb55b38515336f000c321b2f',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeAt()']]], - ['getedgecount_98',['getEdgeCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8899fe8a17de74160cf594c41af36d6a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a331693f8f195c7074b7eb012207d944e',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeCount()']]], - ['getedges_99',['getEdges',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad96e3314523abd27276eca0a7b16f00d',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdges()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a061e927858c6ae9e318561c9bb76f02a',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdges()']]], - ['getfirstaxis_100',['getFirstAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa1e57bae3cf58c83496484ff6943446a',1,'ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a67ec6b3fcf80a18b0dbb6521c321e003',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getFirstAxis()']]], - ['getfirstextent_101',['getFirstExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae73025b31d9a9beeb8969a3515f1f211',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getfirstpoint_102',['getFirstPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ab16e56418d2482c24971dcf678d85ec5',1,'ostk::mathematics::geometry::d2::object::Segment::getFirstPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa382709e1071932f9fbf51f6863f4ab0',1,'ostk::mathematics::geometry::d3::object::Segment::getFirstPoint()']]], - ['getfirstprincipalsemiaxis_103',['getFirstPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aee9a534a5fe0d981f240778a675592f0',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getinnerringat_104',['getInnerRingAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ae6ca3b527769f810852bf4c7a05f6b53',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getinnerringcount_105',['getInnerRingCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ab0e7337f42aace5f1032bb56bd497d77',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getinterpolationtype_106',['getInterpolationType',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a3e596528cd5e416546dabe45e9100e04',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['getintersectionwith_107',['getIntersectionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1',1,'ostk::mathematics::object::Interval']]], - ['getinverse_108',['getInverse',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a81ec04277231eb4c06a3daf04bbd5b22',1,'ostk::mathematics::geometry::d2::Transformation::getInverse()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a4d7e7f02948277935e28e089ba85d6bd',1,'ostk::mathematics::geometry::d3::Transformation::getInverse()']]], - ['getlateralfaceat_109',['getLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aca6a2bed3e225add46016583f1c3baec',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getlateralfacecount_110',['getLateralFaceCount',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aed535ef84d792822dd1105148fb76451',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getlength_111',['getLength',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a90d8233fcd492fac4a74d5715d5e3b28',1,'ostk::mathematics::geometry::d2::object::Segment::getLength()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#adf1fed29cbbb81556c3a512efcf917aa',1,'ostk::mathematics::geometry::d3::object::Segment::getLength()']]], - ['getlinestringcount_112',['getLineStringCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a307dced668e40eb38bebea36f1f66dd1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], - ['getlogtype_113',['getLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acc6274d68e4f0ec5f10089db23354a90',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getlowerbound_114',['getLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60',1,'ostk::mathematics::object::Interval']]], - ['getmatrix_115',['getMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3b523e122e6023e9416269a0bcab7367',1,'ostk::mathematics::geometry::d2::Transformation::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad28f3cc4c201d12054da52ce51bdb6a3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6581c0285a996750beb921f7138cbe09',1,'ostk::mathematics::geometry::d3::Transformation::getMatrix()']]], - ['getnormalvector_116',['getNormalVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8637b16118f31b362eb371c3550a430b',1,'ostk::mathematics::geometry::d3::object::Plane::getNormalVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a7a4c4b31702b6fce4d15b00a602ab033',1,'ostk::mathematics::geometry::d3::object::Polygon::getNormalVector()']]], - ['getobjectcount_117',['getObjectCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a823c0b72b4adcdd660b3d2eb874f0b93',1,'ostk::mathematics::geometry::d2::object::Composite::getObjectCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aeb62c71920e942368345586df194b63e',1,'ostk::mathematics::geometry::d3::object::Composite::getObjectCount()']]], - ['getobservedstatevectors_118',['getObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ac1dc63e114e85e2c733349ae7f69ed9d',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getorientation_119',['getOrientation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a68cbd49084f102aa99f9135bd0fce3db',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getorigin_120',['getOrigin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a2af43b703748a7eef22d63c7413fc85c',1,'ostk::mathematics::geometry::d2::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a9dc7e990d3dde27a6cdb332c27df0422',1,'ostk::mathematics::geometry::d3::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a2a9544f0a707b1760b0a1d52aed42623',1,'ostk::mathematics::geometry::d3::object::Polygon::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a64e20625495d9d302afe9c8edcb87ff9',1,'ostk::mathematics::geometry::d3::object::Ray::getOrigin()']]], - ['getouterring_121',['getOuterRing',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8cf439cf1110d7046b793123ac10b99d',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getpoint_122',['getPoint',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0',1,'ostk::mathematics::geometry::d3::object::Plane']]], - ['getpointarray_123',['getPointArray',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a66e45823757b2fa9a486729e02a91b94',1,'ostk::mathematics::geometry::d2::object::LineString']]], - ['getpointclosestto_124',['getPointClosestTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ae59decef7e902caadca16d171658701e',1,'ostk::mathematics::geometry::d2::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ae1e7df5d3840884839e43aa0aca5ba6b',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a9ada547e27eb625b3be37ac1f8bd5e08',1,'ostk::mathematics::geometry::d2::object::PointSet::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#acdf9a6bdfdf5e8b51c3521367d9adf35',1,'ostk::mathematics::geometry::d3::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac94914cb9c81d2fadab4e700088be7da',1,'ostk::mathematics::geometry::d3::object::PointSet::getPointClosestTo()']]], - ['getpointcount_125',['getPointCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a31ff5ebe4cb0e03f08a68218ec7723c0',1,'ostk::mathematics::geometry::d2::object::LineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af6b98286c8c872d39d8659d5672f7649',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4e68ff9a60ace16eba53c703828c07e2',1,'ostk::mathematics::geometry::d3::object::LineString::getPointCount()']]], - ['getpolygon2d_126',['getPolygon2d',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a59a5f8d88d61da7f2875b1dee2b0acae',1,'ostk::mathematics::geometry::d3::object::Polygon']]], - ['getpolygoncount_127',['getPolygonCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae9ce727a0b851951cb91cd646d745d6e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['getpolygons_128',['getPolygons',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2d3cb29e353fd52f931b4b23d9fb3236',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['getradius_129',['getRadius',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a391da737aed2cd3615f9992949c07abe',1,'ostk::mathematics::geometry::d3::object::Sphere']]], - ['getraysoflateralfaceat_130',['getRaysOfLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a83e11f308ae9cd0cdfd10a15c4c11335',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getraysoflateralfaces_131',['getRaysOfLateralFaces',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8674910a0a9b4a158c0a538c646fe971',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getraysoflateralsurface_132',['getRaysOfLateralSurface',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4531bad0aa524f19588b4458796b3f78',1,'ostk::mathematics::geometry::d3::object::Cone']]], - ['getrelativetolerance_133',['getRelativeTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af59c4d7855ecc9a757df289df56b6495',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getrowat_134',['getRowAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['getscalarpart_135',['getScalarPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['getsecondaxis_136',['getSecondAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a6faa56bfcc4ab39fc6025ca1e179227b',1,'ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a71329b4763d0b8dc247f73167e69308c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getSecondAxis()']]], - ['getsecondextent_137',['getSecondExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a469d77aeca859afb5a98af4773504ba2',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getsecondpoint_138',['getSecondPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0417919bc94c59ae23492d591514b6c9',1,'ostk::mathematics::geometry::d2::object::Segment::getSecondPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a06820598f214bcd39275d7a5b92c7247',1,'ostk::mathematics::geometry::d3::object::Segment::getSecondPoint()']]], - ['getsecondprincipalsemiaxis_139',['getSecondPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a87c58137ec69a852e079274838b1f1f5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getsignedtimestep_140',['getSignedTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a348ac983e497f1185031205dd465c588',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getsize_141',['getSize',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a5364c919ae2c9607ac6ca463588fb358',1,'ostk::mathematics::geometry::d2::object::PointSet::getSize()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#af110ae77a421e673d3ede1b39bfea608',1,'ostk::mathematics::geometry::d3::object::PointSet::getSize()']]], - ['getsteppertype_142',['getStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a520c6ba46e8033399d81c0f896fa5539',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getthirdaxis_143',['getThirdAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abdd000d8bdb9d14c3023305572347859',1,'ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5fe355055f5fdce92375fa04ff1851e9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getThirdAxis()']]], - ['getthirdextent_144',['getThirdExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a9e7aac9e658a9d647aa07d7aafb93124',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getthirdprincipalsemiaxis_145',['getThirdPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca6b3792410def0bef84025ffd981836',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['gettimestep_146',['getTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aad43791f97dfc11ac7b4dc3e97a6a786',1,'ostk::mathematics::solver::NumericalSolver']]], - ['gettype_147',['getType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad258b08bc3806cb99bb4019293b92992',1,'ostk::mathematics::geometry::d2::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ad4af5f661b7219ddac4e96de8fb4c462',1,'ostk::mathematics::geometry::d2::Transformation::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a367b3a8193c36e55d69008429349866f',1,'ostk::mathematics::geometry::d3::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac56b1e2bf4c24a55f55b22d856f5af25',1,'ostk::mathematics::geometry::d3::Transformation::getType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#aed3a6e8e931beaa732211ccb44e2c43d',1,'ostk::mathematics::object::Interval::getType()']]], - ['getunionwith_148',['getUnionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#af0b873731c1700be9b2a30d87a2aa956',1,'ostk::mathematics::object::Interval']]], - ['getunit_149',['getUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aaf5a6fca6315e78ec77c6b4bbc3dd5c9',1,'ostk::mathematics::geometry::Angle']]], - ['getupperbound_150',['getUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b',1,'ostk::mathematics::object::Interval']]], - ['getvectorpart_151',['getVectorPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['getvertexat_152',['getVertexAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a40e8429ba11bf27825295b9a4d467bf6',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a6d1e6c86c77796b38b006e60a4e42501',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexAt()']]], - ['getvertexcount_153',['getVertexCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac95bb98116f2a2f8daa00c1f128d41d9',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#abd7c3950f920132bf429342772102058',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexCount()']]], - ['getvertices_154',['getVertices',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a3308ae10e5627e0427dab164bb4b41d8',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a957659e1c2269b537c70683674ebc223',1,'ostk::mathematics::geometry::d3::object::Cuboid::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aa882c5688de60db3e90fb540f5016b65',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertices()']]], - ['getxaxis_155',['getXAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aba824d7c22a6609d103f910ec7c3d646',1,'ostk::mathematics::geometry::d3::object::Polygon']]], - ['getyaxis_156',['getYAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ae0d384044e734cc18867358ac9d690f1',1,'ostk::mathematics::geometry::d3::object::Polygon']]] + ['generatearraywithsize_88',['generateArrayWithSize',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad84a50656e1779837cdf34e8cb8867a2',1,'ostk::mathematics::object::Interval']]], + ['generatearraywithstep_89',['generateArrayWithStep',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868',1,'ostk::mathematics::object::Interval']]], + ['generateinterpolator_90',['GenerateInterpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a41019cdd1cad7b5c5c818ff25a122536',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['getabsolutetolerance_91',['getAbsoluteTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acd9c18a1b9dc2ba8bb5605da416638dc',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getangle_92',['getAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a9ab023a205fcfdb8b12dae5aae10daad',1,'ostk::mathematics::geometry::d3::object::Cone::getAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAngle()']]], + ['getapex_93',['getApex',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#af4e2a4ec2ea977f144e7f7e9a0aed779',1,'ostk::mathematics::geometry::d3::object::Cone::getApex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a11b0783c46852783670d9d0aa82fc61a',1,'ostk::mathematics::geometry::d3::object::Pyramid::getApex()']]], + ['getaxis_94',['getAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a8089b763c1415d24136cd42b31a95fee',1,'ostk::mathematics::geometry::d3::object::Cone::getAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAxis()']]], + ['getaxissequence_95',['getAxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a959afa9de94bff84008813662da769e0',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getbase_96',['getBase',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8438922f810553cb5ca34e777ef809bd',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getcenter_97',['getCenter',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7e8e8108964812282c0bd08bd8020116',1,'ostk::mathematics::geometry::d2::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7d4dde36b455d6e11a3ed9a0dbbafa01',1,'ostk::mathematics::geometry::d3::object::Cuboid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aaffdeef56c13f84501e5e303c932890a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afef142ebd804a348980d9ba1b86bc955',1,'ostk::mathematics::geometry::d3::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a02fcea7a4eaae6f396bc09e09bcc6966',1,'ostk::mathematics::geometry::d3::object::Sphere::getCenter()']]], + ['getcolumnat_98',['getColumnAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['getconvexhull_99',['getConvexHull',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a83c6178d69cbf895f4def2487cac0b06',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::getConvexHull()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a28f6ead5b5f3b2125330c318e2aee4c5',1,'ostk::mathematics::geometry::d2::object::Polygon::getConvexHull()']]], + ['getdirection_100',['getDirection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#abe689136d2b21263bfc7a0e4431a4941',1,'ostk::mathematics::geometry::d2::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9',1,'ostk::mathematics::geometry::d2::object::Segment::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac14c45f446051372e0a4dc3f4a6d514c',1,'ostk::mathematics::geometry::d3::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a5154c1a63676ebf5948aaa544a819608',1,'ostk::mathematics::geometry::d3::object::Ray::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae164dfde1de40b86054ec6b945b7e274',1,'ostk::mathematics::geometry::d3::object::Segment::getDirection()']]], + ['getedgeat_101',['getEdgeAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#accd882308127423cb544a6baa5230e0a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af2becfe7fb55b38515336f000c321b2f',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeAt()']]], + ['getedgecount_102',['getEdgeCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8899fe8a17de74160cf594c41af36d6a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a331693f8f195c7074b7eb012207d944e',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeCount()']]], + ['getedges_103',['getEdges',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad96e3314523abd27276eca0a7b16f00d',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdges()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a061e927858c6ae9e318561c9bb76f02a',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdges()']]], + ['getfirstaxis_104',['getFirstAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa1e57bae3cf58c83496484ff6943446a',1,'ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a67ec6b3fcf80a18b0dbb6521c321e003',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getFirstAxis()']]], + ['getfirstextent_105',['getFirstExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae73025b31d9a9beeb8969a3515f1f211',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getfirstpoint_106',['getFirstPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ab16e56418d2482c24971dcf678d85ec5',1,'ostk::mathematics::geometry::d2::object::Segment::getFirstPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa382709e1071932f9fbf51f6863f4ab0',1,'ostk::mathematics::geometry::d3::object::Segment::getFirstPoint()']]], + ['getfirstprincipalsemiaxis_107',['getFirstPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aee9a534a5fe0d981f240778a675592f0',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getinnerringat_108',['getInnerRingAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ae6ca3b527769f810852bf4c7a05f6b53',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getinnerringcount_109',['getInnerRingCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ab0e7337f42aace5f1032bb56bd497d77',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getinterpolationtype_110',['getInterpolationType',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a3e596528cd5e416546dabe45e9100e04',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['getintersectionwith_111',['getIntersectionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1',1,'ostk::mathematics::object::Interval']]], + ['getinverse_112',['getInverse',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a81ec04277231eb4c06a3daf04bbd5b22',1,'ostk::mathematics::geometry::d2::Transformation::getInverse()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a4d7e7f02948277935e28e089ba85d6bd',1,'ostk::mathematics::geometry::d3::Transformation::getInverse()']]], + ['getlateralfaceat_113',['getLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aca6a2bed3e225add46016583f1c3baec',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getlateralfacecount_114',['getLateralFaceCount',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aed535ef84d792822dd1105148fb76451',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getlength_115',['getLength',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a90d8233fcd492fac4a74d5715d5e3b28',1,'ostk::mathematics::geometry::d2::object::Segment::getLength()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#adf1fed29cbbb81556c3a512efcf917aa',1,'ostk::mathematics::geometry::d3::object::Segment::getLength()']]], + ['getlinestringcount_116',['getLineStringCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a307dced668e40eb38bebea36f1f66dd1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], + ['getlogtype_117',['getLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acc6274d68e4f0ec5f10089db23354a90',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getlowerbound_118',['getLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60',1,'ostk::mathematics::object::Interval']]], + ['getmatrix_119',['getMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3b523e122e6023e9416269a0bcab7367',1,'ostk::mathematics::geometry::d2::Transformation::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad28f3cc4c201d12054da52ce51bdb6a3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6581c0285a996750beb921f7138cbe09',1,'ostk::mathematics::geometry::d3::Transformation::getMatrix()']]], + ['getnormalvector_120',['getNormalVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8637b16118f31b362eb371c3550a430b',1,'ostk::mathematics::geometry::d3::object::Plane::getNormalVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a7a4c4b31702b6fce4d15b00a602ab033',1,'ostk::mathematics::geometry::d3::object::Polygon::getNormalVector()']]], + ['getobjectcount_121',['getObjectCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a823c0b72b4adcdd660b3d2eb874f0b93',1,'ostk::mathematics::geometry::d2::object::Composite::getObjectCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aeb62c71920e942368345586df194b63e',1,'ostk::mathematics::geometry::d3::object::Composite::getObjectCount()']]], + ['getobservedstatevectors_122',['getObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ac1dc63e114e85e2c733349ae7f69ed9d',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getorientation_123',['getOrientation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a68cbd49084f102aa99f9135bd0fce3db',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getorigin_124',['getOrigin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a2af43b703748a7eef22d63c7413fc85c',1,'ostk::mathematics::geometry::d2::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a9dc7e990d3dde27a6cdb332c27df0422',1,'ostk::mathematics::geometry::d3::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a2a9544f0a707b1760b0a1d52aed42623',1,'ostk::mathematics::geometry::d3::object::Polygon::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a64e20625495d9d302afe9c8edcb87ff9',1,'ostk::mathematics::geometry::d3::object::Ray::getOrigin()']]], + ['getouterring_125',['getOuterRing',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8cf439cf1110d7046b793123ac10b99d',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getphi_126',['getPhi',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6a2ec66eea87c4645cc7815c82d09d0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getpoint_127',['getPoint',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0',1,'ostk::mathematics::geometry::d3::object::Plane']]], + ['getpointarray_128',['getPointArray',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a66e45823757b2fa9a486729e02a91b94',1,'ostk::mathematics::geometry::d2::object::LineString']]], + ['getpointclosestto_129',['getPointClosestTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ae59decef7e902caadca16d171658701e',1,'ostk::mathematics::geometry::d2::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ae1e7df5d3840884839e43aa0aca5ba6b',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a9ada547e27eb625b3be37ac1f8bd5e08',1,'ostk::mathematics::geometry::d2::object::PointSet::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#acdf9a6bdfdf5e8b51c3521367d9adf35',1,'ostk::mathematics::geometry::d3::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac94914cb9c81d2fadab4e700088be7da',1,'ostk::mathematics::geometry::d3::object::PointSet::getPointClosestTo()']]], + ['getpointcount_130',['getPointCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a31ff5ebe4cb0e03f08a68218ec7723c0',1,'ostk::mathematics::geometry::d2::object::LineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af6b98286c8c872d39d8659d5672f7649',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4e68ff9a60ace16eba53c703828c07e2',1,'ostk::mathematics::geometry::d3::object::LineString::getPointCount()']]], + ['getpolygon2d_131',['getPolygon2d',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a59a5f8d88d61da7f2875b1dee2b0acae',1,'ostk::mathematics::geometry::d3::object::Polygon']]], + ['getpolygoncount_132',['getPolygonCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae9ce727a0b851951cb91cd646d745d6e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['getpolygons_133',['getPolygons',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2d3cb29e353fd52f931b4b23d9fb3236',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['getpsi_134',['getPsi',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a21bb162e148332ca5c36fe4ec1d9de58',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getradius_135',['getRadius',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a391da737aed2cd3615f9992949c07abe',1,'ostk::mathematics::geometry::d3::object::Sphere']]], + ['getraysoflateralfaceat_136',['getRaysOfLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a83e11f308ae9cd0cdfd10a15c4c11335',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getraysoflateralfaces_137',['getRaysOfLateralFaces',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8674910a0a9b4a158c0a538c646fe971',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getraysoflateralsurface_138',['getRaysOfLateralSurface',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4531bad0aa524f19588b4458796b3f78',1,'ostk::mathematics::geometry::d3::object::Cone']]], + ['getrelativetolerance_139',['getRelativeTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af59c4d7855ecc9a757df289df56b6495',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getrowat_140',['getRowAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['getscalarpart_141',['getScalarPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['getsecondaxis_142',['getSecondAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a6faa56bfcc4ab39fc6025ca1e179227b',1,'ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a71329b4763d0b8dc247f73167e69308c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getSecondAxis()']]], + ['getsecondextent_143',['getSecondExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a469d77aeca859afb5a98af4773504ba2',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getsecondpoint_144',['getSecondPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0417919bc94c59ae23492d591514b6c9',1,'ostk::mathematics::geometry::d2::object::Segment::getSecondPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a06820598f214bcd39275d7a5b92c7247',1,'ostk::mathematics::geometry::d3::object::Segment::getSecondPoint()']]], + ['getsecondprincipalsemiaxis_145',['getSecondPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a87c58137ec69a852e079274838b1f1f5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getsignedtimestep_146',['getSignedTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a348ac983e497f1185031205dd465c588',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getsize_147',['getSize',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a5364c919ae2c9607ac6ca463588fb358',1,'ostk::mathematics::geometry::d2::object::PointSet::getSize()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#af110ae77a421e673d3ede1b39bfea608',1,'ostk::mathematics::geometry::d3::object::PointSet::getSize()']]], + ['getsteppertype_148',['getStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a520c6ba46e8033399d81c0f896fa5539',1,'ostk::mathematics::solver::NumericalSolver']]], + ['gettheta_149',['getTheta',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a13a35f51cad01171184a1feb3910b68b',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getthirdaxis_150',['getThirdAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abdd000d8bdb9d14c3023305572347859',1,'ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5fe355055f5fdce92375fa04ff1851e9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getThirdAxis()']]], + ['getthirdextent_151',['getThirdExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a9e7aac9e658a9d647aa07d7aafb93124',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getthirdprincipalsemiaxis_152',['getThirdPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca6b3792410def0bef84025ffd981836',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['gettimestep_153',['getTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aad43791f97dfc11ac7b4dc3e97a6a786',1,'ostk::mathematics::solver::NumericalSolver']]], + ['gettype_154',['getType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad258b08bc3806cb99bb4019293b92992',1,'ostk::mathematics::geometry::d2::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ad4af5f661b7219ddac4e96de8fb4c462',1,'ostk::mathematics::geometry::d2::Transformation::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a367b3a8193c36e55d69008429349866f',1,'ostk::mathematics::geometry::d3::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac56b1e2bf4c24a55f55b22d856f5af25',1,'ostk::mathematics::geometry::d3::Transformation::getType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#aed3a6e8e931beaa732211ccb44e2c43d',1,'ostk::mathematics::object::Interval::getType()']]], + ['getunionwith_155',['getUnionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#af0b873731c1700be9b2a30d87a2aa956',1,'ostk::mathematics::object::Interval']]], + ['getunit_156',['getUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aaf5a6fca6315e78ec77c6b4bbc3dd5c9',1,'ostk::mathematics::geometry::Angle']]], + ['getupperbound_157',['getUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b',1,'ostk::mathematics::object::Interval']]], + ['getvectorpart_158',['getVectorPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['getvertexat_159',['getVertexAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a40e8429ba11bf27825295b9a4d467bf6',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a6d1e6c86c77796b38b006e60a4e42501',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexAt()']]], + ['getvertexcount_160',['getVertexCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac95bb98116f2a2f8daa00c1f128d41d9',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#abd7c3950f920132bf429342772102058',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexCount()']]], + ['getvertices_161',['getVertices',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a3308ae10e5627e0427dab164bb4b41d8',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a957659e1c2269b537c70683674ebc223',1,'ostk::mathematics::geometry::d3::object::Cuboid::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aa882c5688de60db3e90fb540f5016b65',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertices()']]], + ['getxaxis_162',['getXAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aba824d7c22a6609d103f910ec7c3d646',1,'ostk::mathematics::geometry::d3::object::Polygon']]], + ['getyaxis_163',['getYAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ae0d384044e734cc18867358ac9d690f1',1,'ostk::mathematics::geometry::d3::object::Polygon']]] ]; diff --git a/html/search/all_7.js b/html/search/all_7.js index c6f4e635..e0384346 100644 --- a/html/search/all_7.js +++ b/html/search/all_7.js @@ -1,7 +1,7 @@ var searchData= [ - ['halfopenleft_157',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac0553ec6683fa168ae0beb39d1a4377a',1,'ostk::mathematics::object::Interval::HalfOpenLeft()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ab5e08f9173f660e791d3ba99ff8281d7',1,'ostk::mathematics::object::IntervalBase::HalfOpenLeft()']]], - ['halfopenright_158',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac7c309f97e84496b0520879137fb26a4',1,'ostk::mathematics::object::Interval::HalfOpenRight()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a484f1b37e0208f622a1e6f7a3ff8c2c3',1,'ostk::mathematics::object::IntervalBase::HalfOpenRight()']]], - ['halfpi_159',['HalfPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3902ff6a057fc65e17b462d2d31e9cd2',1,'ostk::mathematics::geometry::Angle']]], - ['hasher_160',['Hasher',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher']]] + ['halfopenleft_164',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac0553ec6683fa168ae0beb39d1a4377a',1,'ostk::mathematics::object::Interval::HalfOpenLeft()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ab5e08f9173f660e791d3ba99ff8281d7',1,'ostk::mathematics::object::IntervalBase::HalfOpenLeft()']]], + ['halfopenright_165',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac7c309f97e84496b0520879137fb26a4',1,'ostk::mathematics::object::Interval::HalfOpenRight()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a484f1b37e0208f622a1e6f7a3ff8c2c3',1,'ostk::mathematics::object::IntervalBase::HalfOpenRight()']]], + ['halfpi_166',['HalfPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3902ff6a057fc65e17b462d2d31e9cd2',1,'ostk::mathematics::geometry::Angle']]], + ['hasher_167',['Hasher',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher']]] ]; diff --git a/html/search/all_8.js b/html/search/all_8.js index dd6e02c6..dd4116e4 100644 --- a/html/search/all_8.js +++ b/html/search/all_8.js @@ -1,37 +1,38 @@ var searchData= [ - ['identity_161',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a509eff4857f5c7e947fe3673269bc20f',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5cd654de32139306358aa773bbf8c291',1,'ostk::mathematics::geometry::d3::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9ac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]], - ['in_162',['in',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a5a4a660668c35df6cc2ad47e02727b7e',1,'ostk::mathematics::geometry::Angle']]], - ['inarcminutes_163',['inArcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2',1,'ostk::mathematics::geometry::Angle::inArcminutes() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b',1,'ostk::mathematics::geometry::Angle::inArcminutes(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inarcseconds_164',['inArcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a2a14798865b6afe512b1d21797092c84',1,'ostk::mathematics::geometry::Angle::inArcseconds() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a20aa823cd2cd954365f0daaba9e77c6d',1,'ostk::mathematics::geometry::Angle::inArcseconds(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['indegrees_165',['inDegrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a31b1cd5ca5d3ca1c5c866b0274933edb',1,'ostk::mathematics::geometry::Angle::inDegrees() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4d56166e0b2512567cedf1e4f267d29e',1,'ostk::mathematics::geometry::Angle::inDegrees(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inradians_166',['inRadians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7',1,'ostk::mathematics::geometry::Angle::inRadians() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#acfb4ab5bc33ca5bf005bcffae8c02073',1,'ostk::mathematics::geometry::Angle::inRadians(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inrevolutions_167',['inRevolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aff2915c9dfacf75a3c601688b3ab0d6b',1,'ostk::mathematics::geometry::Angle']]], - ['integrateduration_168',['integrateDuration',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a0b2c17bbe35e2cbb8a352b4736685637',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Real &aDurationInSeconds, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae8581bab9e2de3b4025c966da27a72c2',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Array< Real > &aDurationArray, const SystemOfEquationsWrapper &aSystemOfEquations)']]], - ['integratetime_169',['integrateTime',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7f9c29b8cbdb29b1e1de907a528f902d',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Array< Real > &aTimeArray, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6ca786d30c480052c195cea67f919f05',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Real &anEndTime, const SystemOfEquationsWrapper &aSystemOfEquations)']]], - ['interpolator_170',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html',1,'ostk::mathematics::curvefitting::Interpolator'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6593f90bb974214f6f2b264bc114b96e',1,'ostk::mathematics::curvefitting::Interpolator::Interpolator()']]], - ['interpolator_2ecpp_171',['Interpolator.cpp',['../_interpolator_8cpp.html',1,'']]], - ['interpolator_2ehpp_172',['Interpolator.hpp',['../_interpolator_8hpp.html',1,'']]], - ['intersection_173',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html',1,'ostk::mathematics::geometry::d2::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html',1,'ostk::mathematics::geometry::d3::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#abadbbcd1176ace347a7148ea89a0fdef',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a5078dd27fbdbff7de1eeaa0a49eaea18',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(const Intersection &anIntersection)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aa36acae0dea26436f03216212ca4d571',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a516c2bf940b353c16293f49e49064780',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(const Intersection &anIntersection)']]], - ['intersection_2ecpp_174',['Intersection.cpp',['../2_d_2_intersection_8cpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8cpp.html',1,'(Global Namespace)']]], - ['intersection_2ehpp_175',['Intersection.hpp',['../2_d_2_intersection_8hpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8hpp.html',1,'(Global Namespace)']]], - ['intersectionwith_176',['intersectionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#aeeedeff734bdf3fceae7d17dc9aa2097',1,'ostk::mathematics::geometry::d2::object::Polygon::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a17316a3b66d1459e5a152d71af82d28c',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4605abca6734c866d094f0d40d001b3f',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aff8111459bf4fd52f4890d52ef468c0a',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Sphere &aSphere, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4007f417805759277400b050391b77c9',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1fc1bdcbc9727ed2bb089fb257719827',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#afffd360837814171549e1e23ffb60b6e',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a38e0ac9992b7f2d5c7a8556dc0a1f36d',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a024aa416b981d548d3e5cc7b8a496cfe',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae4489290518d48903197556ee086c203',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5c3062e7f2f271c470821e3addbd3698',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a81a3f44b8b4a26c8c7db2fa5f1ea98c3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ac3f1b3592db2bbfb25890382a2276878',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#abcbc9b4bbcb64628471f7b233639d645',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2d6ef8385352f67912edbf2b2db7e3c2',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Cone &aCone, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8543a4010dc4847303f00afb77786378',1,'ostk::mathematics::geometry::d3::object::Line::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#abc6de4b10a4db6f07a8d0e0358d52c5c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aefbcaaa5d805230fb4414211e330beb4',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8074e08abe264931aedb9662ae818ee0',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a93113d23dee9ac80c7cba6198ce272a2',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a5ed8e14c5ca36792c887d534d446ce4f',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a71557ba02108ba09422fb3c2b2c8ed68',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a29e402d81639c9a6d094181d8c4ed1c7',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a17a3946028e0de16727f63d3f3e6f69d',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af5450d87b31c03fb1fb1ffd14547783d',1,'ostk::mathematics::geometry::d3::object::Segment::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#af155cd1d10cd5b010b134a29e6d67492',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#abfdfa4f19cb716271505c28d7085d2da',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Ray &aRay, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a66e7d89eaf128a2ee1277a605f25ab7e',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad710eeb805c0152d53dc874131f5f758',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae16d1ba9ed85bb8b7716202a651c262c',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Cone &aCone, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ac1325aba0fa3796c9ddc5d39dfe40aa6',1,'ostk::mathematics::geometry::d3::Object::intersectionWith()']]], - ['intersects_177',['intersects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a268fb26bb98a77e6ddca626901e9449e',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae79948364d0502c3b6f839ce90e00b45',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#adda17499fb10cce0898d611ec234817e',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a8f6979f55c2a971d1b7f1f7dc4b991be',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8292e74414aa470153d0bd6f0884e00d',1,'ostk::mathematics::geometry::d2::object::Polygon::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a553d7a1e388598c74d0f9fdd57d1ba9d',1,'ostk::mathematics::geometry::d2::Object::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#afb414dd80dce2ea9aad5513c8f466e94',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a5377ac1f13ee56f32d1c125a26d28a60',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a801e263af20ca039858bcecdd579ff1c',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aa08f535f31cc63cc5675f434b20617e4',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a25720e902948424afe2f04f20e17aaad',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a912567b6d352e2c74129dc3bf1338e33',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7b7213f7ee4154957c65b0c8d9fdde63',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af02af83e9c321858d2b54dfc31730aa9',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0d7ae6afa89438cb9f1676fccd400b15',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a23cf1aaedc78eb2cf1bb5b2cc1df92f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af0a08f4419d48e38793f875654bc97f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a5ebb29d0be21f18c899b255af1347d89',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0496625c9ee5edb30052b1b125fcbc64',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9b031c4f2a63121d6b5060dea2fd85dc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a8a8d5655286857611c174afd3e324d45',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae3f7633c6157c430980af3832d0a73b9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae93d460a11c18dcc589501535db52622',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a00bfb5a8d081333b080b586f4b81f8cc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad0c47ee2cbdc18795a00c72a47f83a33',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a1d17071a0fe4ae568bffcbbb3a12aeb8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a376af728b387ddc84152ad2fea9076ad',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7176ac82c4684066d3656db93673fe8c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9903921f3b39326751b64198af6e9044',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2faa83f9795b399b706480d501d78d4b',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a94c3c7588bf70c66f9ec2f170c6a4121',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aae92782ed75f744c24c48e5d47cf0545',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a1ef879a1337fedd5b458c928bfd67ee2',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ac55945830db7e46ae59bca73f4a0c800',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aa4ef1e875568bd35e5a0c502cd9576a3',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a532ab8dd1b23858a0ecba19353d1ff7f',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8c2cb7d5c1378a400dce11cb78bbe1d4',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a04c4eacdc8f5d1edd6a1ff0da1d6e0fa',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4676717f067f8fd710fc9073d0b1709d',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#ae2daf13e58b060a4085944e3c3171910',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a6f9353b78f7f3d3c8824c29a97bd172e',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a46135e8dd6b6821f0d5e137f479f8997',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aa4aea4e829d688aeaa26440f211e9218',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a72bb7ad7136e99d98c580cd5a26728b5',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#acca8f1805ebeda2a26ae27c51ec4839b',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a310c09a4a237994b6cb89de517e763a5',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a665f8e3612d42576658fcd4e1ab5090d',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#afc06f6968104f1207b1f3da7ceaae4aa',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#adbdedf8a33a33ecf34f4c8a45f365c0d',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aa26ce6b341283ea77b99207a05368a52',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a669b7ac4228e1bf40fa0ffabc3cddde9',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a26a485b4674c7f852f07652297adf8b4',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a38e7ed98b7f10761bdf7c5d87315a460',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad2c172f9ed998e785986b13bffeb6c93',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3ec429fe276d4da08dea92c56c008fc5',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3b3ce9155edeeab7fbaec2cbdde06f41',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a0d8ddc7a929bb3b0b1c70ad82742e64e',1,'ostk::mathematics::geometry::d3::Object::intersects()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808',1,'ostk::mathematics::object::Interval::intersects()']]], - ['interval_178',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html',1,'ostk::mathematics::object::Interval< T >'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525',1,'ostk::mathematics::object::Interval::Interval()']]], - ['interval_2ehpp_179',['Interval.hpp',['../_interval_8hpp.html',1,'']]], - ['interval_2etpp_180',['Interval.tpp',['../_interval_8tpp.html',1,'']]], - ['intervalbase_181',['IntervalBase',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html',1,'ostk::mathematics::object']]], - ['inverse_182',['inverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['is_183',['is',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7d961245648ef69ae55d6e4cbf24544f',1,'ostk::mathematics::geometry::d2::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a569c373be972804901329c2b2886edba',1,'ostk::mathematics::geometry::d2::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad0823d059381f54389ee417b834c9ef8',1,'ostk::mathematics::geometry::d3::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1cfbb9bdbf5c56aae7fa6496b6e7c080',1,'ostk::mathematics::geometry::d3::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ad9e6f5027d14e3c7d7bead94052611ed',1,'ostk::mathematics::geometry::d3::Object::is()']]], - ['iscomplex_184',['isComplex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af2757994e5cca200ade007991ff4f160',1,'ostk::mathematics::geometry::d2::Intersection::isComplex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a08c4ac700f904766b8625ac09f2a3281',1,'ostk::mathematics::geometry::d3::Intersection::isComplex()']]], - ['isdefined_185',['isDefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aee7e7ede2e3ea269b9b2eb091da92b8f',1,'ostk::mathematics::geometry::d2::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a8978d917810e68bb9e6b484fc97524c3',1,'ostk::mathematics::geometry::d2::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a603f1de0e328c16a829b9e1c9f5c077f',1,'ostk::mathematics::geometry::d2::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad8e472cb5b6c7fe87374a1476b8835b7',1,'ostk::mathematics::geometry::d2::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac38eacd742cd2a60eb62d03cf1234b45',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a06c0dd090011c4bc96237f46ce47e049',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5a81fa8426fe6a4be5addda02c888704',1,'ostk::mathematics::geometry::d2::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a29bfbe3e8ba8d68e4e5b2351f225f965',1,'ostk::mathematics::geometry::d2::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a81f715c35ecd0fa424f2daf4ffe59bec',1,'ostk::mathematics::geometry::d2::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a6a88d19e8e5978c2fe9eeeb88d6cf8d7',1,'ostk::mathematics::geometry::d2::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#abe5ea18c13bc259fc0da0b0c49fa0dca',1,'ostk::mathematics::geometry::d2::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a7a810c3645491c671fae1953456257c4',1,'ostk::mathematics::geometry::d2::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a960e02ae1d0b7a1a5f6871ee70b161a0',1,'ostk::mathematics::geometry::d3::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a8ccf639112d5c08aa7d2bb831072ca2f',1,'ostk::mathematics::geometry::d3::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a927c5cfa7196f425f8cd153efde8e90f',1,'ostk::mathematics::geometry::d3::object::Cone::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae9749637798c6670bb1c2b8cc2850ba8',1,'ostk::mathematics::geometry::d3::object::Cuboid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e36099693bccb2d2e68d8673d86e5f6',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ae07b5282c948df716fc1fa5bedeec344',1,'ostk::mathematics::geometry::d3::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac79b6efa23440fa61690181c6ade42ec',1,'ostk::mathematics::geometry::d3::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47',1,'ostk::mathematics::geometry::d3::object::Plane::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a151a3020d20a0ae2847f5ce99bd7ee06',1,'ostk::mathematics::geometry::d3::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a6b8187ba8b67220e7562357ad846edaa',1,'ostk::mathematics::geometry::d3::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab2e3d42d2420cd0d3029f1d14e126a6c',1,'ostk::mathematics::geometry::d3::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b85f9aa5f4b1cdf0047c8010fdb7645',1,'ostk::mathematics::geometry::d3::object::Pyramid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a402bf991d7974383a2766f12367681cd',1,'ostk::mathematics::geometry::d3::object::Ray::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a682162f29a5597e61f0eaac2f9762518',1,'ostk::mathematics::geometry::d3::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a5311446aca36ccadbd8ae323502dba44',1,'ostk::mathematics::geometry::d3::object::Sphere::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a1962edbcdde0f851361b60324ab9ce2b',1,'ostk::mathematics::geometry::d3::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a94cd6ac661f8a55d599ea9a1eaa291dd',1,'ostk::mathematics::geometry::d3::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad99d5ff3a95e93b3599248c72b631ff1',1,'ostk::mathematics::geometry::Angle::isDefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708',1,'ostk::mathematics::object::Interval::isDefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae9123dc938fbfdf8497f804adf981f37',1,'ostk::mathematics::solver::NumericalSolver::isDefined()'],['../_eigen_8hpp.html#aaa1d139fcb55b1f038ab29d736d07f3d',1,'isDefined(): Eigen.hpp']]], - ['isdegenerate_186',['isDegenerate',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ae83df71f8f42ef823a7976f78de97a3f',1,'ostk::mathematics::geometry::d2::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a26a65f0f44cbde006a084bbdc9300089',1,'ostk::mathematics::geometry::d3::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a',1,'ostk::mathematics::object::Interval::isDegenerate()']]], - ['isempty_187',['isEmpty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4908a1b0edd4fb1b77bf13051f524a70',1,'ostk::mathematics::geometry::d2::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ac4ad3c0b11203ad5c8eb3e455edaf3a2',1,'ostk::mathematics::geometry::d2::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac2a570d2617759b4e5d9e802ba9abade',1,'ostk::mathematics::geometry::d2::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af5f5a56165c38b4dc183316189038642',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ae206d0de2c96dba3162f4bcdd4218234',1,'ostk::mathematics::geometry::d2::object::PointSet::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a457c09dcf9daaf8c0ebc0af50373936c',1,'ostk::mathematics::geometry::d3::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4212e7557991ad99f9d4dfe9cbf6b703',1,'ostk::mathematics::geometry::d3::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2be7308b9a8a52f43b920b01c41c7253',1,'ostk::mathematics::geometry::d3::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ab40c84e9a4d76cf89471771c74c3126c',1,'ostk::mathematics::geometry::d3::object::PointSet::isEmpty()']]], - ['isidentity_188',['isIdentity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afc750037dcccec8a35ea8b6e959836cf',1,'ostk::mathematics::geometry::d2::Transformation::isIdentity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a8ba50a377bd868397be3fa4111dfdf0f',1,'ostk::mathematics::geometry::d3::Transformation::isIdentity()']]], - ['isinf_189',['isInf',['../_eigen_8hpp.html#afe8246e867e93283cdfac59d16941411',1,'Eigen.hpp']]], - ['isnan_190',['isNaN',['../_eigen_8hpp.html#a0f14bad11d673c61a550d48d6777eae1',1,'Eigen.hpp']]], - ['isnear_191',['isNear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a93f187300021999caf7c48efabcb3265',1,'ostk::mathematics::geometry::d2::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a98b34037dc99160c8b58f0d45f78a02c',1,'ostk::mathematics::geometry::d2::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a219b3cafbf670b88d762c402d09de243',1,'ostk::mathematics::geometry::d2::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad5d51eaab4e20905884893b79ff6bf32',1,'ostk::mathematics::geometry::d2::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae79125fb5fff0a42cdd7bf89ba8a0718',1,'ostk::mathematics::geometry::d3::object::Cuboid::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac80cff5419ed1a8cbeb2b1b6835d15ae',1,'ostk::mathematics::geometry::d3::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a509a7280634229dbbc349000f77b1f96',1,'ostk::mathematics::geometry::d3::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aedd7f0ed2b59c5a8713bc83ab2bbdee6',1,'ostk::mathematics::geometry::d3::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af6dbda995c2077e6b6865710122e39c0',1,'ostk::mathematics::geometry::d3::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isNear()'],['../_eigen_8hpp.html#add00b5fa2f33935acb910760aeea837c',1,'isNear(): Eigen.hpp']]], - ['isrigid_192',['isRigid',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a35e8e5478a46bdab58808ef63efc4f77',1,'ostk::mathematics::geometry::d2::Transformation::isRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac948a75534e57432e32a747b8340efe1',1,'ostk::mathematics::geometry::d3::Transformation::isRigid() const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a2b247dc8cec2489b61e3a6ec943dc12e',1,'ostk::mathematics::geometry::d3::Transformation::IsRigid(const Matrix4d &aMatrix)']]], - ['isunitary_193',['isUnitary',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a9dbed5ac4eec1c9a79eedf5408191021',1,'ostk::mathematics::geometry::d3::object::Sphere::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isUnitary()']]], - ['iszero_194',['isZero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342',1,'ostk::mathematics::geometry::Angle']]] + ['identity_168',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a509eff4857f5c7e947fe3673269bc20f',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5cd654de32139306358aa773bbf8c291',1,'ostk::mathematics::geometry::d3::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9ac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]], + ['in_169',['in',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a5a4a660668c35df6cc2ad47e02727b7e',1,'ostk::mathematics::geometry::Angle']]], + ['inarcminutes_170',['inArcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2',1,'ostk::mathematics::geometry::Angle::inArcminutes() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b',1,'ostk::mathematics::geometry::Angle::inArcminutes(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inarcseconds_171',['inArcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a2a14798865b6afe512b1d21797092c84',1,'ostk::mathematics::geometry::Angle::inArcseconds() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a20aa823cd2cd954365f0daaba9e77c6d',1,'ostk::mathematics::geometry::Angle::inArcseconds(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['indegrees_172',['inDegrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a31b1cd5ca5d3ca1c5c866b0274933edb',1,'ostk::mathematics::geometry::Angle::inDegrees() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4d56166e0b2512567cedf1e4f267d29e',1,'ostk::mathematics::geometry::Angle::inDegrees(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inradians_173',['inRadians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7',1,'ostk::mathematics::geometry::Angle::inRadians() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#acfb4ab5bc33ca5bf005bcffae8c02073',1,'ostk::mathematics::geometry::Angle::inRadians(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inrevolutions_174',['inRevolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aff2915c9dfacf75a3c601688b3ab0d6b',1,'ostk::mathematics::geometry::Angle']]], + ['integrateduration_175',['integrateDuration',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a0b2c17bbe35e2cbb8a352b4736685637',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Real &aDurationInSeconds, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae8581bab9e2de3b4025c966da27a72c2',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Array< Real > &aDurationArray, const SystemOfEquationsWrapper &aSystemOfEquations)']]], + ['integratetime_176',['integrateTime',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7f9c29b8cbdb29b1e1de907a528f902d',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Array< Real > &aTimeArray, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6ca786d30c480052c195cea67f919f05',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Real &anEndTime, const SystemOfEquationsWrapper &aSystemOfEquations)']]], + ['interpolator_177',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html',1,'ostk::mathematics::curvefitting::Interpolator'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6593f90bb974214f6f2b264bc114b96e',1,'ostk::mathematics::curvefitting::Interpolator::Interpolator()']]], + ['interpolator_2ecpp_178',['Interpolator.cpp',['../_interpolator_8cpp.html',1,'']]], + ['interpolator_2ehpp_179',['Interpolator.hpp',['../_interpolator_8hpp.html',1,'']]], + ['intersection_180',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html',1,'ostk::mathematics::geometry::d2::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html',1,'ostk::mathematics::geometry::d3::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#abadbbcd1176ace347a7148ea89a0fdef',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a5078dd27fbdbff7de1eeaa0a49eaea18',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(const Intersection &anIntersection)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aa36acae0dea26436f03216212ca4d571',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a516c2bf940b353c16293f49e49064780',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(const Intersection &anIntersection)']]], + ['intersection_2ecpp_181',['Intersection.cpp',['../2_d_2_intersection_8cpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8cpp.html',1,'(Global Namespace)']]], + ['intersection_2ehpp_182',['Intersection.hpp',['../2_d_2_intersection_8hpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8hpp.html',1,'(Global Namespace)']]], + ['intersectionwith_183',['intersectionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#aeeedeff734bdf3fceae7d17dc9aa2097',1,'ostk::mathematics::geometry::d2::object::Polygon::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a17316a3b66d1459e5a152d71af82d28c',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4605abca6734c866d094f0d40d001b3f',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aff8111459bf4fd52f4890d52ef468c0a',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Sphere &aSphere, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4007f417805759277400b050391b77c9',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1fc1bdcbc9727ed2bb089fb257719827',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#afffd360837814171549e1e23ffb60b6e',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a38e0ac9992b7f2d5c7a8556dc0a1f36d',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a024aa416b981d548d3e5cc7b8a496cfe',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae4489290518d48903197556ee086c203',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5c3062e7f2f271c470821e3addbd3698',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a81a3f44b8b4a26c8c7db2fa5f1ea98c3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ac3f1b3592db2bbfb25890382a2276878',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#abcbc9b4bbcb64628471f7b233639d645',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2d6ef8385352f67912edbf2b2db7e3c2',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Cone &aCone, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8543a4010dc4847303f00afb77786378',1,'ostk::mathematics::geometry::d3::object::Line::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#abc6de4b10a4db6f07a8d0e0358d52c5c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aefbcaaa5d805230fb4414211e330beb4',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8074e08abe264931aedb9662ae818ee0',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a93113d23dee9ac80c7cba6198ce272a2',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a5ed8e14c5ca36792c887d534d446ce4f',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a71557ba02108ba09422fb3c2b2c8ed68',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a29e402d81639c9a6d094181d8c4ed1c7',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a17a3946028e0de16727f63d3f3e6f69d',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af5450d87b31c03fb1fb1ffd14547783d',1,'ostk::mathematics::geometry::d3::object::Segment::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#af155cd1d10cd5b010b134a29e6d67492',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#abfdfa4f19cb716271505c28d7085d2da',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Ray &aRay, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a66e7d89eaf128a2ee1277a605f25ab7e',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad710eeb805c0152d53dc874131f5f758',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae16d1ba9ed85bb8b7716202a651c262c',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Cone &aCone, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ac1325aba0fa3796c9ddc5d39dfe40aa6',1,'ostk::mathematics::geometry::d3::Object::intersectionWith()']]], + ['intersects_184',['intersects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a268fb26bb98a77e6ddca626901e9449e',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae79948364d0502c3b6f839ce90e00b45',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#adda17499fb10cce0898d611ec234817e',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a8f6979f55c2a971d1b7f1f7dc4b991be',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8292e74414aa470153d0bd6f0884e00d',1,'ostk::mathematics::geometry::d2::object::Polygon::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a553d7a1e388598c74d0f9fdd57d1ba9d',1,'ostk::mathematics::geometry::d2::Object::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#afb414dd80dce2ea9aad5513c8f466e94',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a5377ac1f13ee56f32d1c125a26d28a60',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a801e263af20ca039858bcecdd579ff1c',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aa08f535f31cc63cc5675f434b20617e4',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a25720e902948424afe2f04f20e17aaad',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a912567b6d352e2c74129dc3bf1338e33',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7b7213f7ee4154957c65b0c8d9fdde63',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af02af83e9c321858d2b54dfc31730aa9',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0d7ae6afa89438cb9f1676fccd400b15',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a23cf1aaedc78eb2cf1bb5b2cc1df92f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af0a08f4419d48e38793f875654bc97f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a5ebb29d0be21f18c899b255af1347d89',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0496625c9ee5edb30052b1b125fcbc64',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9b031c4f2a63121d6b5060dea2fd85dc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a8a8d5655286857611c174afd3e324d45',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae3f7633c6157c430980af3832d0a73b9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae93d460a11c18dcc589501535db52622',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a00bfb5a8d081333b080b586f4b81f8cc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad0c47ee2cbdc18795a00c72a47f83a33',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a1d17071a0fe4ae568bffcbbb3a12aeb8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a376af728b387ddc84152ad2fea9076ad',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7176ac82c4684066d3656db93673fe8c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9903921f3b39326751b64198af6e9044',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2faa83f9795b399b706480d501d78d4b',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a94c3c7588bf70c66f9ec2f170c6a4121',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aae92782ed75f744c24c48e5d47cf0545',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a1ef879a1337fedd5b458c928bfd67ee2',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ac55945830db7e46ae59bca73f4a0c800',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aa4ef1e875568bd35e5a0c502cd9576a3',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a532ab8dd1b23858a0ecba19353d1ff7f',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8c2cb7d5c1378a400dce11cb78bbe1d4',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a04c4eacdc8f5d1edd6a1ff0da1d6e0fa',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4676717f067f8fd710fc9073d0b1709d',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#ae2daf13e58b060a4085944e3c3171910',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a6f9353b78f7f3d3c8824c29a97bd172e',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a46135e8dd6b6821f0d5e137f479f8997',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aa4aea4e829d688aeaa26440f211e9218',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a72bb7ad7136e99d98c580cd5a26728b5',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#acca8f1805ebeda2a26ae27c51ec4839b',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a310c09a4a237994b6cb89de517e763a5',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a665f8e3612d42576658fcd4e1ab5090d',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#afc06f6968104f1207b1f3da7ceaae4aa',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#adbdedf8a33a33ecf34f4c8a45f365c0d',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aa26ce6b341283ea77b99207a05368a52',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a669b7ac4228e1bf40fa0ffabc3cddde9',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a26a485b4674c7f852f07652297adf8b4',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a38e7ed98b7f10761bdf7c5d87315a460',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad2c172f9ed998e785986b13bffeb6c93',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3ec429fe276d4da08dea92c56c008fc5',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3b3ce9155edeeab7fbaec2cbdde06f41',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a0d8ddc7a929bb3b0b1c70ad82742e64e',1,'ostk::mathematics::geometry::d3::Object::intersects()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808',1,'ostk::mathematics::object::Interval::intersects()']]], + ['interval_185',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html',1,'ostk::mathematics::object::Interval< T >'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525',1,'ostk::mathematics::object::Interval::Interval()']]], + ['interval_2ehpp_186',['Interval.hpp',['../_interval_8hpp.html',1,'']]], + ['interval_2etpp_187',['Interval.tpp',['../_interval_8tpp.html',1,'']]], + ['intervalbase_188',['IntervalBase',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html',1,'ostk::mathematics::object']]], + ['inverse_189',['inverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['is_190',['is',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7d961245648ef69ae55d6e4cbf24544f',1,'ostk::mathematics::geometry::d2::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a569c373be972804901329c2b2886edba',1,'ostk::mathematics::geometry::d2::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad0823d059381f54389ee417b834c9ef8',1,'ostk::mathematics::geometry::d3::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1cfbb9bdbf5c56aae7fa6496b6e7c080',1,'ostk::mathematics::geometry::d3::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ad9e6f5027d14e3c7d7bead94052611ed',1,'ostk::mathematics::geometry::d3::Object::is()']]], + ['iscomplex_191',['isComplex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af2757994e5cca200ade007991ff4f160',1,'ostk::mathematics::geometry::d2::Intersection::isComplex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a08c4ac700f904766b8625ac09f2a3281',1,'ostk::mathematics::geometry::d3::Intersection::isComplex()']]], + ['isdefined_192',['isDefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aee7e7ede2e3ea269b9b2eb091da92b8f',1,'ostk::mathematics::geometry::d2::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a8978d917810e68bb9e6b484fc97524c3',1,'ostk::mathematics::geometry::d2::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a603f1de0e328c16a829b9e1c9f5c077f',1,'ostk::mathematics::geometry::d2::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad8e472cb5b6c7fe87374a1476b8835b7',1,'ostk::mathematics::geometry::d2::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac38eacd742cd2a60eb62d03cf1234b45',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a06c0dd090011c4bc96237f46ce47e049',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5a81fa8426fe6a4be5addda02c888704',1,'ostk::mathematics::geometry::d2::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a29bfbe3e8ba8d68e4e5b2351f225f965',1,'ostk::mathematics::geometry::d2::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a81f715c35ecd0fa424f2daf4ffe59bec',1,'ostk::mathematics::geometry::d2::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a6a88d19e8e5978c2fe9eeeb88d6cf8d7',1,'ostk::mathematics::geometry::d2::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#abe5ea18c13bc259fc0da0b0c49fa0dca',1,'ostk::mathematics::geometry::d2::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a7a810c3645491c671fae1953456257c4',1,'ostk::mathematics::geometry::d2::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a960e02ae1d0b7a1a5f6871ee70b161a0',1,'ostk::mathematics::geometry::d3::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a8ccf639112d5c08aa7d2bb831072ca2f',1,'ostk::mathematics::geometry::d3::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a927c5cfa7196f425f8cd153efde8e90f',1,'ostk::mathematics::geometry::d3::object::Cone::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae9749637798c6670bb1c2b8cc2850ba8',1,'ostk::mathematics::geometry::d3::object::Cuboid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e36099693bccb2d2e68d8673d86e5f6',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ae07b5282c948df716fc1fa5bedeec344',1,'ostk::mathematics::geometry::d3::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac79b6efa23440fa61690181c6ade42ec',1,'ostk::mathematics::geometry::d3::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47',1,'ostk::mathematics::geometry::d3::object::Plane::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a151a3020d20a0ae2847f5ce99bd7ee06',1,'ostk::mathematics::geometry::d3::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a6b8187ba8b67220e7562357ad846edaa',1,'ostk::mathematics::geometry::d3::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab2e3d42d2420cd0d3029f1d14e126a6c',1,'ostk::mathematics::geometry::d3::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b85f9aa5f4b1cdf0047c8010fdb7645',1,'ostk::mathematics::geometry::d3::object::Pyramid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a402bf991d7974383a2766f12367681cd',1,'ostk::mathematics::geometry::d3::object::Ray::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a682162f29a5597e61f0eaac2f9762518',1,'ostk::mathematics::geometry::d3::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a5311446aca36ccadbd8ae323502dba44',1,'ostk::mathematics::geometry::d3::object::Sphere::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a1962edbcdde0f851361b60324ab9ce2b',1,'ostk::mathematics::geometry::d3::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5140298e4d18f9b63fe1791e2785938c',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a94cd6ac661f8a55d599ea9a1eaa291dd',1,'ostk::mathematics::geometry::d3::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad99d5ff3a95e93b3599248c72b631ff1',1,'ostk::mathematics::geometry::Angle::isDefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708',1,'ostk::mathematics::object::Interval::isDefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae9123dc938fbfdf8497f804adf981f37',1,'ostk::mathematics::solver::NumericalSolver::isDefined()'],['../_eigen_8hpp.html#aaa1d139fcb55b1f038ab29d736d07f3d',1,'isDefined(): Eigen.hpp']]], + ['isdegenerate_193',['isDegenerate',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ae83df71f8f42ef823a7976f78de97a3f',1,'ostk::mathematics::geometry::d2::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a26a65f0f44cbde006a084bbdc9300089',1,'ostk::mathematics::geometry::d3::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a',1,'ostk::mathematics::object::Interval::isDegenerate()']]], + ['isempty_194',['isEmpty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4908a1b0edd4fb1b77bf13051f524a70',1,'ostk::mathematics::geometry::d2::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ac4ad3c0b11203ad5c8eb3e455edaf3a2',1,'ostk::mathematics::geometry::d2::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac2a570d2617759b4e5d9e802ba9abade',1,'ostk::mathematics::geometry::d2::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af5f5a56165c38b4dc183316189038642',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ae206d0de2c96dba3162f4bcdd4218234',1,'ostk::mathematics::geometry::d2::object::PointSet::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a457c09dcf9daaf8c0ebc0af50373936c',1,'ostk::mathematics::geometry::d3::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4212e7557991ad99f9d4dfe9cbf6b703',1,'ostk::mathematics::geometry::d3::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2be7308b9a8a52f43b920b01c41c7253',1,'ostk::mathematics::geometry::d3::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ab40c84e9a4d76cf89471771c74c3126c',1,'ostk::mathematics::geometry::d3::object::PointSet::isEmpty()']]], + ['isidentity_195',['isIdentity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afc750037dcccec8a35ea8b6e959836cf',1,'ostk::mathematics::geometry::d2::Transformation::isIdentity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a8ba50a377bd868397be3fa4111dfdf0f',1,'ostk::mathematics::geometry::d3::Transformation::isIdentity()']]], + ['isinf_196',['isInf',['../_eigen_8hpp.html#afe8246e867e93283cdfac59d16941411',1,'Eigen.hpp']]], + ['isnan_197',['isNaN',['../_eigen_8hpp.html#a0f14bad11d673c61a550d48d6777eae1',1,'Eigen.hpp']]], + ['isnear_198',['isNear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a93f187300021999caf7c48efabcb3265',1,'ostk::mathematics::geometry::d2::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a98b34037dc99160c8b58f0d45f78a02c',1,'ostk::mathematics::geometry::d2::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a219b3cafbf670b88d762c402d09de243',1,'ostk::mathematics::geometry::d2::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad5d51eaab4e20905884893b79ff6bf32',1,'ostk::mathematics::geometry::d2::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae79125fb5fff0a42cdd7bf89ba8a0718',1,'ostk::mathematics::geometry::d3::object::Cuboid::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac80cff5419ed1a8cbeb2b1b6835d15ae',1,'ostk::mathematics::geometry::d3::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a509a7280634229dbbc349000f77b1f96',1,'ostk::mathematics::geometry::d3::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aedd7f0ed2b59c5a8713bc83ab2bbdee6',1,'ostk::mathematics::geometry::d3::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af6dbda995c2077e6b6865710122e39c0',1,'ostk::mathematics::geometry::d3::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ab25e5b93b6cff6716c08d5b9de4ab2c5',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a93759a5dc36449aaa68d749d270fa736',1,'ostk::mathematics::geometry::Angle::isNear()'],['../_eigen_8hpp.html#add00b5fa2f33935acb910760aeea837c',1,'isNear(): Eigen.hpp']]], + ['isnegative_199',['isNegative',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a80267bbfcf53ac84f70e8c64c0ae4162',1,'ostk::mathematics::geometry::Angle']]], + ['isrigid_200',['IsRigid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a2b247dc8cec2489b61e3a6ec943dc12e',1,'ostk::mathematics::geometry::d3::Transformation::IsRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a35e8e5478a46bdab58808ef63efc4f77',1,'ostk::mathematics::geometry::d2::Transformation::isRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac948a75534e57432e32a747b8340efe1',1,'ostk::mathematics::geometry::d3::Transformation::isRigid()']]], + ['isunitary_201',['isUnitary',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a9dbed5ac4eec1c9a79eedf5408191021',1,'ostk::mathematics::geometry::d3::object::Sphere::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a75a6bd4f088b43ba2f9e7a9a1a963e64',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isUnitary()']]], + ['iszero_202',['isZero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/all_9.js b/html/search/all_9.js index 4e497c2d..12e5e8d7 100644 --- a/html/search/all_9.js +++ b/html/search/all_9.js @@ -1,18 +1,18 @@ var searchData= [ - ['lerp_195',['LERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a106daf1df7b2ee91f1ef3fb0338c8c1a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['line_196',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d2::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d3::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4981da070b5400c1546f0014000c968a',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a0a22b94b232fca62ec257f90f3329431',1,'ostk::mathematics::geometry::d2::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a74e48bb7378d4d8780406edb1b6d70db',1,'ostk::mathematics::geometry::d3::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aa953f89b8b41699dc8f14a465e2ef6b8',1,'ostk::mathematics::geometry::d3::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d3::Intersection::Line()']]], - ['line_2ecpp_197',['Line.cpp',['../2_d_2_object_2_line_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8cpp.html',1,'(Global Namespace)']]], - ['line_2ehpp_198',['Line.hpp',['../2_d_2_object_2_line_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8hpp.html',1,'(Global Namespace)']]], - ['linear_199',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html',1,'ostk::mathematics::curvefitting::interpolator::Linear'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a66f13250b306128dacc988a56961eda8',1,'ostk::mathematics::curvefitting::interpolator::Linear::Linear()'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a32a843da6ea40ab3b17a3421ccdf671b',1,'ostk::mathematics::curvefitting::Interpolator::Linear()']]], - ['linear_2ecpp_200',['Linear.cpp',['../_linear_8cpp.html',1,'']]], - ['linear_2ehpp_201',['Linear.hpp',['../_linear_8hpp.html',1,'']]], - ['linestring_202',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d3::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d2::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a2ecaccd9004396a2c0552ee3459a73a0',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#af664c958b514884a3889eab433c5482d',1,'ostk::mathematics::geometry::d2::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a6f94954fba394952d087e6a2339c356a',1,'ostk::mathematics::geometry::d3::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1cbd0b1900eded1596378ba9a65b4e4e',1,'ostk::mathematics::geometry::d3::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d3::Intersection::LineString()']]], - ['linestring_2ecpp_203',['LineString.cpp',['../2_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)']]], - ['linestring_2ehpp_204',['LineString.hpp',['../2_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)']]], - ['log_205',['log',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['logadaptive_206',['LogAdaptive',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5aa412149ee02d5aaab7f9f710b2e39c5e',1,'ostk::mathematics::solver::NumericalSolver']]], - ['logconstant_207',['LogConstant',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5a40b79e6f53444b0a01aa353abfd9fe91',1,'ostk::mathematics::solver::NumericalSolver']]], - ['logtype_208',['LogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5',1,'ostk::mathematics::solver::NumericalSolver']]], - ['logtype_5f_209',['logType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7e2b0144bf211d31e61aa932ee900ba1',1,'ostk::mathematics::solver::NumericalSolver']]] + ['lerp_203',['LERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a106daf1df7b2ee91f1ef3fb0338c8c1a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['line_204',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d2::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d3::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4981da070b5400c1546f0014000c968a',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a0a22b94b232fca62ec257f90f3329431',1,'ostk::mathematics::geometry::d2::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a74e48bb7378d4d8780406edb1b6d70db',1,'ostk::mathematics::geometry::d3::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aa953f89b8b41699dc8f14a465e2ef6b8',1,'ostk::mathematics::geometry::d3::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d3::Intersection::Line()']]], + ['line_2ecpp_205',['Line.cpp',['../2_d_2_object_2_line_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8cpp.html',1,'(Global Namespace)']]], + ['line_2ehpp_206',['Line.hpp',['../2_d_2_object_2_line_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8hpp.html',1,'(Global Namespace)']]], + ['linear_207',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html',1,'ostk::mathematics::curvefitting::interpolator::Linear'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a66f13250b306128dacc988a56961eda8',1,'ostk::mathematics::curvefitting::interpolator::Linear::Linear()'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a32a843da6ea40ab3b17a3421ccdf671b',1,'ostk::mathematics::curvefitting::Interpolator::Linear()']]], + ['linear_2ecpp_208',['Linear.cpp',['../_linear_8cpp.html',1,'']]], + ['linear_2ehpp_209',['Linear.hpp',['../_linear_8hpp.html',1,'']]], + ['linestring_210',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d3::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d2::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a2ecaccd9004396a2c0552ee3459a73a0',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#af664c958b514884a3889eab433c5482d',1,'ostk::mathematics::geometry::d2::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a6f94954fba394952d087e6a2339c356a',1,'ostk::mathematics::geometry::d3::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1cbd0b1900eded1596378ba9a65b4e4e',1,'ostk::mathematics::geometry::d3::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d3::Intersection::LineString()']]], + ['linestring_2ecpp_211',['LineString.cpp',['../2_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)']]], + ['linestring_2ehpp_212',['LineString.hpp',['../2_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)']]], + ['log_213',['log',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['logadaptive_214',['LogAdaptive',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5aa412149ee02d5aaab7f9f710b2e39c5e',1,'ostk::mathematics::solver::NumericalSolver']]], + ['logconstant_215',['LogConstant',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5a40b79e6f53444b0a01aa353abfd9fe91',1,'ostk::mathematics::solver::NumericalSolver']]], + ['logtype_216',['LogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5',1,'ostk::mathematics::solver::NumericalSolver']]], + ['logtype_5f_217',['logType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7e2b0144bf211d31e61aa932ee900ba1',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/all_a.js b/html/search/all_a.js index f43fd481..545bbb07 100644 --- a/html/search/all_a.js +++ b/html/search/all_a.js @@ -1,18 +1,18 @@ var searchData= [ - ['matrix_2ecpp_210',['Matrix.cpp',['../_matrix_8cpp.html',1,'']]], - ['matrix_2ehpp_211',['Matrix.hpp',['../_matrix_8hpp.html',1,'']]], - ['matrix2d_212',['Matrix2d',['../namespaceostk_1_1mathematics_1_1object.html#a641962167e941239dfe860ff39dbf0e1',1,'ostk::mathematics::object']]], - ['matrix2i_213',['Matrix2i',['../namespaceostk_1_1mathematics_1_1object.html#a212c24ca74a37794559bcaa69549137e',1,'ostk::mathematics::object']]], - ['matrix3d_214',['Matrix3d',['../namespaceostk_1_1mathematics_1_1object.html#a9f8f6a9f4bd331fb6bc0c66a1aca5e30',1,'ostk::mathematics::object']]], - ['matrix3i_215',['Matrix3i',['../namespaceostk_1_1mathematics_1_1object.html#a0da6ed3d3407ebd2c38b982398b90e14',1,'ostk::mathematics::object']]], - ['matrix4d_216',['Matrix4d',['../namespaceostk_1_1mathematics_1_1object.html#adadb22c2eddff1e58abea07ad5cd2b78',1,'ostk::mathematics::object']]], - ['matrix4i_217',['Matrix4i',['../namespaceostk_1_1mathematics_1_1object.html#a2fa26d8f4a7f3ac9ac4a0c97dc547f8c',1,'ostk::mathematics::object']]], - ['matrixxd_218',['MatrixXd',['../namespaceostk_1_1mathematics_1_1object.html#a8be483f9d27b70e9009978332171b614',1,'ostk::mathematics::object']]], - ['matrixxi_219',['MatrixXi',['../namespaceostk_1_1mathematics_1_1object.html#a3fccc42715b83350a30545c3b45ba35f',1,'ostk::mathematics::object']]], - ['multilinestring_220',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html',1,'ostk::mathematics::geometry::d2::object::MultiLineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2be4b3e1608f466d294ef5884684bab1',1,'ostk::mathematics::geometry::d2::object::MultiLineString::MultiLineString()']]], - ['multilinestring_2ehpp_221',['MultiLineString.hpp',['../_multi_line_string_8hpp.html',1,'']]], - ['multipolygon_222',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html',1,'ostk::mathematics::geometry::d2::object::MultiPolygon'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a387e29bd423e834d10e30d1b55e4a2d7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const Array< Polygon2d > &aPolygonArray=Array< Polygon2d >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a255ed57cc7b1617df7ee07277d3efd66',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const MultiPolygon &aMultiPolygon)']]], - ['multipolygon_2ecpp_223',['MultiPolygon.cpp',['../_multi_polygon_8cpp.html',1,'']]], - ['multipolygon_2ehpp_224',['MultiPolygon.hpp',['../_multi_polygon_8hpp.html',1,'']]] + ['matrix_2ecpp_218',['Matrix.cpp',['../_matrix_8cpp.html',1,'']]], + ['matrix_2ehpp_219',['Matrix.hpp',['../_matrix_8hpp.html',1,'']]], + ['matrix2d_220',['Matrix2d',['../namespaceostk_1_1mathematics_1_1object.html#a641962167e941239dfe860ff39dbf0e1',1,'ostk::mathematics::object']]], + ['matrix2i_221',['Matrix2i',['../namespaceostk_1_1mathematics_1_1object.html#a212c24ca74a37794559bcaa69549137e',1,'ostk::mathematics::object']]], + ['matrix3d_222',['Matrix3d',['../namespaceostk_1_1mathematics_1_1object.html#a9f8f6a9f4bd331fb6bc0c66a1aca5e30',1,'ostk::mathematics::object']]], + ['matrix3i_223',['Matrix3i',['../namespaceostk_1_1mathematics_1_1object.html#a0da6ed3d3407ebd2c38b982398b90e14',1,'ostk::mathematics::object']]], + ['matrix4d_224',['Matrix4d',['../namespaceostk_1_1mathematics_1_1object.html#adadb22c2eddff1e58abea07ad5cd2b78',1,'ostk::mathematics::object']]], + ['matrix4i_225',['Matrix4i',['../namespaceostk_1_1mathematics_1_1object.html#a2fa26d8f4a7f3ac9ac4a0c97dc547f8c',1,'ostk::mathematics::object']]], + ['matrixxd_226',['MatrixXd',['../namespaceostk_1_1mathematics_1_1object.html#a8be483f9d27b70e9009978332171b614',1,'ostk::mathematics::object']]], + ['matrixxi_227',['MatrixXi',['../namespaceostk_1_1mathematics_1_1object.html#a3fccc42715b83350a30545c3b45ba35f',1,'ostk::mathematics::object']]], + ['multilinestring_228',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html',1,'ostk::mathematics::geometry::d2::object::MultiLineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2be4b3e1608f466d294ef5884684bab1',1,'ostk::mathematics::geometry::d2::object::MultiLineString::MultiLineString()']]], + ['multilinestring_2ehpp_229',['MultiLineString.hpp',['../_multi_line_string_8hpp.html',1,'']]], + ['multipolygon_230',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html',1,'ostk::mathematics::geometry::d2::object::MultiPolygon'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a387e29bd423e834d10e30d1b55e4a2d7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const Array< Polygon2d > &aPolygonArray=Array< Polygon2d >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a255ed57cc7b1617df7ee07277d3efd66',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const MultiPolygon &aMultiPolygon)']]], + ['multipolygon_2ecpp_231',['MultiPolygon.cpp',['../_multi_polygon_8cpp.html',1,'']]], + ['multipolygon_2ehpp_232',['MultiPolygon.hpp',['../_multi_polygon_8hpp.html',1,'']]] ]; diff --git a/html/search/all_b.js b/html/search/all_b.js index 5ecff9d1..615b5a99 100644 --- a/html/search/all_b.js +++ b/html/search/all_b.js @@ -1,9 +1,10 @@ var searchData= [ - ['nlerp_225',['NLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a896500b99a8ab9cf38bc7f402001d41b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['nolog_226',['NoLog',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5ac224e58a49e83bb9b94e2bd594fd5231',1,'ostk::mathematics::solver::NumericalSolver']]], - ['normalize_227',['normalize',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['numericalsolver_228',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html',1,'ostk::mathematics::solver::NumericalSolver'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1c5fd12a2d545bf7d090d992ffcbe17e',1,'ostk::mathematics::solver::NumericalSolver::NumericalSolver()']]], - ['numericalsolver_2ecpp_229',['NumericalSolver.cpp',['../_numerical_solver_8cpp.html',1,'']]], - ['numericalsolver_2ehpp_230',['NumericalSolver.hpp',['../_numerical_solver_8hpp.html',1,'']]] + ['nlerp_233',['NLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a896500b99a8ab9cf38bc7f402001d41b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['nolog_234',['NoLog',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5ac224e58a49e83bb9b94e2bd594fd5231',1,'ostk::mathematics::solver::NumericalSolver']]], + ['norm_235',['norm',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adac286e89986a4dc8cd2791c96bcb979',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['normalize_236',['normalize',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['numericalsolver_237',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html',1,'ostk::mathematics::solver::NumericalSolver'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1c5fd12a2d545bf7d090d992ffcbe17e',1,'ostk::mathematics::solver::NumericalSolver::NumericalSolver()']]], + ['numericalsolver_2ecpp_238',['NumericalSolver.cpp',['../_numerical_solver_8cpp.html',1,'']]], + ['numericalsolver_2ehpp_239',['NumericalSolver.hpp',['../_numerical_solver_8hpp.html',1,'']]] ]; diff --git a/html/search/all_c.js b/html/search/all_c.js index db15fc58..f5c47eb6 100644 --- a/html/search/all_c.js +++ b/html/search/all_c.js @@ -1,33 +1,33 @@ var searchData= [ - ['curvefitting_231',['curvefitting',['../namespaceostk_1_1mathematics_1_1curvefitting.html',1,'ostk::mathematics']]], - ['d2_232',['d2',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html',1,'ostk::mathematics::geometry']]], - ['d3_233',['d3',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html',1,'ostk::mathematics::geometry']]], - ['geometry_234',['geometry',['../namespaceostk_1_1mathematics_1_1geometry.html',1,'ostk::mathematics']]], - ['open_20space_20toolkit_20â–¸_20mathematics_235',['Open Space Toolkit â–¸ Mathematics',['../index.html',1,'']]], - ['interpolator_236',['interpolator',['../namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html',1,'ostk::mathematics::curvefitting']]], - ['mathematics_237',['mathematics',['../namespaceostk_1_1mathematics.html',1,'ostk']]], - ['object_238',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html',1,'ostk::mathematics::geometry::d2::Object'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html',1,'ostk::mathematics::geometry::d3::Object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html',1,'ostk::mathematics::geometry::d2::object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html',1,'ostk::mathematics::geometry::d3::object'],['../namespaceostk_1_1mathematics_1_1object.html',1,'ostk::mathematics::object'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a15a959fd5b624d6fcc6725982a8cddf8',1,'ostk::mathematics::geometry::d2::Object::Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af003ad733beface98466830078a83875',1,'ostk::mathematics::geometry::d3::Object::Object()']]], - ['object_2ecpp_239',['Object.cpp',['../2_d_2_object_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_8cpp.html',1,'(Global Namespace)']]], - ['object_2ehpp_240',['Object.hpp',['../_geometry_22_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_geometry_23_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_object_8hpp.html',1,'(Global Namespace)']]], - ['open_241',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0dc8428f4db393e2ae009e2a8730c8c2',1,'ostk::mathematics::object::Interval::Open()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ac3bf447eabe632720a3aa1a7ce401274',1,'ostk::mathematics::object::IntervalBase::Open()']]], - ['operator_21_3d_242',['operator!=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b5775a7a48175d24ff520f3686526a2',1,'ostk::mathematics::geometry::d2::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a11fcec32f83c456a485ccd5e8bcdc98f',1,'ostk::mathematics::geometry::d2::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a4b591f899c00ed44f98ce718d5d104f4',1,'ostk::mathematics::geometry::d2::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a53f5cb0e9c9b0c4750b398d1abd24762',1,'ostk::mathematics::geometry::d2::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a711811c8e62ce8f678958d09ef6913a3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ad1ac733a4cb185285402cdffbfd8fb36',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a4591e0cef8606f3b6d4eadf6f3ffbb9f',1,'ostk::mathematics::geometry::d2::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a98a4dd2e211ceacfc9e2d9cc35703892',1,'ostk::mathematics::geometry::d2::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a9077d4bf7b3d74058f061ef4c2780b1a',1,'ostk::mathematics::geometry::d2::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abbecdd12d67f8c102deaedc65a028aed',1,'ostk::mathematics::geometry::d2::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#afe72ba03919d609d2847b0b4162d083d',1,'ostk::mathematics::geometry::d2::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a9c5841e272ccd57670de80bedf7c7ebc',1,'ostk::mathematics::geometry::d2::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a0b7fa437dc93dbc1e3ab1258f85473c0',1,'ostk::mathematics::geometry::d3::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a64f215f7a371f31396531b1fb166ca5f',1,'ostk::mathematics::geometry::d3::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae08043260d062f74a3daa54ba9593964',1,'ostk::mathematics::geometry::d3::object::Cone::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1dbcaa8deafe0bb5a99a426725306b30',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a6ad34b0e40e0a1b59ba503bbacb15db5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aef0d21c794766aaaadb779dd364594d4',1,'ostk::mathematics::geometry::d3::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a9910ccb0907ba84696f5895362c8906f',1,'ostk::mathematics::geometry::d3::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a7503e1325f4900f22279659c7b56c211',1,'ostk::mathematics::geometry::d3::object::Plane::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#abf23c8836ec513308a298cc7708aeb37',1,'ostk::mathematics::geometry::d3::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac8021b04a413b2b37671eba1d04c126e',1,'ostk::mathematics::geometry::d3::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab8c48ac69bca62018cbb75dda88d38a1',1,'ostk::mathematics::geometry::d3::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a3fa7abd7265937266cb59f19f63db3bf',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3237ba10bd95161a2190915d8b6c1bdd',1,'ostk::mathematics::geometry::d3::object::Ray::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a8c015def3a784e29270361f93925e1ef',1,'ostk::mathematics::geometry::d3::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a48d995d87aaf80ffae9629d33137e50a',1,'ostk::mathematics::geometry::d3::object::Sphere::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a550754b8f5576ce2465979657325d5df',1,'ostk::mathematics::geometry::d3::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a156c810c2357c5fe14beef33cde4e8d5',1,'ostk::mathematics::geometry::d3::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd',1,'ostk::mathematics::geometry::Angle::operator!=()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619',1,'ostk::mathematics::object::Interval::operator!=()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af8c55a09c0934260c5e61574183aa7af',1,'ostk::mathematics::solver::NumericalSolver::operator!=()']]], - ['operator_28_29_243',['operator()',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html#ab6d49e7e4af3755ca4e520ae0a8cc38e',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher::operator()()'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html#afb61191258aece00aa594b569fbd4edb',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher::operator()()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex)']]], - ['operator_2a_244',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aa48ed3f10a583e3a3551e91b7286dbf7',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#af7a2de30793f13e62515d9d87b9e3bd8',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Real &aScalar) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const RotationMatrix &aRotationMatrix) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa682c5787e78e1f18a29ab6bce2cb6c2',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5de58472d18d02a2446597834fe54f40',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Vector4d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7',1,'ostk::mathematics::geometry::Angle::operator*(const Real &aReal) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9',1,'ostk::mathematics::geometry::Angle::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a6028c92c3bd330713db8cab7bc5122e1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a1765aac15a1ece7dc16ce33e062d150b',1,'ostk::mathematics::geometry::operator*()']]], - ['operator_2a_3d_245',['operator*=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#abfeafe6bbaef1ce522e1d8948a61f7f3',1,'ostk::mathematics::geometry::d2::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5861759a9e0bcdcf453674c90d159566',1,'ostk::mathematics::geometry::d3::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792',1,'ostk::mathematics::geometry::Angle::operator*=()']]], - ['operator_2b_246',['operator+',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aace2f490a008ad90ff0b5e9e4d27ef56',1,'ostk::mathematics::geometry::d2::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6a1d39238f6b47334b4d6d5b57cd766d',1,'ostk::mathematics::geometry::d2::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3e82b2ee39985232e315e63d9cae048c',1,'ostk::mathematics::geometry::d3::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9997d9bdb4f03aaf156511762d479f84',1,'ostk::mathematics::geometry::d3::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369',1,'ostk::mathematics::geometry::Angle::operator+(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b',1,'ostk::mathematics::geometry::Angle::operator+() const']]], - ['operator_2b_3d_247',['operator+=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af6afa26e7bf88dd2e8c2d824abd12076',1,'ostk::mathematics::geometry::d2::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#af5ed721c02883767d4a2270bfe32a155',1,'ostk::mathematics::geometry::d2::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aaa5aafbae1b9357d3b15b34cf3610174',1,'ostk::mathematics::geometry::d3::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1f2e1b5d801464dd1c151b41e9e833b7',1,'ostk::mathematics::geometry::d3::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d',1,'ostk::mathematics::geometry::Angle::operator+=()']]], - ['operator_2d_248',['operator-',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1',1,'ostk::mathematics::geometry::Angle::operator-(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54',1,'ostk::mathematics::geometry::Angle::operator-() const']]], - ['operator_2d_3d_249',['operator-=',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad',1,'ostk::mathematics::geometry::Angle']]], - ['operator_2f_250',['operator/',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1',1,'ostk::mathematics::geometry::Angle::operator/()']]], - ['operator_2f_3d_251',['operator/=',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52',1,'ostk::mathematics::geometry::Angle::operator/=()']]], - ['operator_3c_3c_252',['operator<<',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d2::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d2::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d2::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d3::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d3::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d3::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed',1,'ostk::mathematics::geometry::Angle::operator<<()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b',1,'ostk::mathematics::object::Interval::operator<<()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a28e4d7a66856d0bedb035589eb5e70f7',1,'ostk::mathematics::solver::NumericalSolver::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#af4eef648c33103c1138186f8e2df55e8',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#a0f9a028d7abc22a5284c8d26fba4d3d6',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#ac4a11d280db705e9e72b70e303f427be',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Transformation &aTransformation)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#add09e667e701008cce5578e26853f883',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a5315286506c8a28a01474c943c8847c2',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#ae26404779f77ca73c95975806e5402d1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#afa8bc95840d3ed51eb2c9726bbd52f23',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a89b141f8b9cd2a93dbd9b584bab23d5b',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a36a57a233542af3c746ef3b589873e18',1,'ostk::mathematics::geometry::d3::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a611d50bcfddda6fe651b06d2648e60cf',1,'ostk::mathematics::geometry::operator<<()'],['../namespaceostk_1_1mathematics_1_1solver.html#a880f6ab73ddfe8eae45c0c7f4c6aaaeb',1,'ostk::mathematics::solver::operator<<()']]], - ['operator_3d_253',['operator=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aae9f76b02e5539ae231dbdf138b72c4c',1,'ostk::mathematics::geometry::d2::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6ceb4ff7945166c63292269531ecf722',1,'ostk::mathematics::geometry::d2::object::Composite::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a015d42e476cfc1d14221e6088d79137e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#af999d9844abf33d70dae582222582fac',1,'ostk::mathematics::geometry::d2::object::Polygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a02a6a83da64f8aec58808f8eb747c249',1,'ostk::mathematics::geometry::d3::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad10e87ffe83a4c78798e598ddfa54998',1,'ostk::mathematics::geometry::d3::object::Composite::operator=()']]], - ['operator_3d_3d_254',['operator==',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a6ab153de4908b154d7627d124b8f1a78',1,'ostk::mathematics::geometry::d2::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aaa0ab4bcefcb11d05ddfcdea811f7d0b',1,'ostk::mathematics::geometry::d2::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a90b8ba896201c7e6207b8deb7d24639a',1,'ostk::mathematics::geometry::d2::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a9a5ce9c1b26bbad9f208a1f3192ea068',1,'ostk::mathematics::geometry::d2::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2243a564e4033f557f26b39cfd75ade8',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a6c0965f5352f0b062163855e2ec2cf4b',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a3a9cc35629142eb792940471e190f7d6',1,'ostk::mathematics::geometry::d2::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a736eaf33b25f759729e053aadaeae0cb',1,'ostk::mathematics::geometry::d2::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e45da47629d49cbf83823682b399e54',1,'ostk::mathematics::geometry::d2::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7efea6942753f879406cf983a8e55d19',1,'ostk::mathematics::geometry::d2::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9617246a3e26d57e5ba78e57387ae05a',1,'ostk::mathematics::geometry::d2::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a97115f56b673ff7d0efcc45ff4de2566',1,'ostk::mathematics::geometry::d2::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#adb34ecf6fc09a6a3b7c2dd349d0ecc31',1,'ostk::mathematics::geometry::d3::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a70bc18b2b15c4419de64b8b0ac0ec44f',1,'ostk::mathematics::geometry::d3::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a218e8b5b2b28de0a632b102c0953f948',1,'ostk::mathematics::geometry::d3::object::Cone::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abe25b1d5a60b159cfe79475e0a1bcd4b',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a24d5de8f8d462000ad16f99cb08b6bbe',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aba1fb7d8d2c55f5622219263cb7e677b',1,'ostk::mathematics::geometry::d3::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4c81f3eb92c3248c983def441296f9fb',1,'ostk::mathematics::geometry::d3::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a52ef325acb9072394c691b2511f875e9',1,'ostk::mathematics::geometry::d3::object::Plane::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3134e01a0c43d6ad7b040f8f730b8e50',1,'ostk::mathematics::geometry::d3::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1a5f1f9e222a57f6055045d49c4dff6c',1,'ostk::mathematics::geometry::d3::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a31ea0eaea624719d90d2d5477234fbc4',1,'ostk::mathematics::geometry::d3::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a77efda8908205d41517ed65ad8a09cf9',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a361468984adc4da8b25c39047c5a8279',1,'ostk::mathematics::geometry::d3::object::Ray::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae2d84ea0ab5dc2f1bcfb066e8c7e3f62',1,'ostk::mathematics::geometry::d3::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a86fab4da986e79ea843646b859a54b7b',1,'ostk::mathematics::geometry::d3::object::Sphere::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aeb99dd25ff1c0683d9c0a058c8200e4d',1,'ostk::mathematics::geometry::d3::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a0701af3c93fa91a10f09335d03fe2f44',1,'ostk::mathematics::geometry::d3::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833',1,'ostk::mathematics::geometry::Angle::operator==()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc',1,'ostk::mathematics::object::Interval::operator==()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a751982613c3465145a9a0fc268c87467',1,'ostk::mathematics::solver::NumericalSolver::operator==()']]], - ['operator_5e_255',['operator^',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['origin_256',['Origin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a44fa9d92b862d8fb9a379440ee0e6a81',1,'ostk::mathematics::geometry::d2::object::Point::Origin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a2e0dc90fe04fb9befb79ec9874dcebc4',1,'ostk::mathematics::geometry::d3::object::Point::Origin()']]], - ['ostk_257',['ostk',['../namespaceostk.html',1,'']]], - ['rotation_258',['rotation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html',1,'ostk::mathematics::geometry::d3::transformation']]], - ['solver_259',['solver',['../namespaceostk_1_1mathematics_1_1solver.html',1,'ostk::mathematics']]], - ['transformation_260',['transformation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation.html',1,'ostk::mathematics::geometry::d3']]] + ['curvefitting_240',['curvefitting',['../namespaceostk_1_1mathematics_1_1curvefitting.html',1,'ostk::mathematics']]], + ['d2_241',['d2',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html',1,'ostk::mathematics::geometry']]], + ['d3_242',['d3',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html',1,'ostk::mathematics::geometry']]], + ['geometry_243',['geometry',['../namespaceostk_1_1mathematics_1_1geometry.html',1,'ostk::mathematics']]], + ['open_20space_20toolkit_20â–¸_20mathematics_244',['Open Space Toolkit â–¸ Mathematics',['../index.html',1,'']]], + ['interpolator_245',['interpolator',['../namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html',1,'ostk::mathematics::curvefitting']]], + ['mathematics_246',['mathematics',['../namespaceostk_1_1mathematics.html',1,'ostk']]], + ['object_247',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html',1,'ostk::mathematics::geometry::d2::Object'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html',1,'ostk::mathematics::geometry::d3::Object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html',1,'ostk::mathematics::geometry::d2::object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html',1,'ostk::mathematics::geometry::d3::object'],['../namespaceostk_1_1mathematics_1_1object.html',1,'ostk::mathematics::object'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a15a959fd5b624d6fcc6725982a8cddf8',1,'ostk::mathematics::geometry::d2::Object::Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af003ad733beface98466830078a83875',1,'ostk::mathematics::geometry::d3::Object::Object()']]], + ['object_2ecpp_248',['Object.cpp',['../2_d_2_object_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_8cpp.html',1,'(Global Namespace)']]], + ['object_2ehpp_249',['Object.hpp',['../_geometry_22_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_geometry_23_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_object_8hpp.html',1,'(Global Namespace)']]], + ['open_250',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0dc8428f4db393e2ae009e2a8730c8c2',1,'ostk::mathematics::object::Interval::Open()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ac3bf447eabe632720a3aa1a7ce401274',1,'ostk::mathematics::object::IntervalBase::Open()']]], + ['operator_21_3d_251',['operator!=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b5775a7a48175d24ff520f3686526a2',1,'ostk::mathematics::geometry::d2::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a11fcec32f83c456a485ccd5e8bcdc98f',1,'ostk::mathematics::geometry::d2::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a4b591f899c00ed44f98ce718d5d104f4',1,'ostk::mathematics::geometry::d2::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a53f5cb0e9c9b0c4750b398d1abd24762',1,'ostk::mathematics::geometry::d2::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a711811c8e62ce8f678958d09ef6913a3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ad1ac733a4cb185285402cdffbfd8fb36',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a4591e0cef8606f3b6d4eadf6f3ffbb9f',1,'ostk::mathematics::geometry::d2::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a98a4dd2e211ceacfc9e2d9cc35703892',1,'ostk::mathematics::geometry::d2::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a9077d4bf7b3d74058f061ef4c2780b1a',1,'ostk::mathematics::geometry::d2::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abbecdd12d67f8c102deaedc65a028aed',1,'ostk::mathematics::geometry::d2::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#afe72ba03919d609d2847b0b4162d083d',1,'ostk::mathematics::geometry::d2::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a9c5841e272ccd57670de80bedf7c7ebc',1,'ostk::mathematics::geometry::d2::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a0b7fa437dc93dbc1e3ab1258f85473c0',1,'ostk::mathematics::geometry::d3::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a64f215f7a371f31396531b1fb166ca5f',1,'ostk::mathematics::geometry::d3::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae08043260d062f74a3daa54ba9593964',1,'ostk::mathematics::geometry::d3::object::Cone::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1dbcaa8deafe0bb5a99a426725306b30',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a6ad34b0e40e0a1b59ba503bbacb15db5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aef0d21c794766aaaadb779dd364594d4',1,'ostk::mathematics::geometry::d3::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a9910ccb0907ba84696f5895362c8906f',1,'ostk::mathematics::geometry::d3::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a7503e1325f4900f22279659c7b56c211',1,'ostk::mathematics::geometry::d3::object::Plane::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#abf23c8836ec513308a298cc7708aeb37',1,'ostk::mathematics::geometry::d3::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac8021b04a413b2b37671eba1d04c126e',1,'ostk::mathematics::geometry::d3::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab8c48ac69bca62018cbb75dda88d38a1',1,'ostk::mathematics::geometry::d3::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a3fa7abd7265937266cb59f19f63db3bf',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3237ba10bd95161a2190915d8b6c1bdd',1,'ostk::mathematics::geometry::d3::object::Ray::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a8c015def3a784e29270361f93925e1ef',1,'ostk::mathematics::geometry::d3::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a48d995d87aaf80ffae9629d33137e50a',1,'ostk::mathematics::geometry::d3::object::Sphere::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a550754b8f5576ce2465979657325d5df',1,'ostk::mathematics::geometry::d3::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5adfa3b7def412a62f25fcb4d154f160',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a156c810c2357c5fe14beef33cde4e8d5',1,'ostk::mathematics::geometry::d3::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd',1,'ostk::mathematics::geometry::Angle::operator!=()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619',1,'ostk::mathematics::object::Interval::operator!=()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af8c55a09c0934260c5e61574183aa7af',1,'ostk::mathematics::solver::NumericalSolver::operator!=()']]], + ['operator_28_29_252',['operator()',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html#ab6d49e7e4af3755ca4e520ae0a8cc38e',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher::operator()()'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html#afb61191258aece00aa594b569fbd4edb',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher::operator()()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex)']]], + ['operator_2a_253',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aa48ed3f10a583e3a3551e91b7286dbf7',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#af7a2de30793f13e62515d9d87b9e3bd8',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a95aa653a242332b5d3590c81f8819bb8',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Quaternion &aQuaternion) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Real &aScalar) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const RotationMatrix &aRotationMatrix) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa682c5787e78e1f18a29ab6bce2cb6c2',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5de58472d18d02a2446597834fe54f40',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Vector4d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7',1,'ostk::mathematics::geometry::Angle::operator*(const Real &aReal) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9',1,'ostk::mathematics::geometry::Angle::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a6028c92c3bd330713db8cab7bc5122e1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a1765aac15a1ece7dc16ce33e062d150b',1,'ostk::mathematics::geometry::operator*()']]], + ['operator_2a_3d_254',['operator*=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#abfeafe6bbaef1ce522e1d8948a61f7f3',1,'ostk::mathematics::geometry::d2::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5861759a9e0bcdcf453674c90d159566',1,'ostk::mathematics::geometry::d3::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792',1,'ostk::mathematics::geometry::Angle::operator*=()']]], + ['operator_2b_255',['operator+',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aace2f490a008ad90ff0b5e9e4d27ef56',1,'ostk::mathematics::geometry::d2::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6a1d39238f6b47334b4d6d5b57cd766d',1,'ostk::mathematics::geometry::d2::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3e82b2ee39985232e315e63d9cae048c',1,'ostk::mathematics::geometry::d3::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9997d9bdb4f03aaf156511762d479f84',1,'ostk::mathematics::geometry::d3::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a87ad253260d586f019f07b6ae7202e19',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369',1,'ostk::mathematics::geometry::Angle::operator+(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b',1,'ostk::mathematics::geometry::Angle::operator+() const']]], + ['operator_2b_3d_256',['operator+=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af6afa26e7bf88dd2e8c2d824abd12076',1,'ostk::mathematics::geometry::d2::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#af5ed721c02883767d4a2270bfe32a155',1,'ostk::mathematics::geometry::d2::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aaa5aafbae1b9357d3b15b34cf3610174',1,'ostk::mathematics::geometry::d3::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1f2e1b5d801464dd1c151b41e9e833b7',1,'ostk::mathematics::geometry::d3::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d',1,'ostk::mathematics::geometry::Angle::operator+=()']]], + ['operator_2d_257',['operator-',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1',1,'ostk::mathematics::geometry::Angle::operator-(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54',1,'ostk::mathematics::geometry::Angle::operator-() const']]], + ['operator_2d_3d_258',['operator-=',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad',1,'ostk::mathematics::geometry::Angle']]], + ['operator_2f_259',['operator/',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1',1,'ostk::mathematics::geometry::Angle::operator/()']]], + ['operator_2f_3d_260',['operator/=',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52',1,'ostk::mathematics::geometry::Angle::operator/=()']]], + ['operator_3c_3c_261',['operator<<',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d2::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d2::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d2::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d3::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d3::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a88d18669eb768c7f71a92df68c886202',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d3::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed',1,'ostk::mathematics::geometry::Angle::operator<<()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b',1,'ostk::mathematics::object::Interval::operator<<()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a28e4d7a66856d0bedb035589eb5e70f7',1,'ostk::mathematics::solver::NumericalSolver::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#af4eef648c33103c1138186f8e2df55e8',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#a0f9a028d7abc22a5284c8d26fba4d3d6',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#ac4a11d280db705e9e72b70e303f427be',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Transformation &aTransformation)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#add09e667e701008cce5578e26853f883',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a5315286506c8a28a01474c943c8847c2',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a4039583c5e12d44db90af36b8420cffd',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const EulerAngle &aEulerAngle)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#ae26404779f77ca73c95975806e5402d1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#afa8bc95840d3ed51eb2c9726bbd52f23',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a89b141f8b9cd2a93dbd9b584bab23d5b',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a36a57a233542af3c746ef3b589873e18',1,'ostk::mathematics::geometry::d3::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a611d50bcfddda6fe651b06d2648e60cf',1,'ostk::mathematics::geometry::operator<<()'],['../namespaceostk_1_1mathematics_1_1solver.html#a880f6ab73ddfe8eae45c0c7f4c6aaaeb',1,'ostk::mathematics::solver::operator<<()']]], + ['operator_3d_262',['operator=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aae9f76b02e5539ae231dbdf138b72c4c',1,'ostk::mathematics::geometry::d2::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6ceb4ff7945166c63292269531ecf722',1,'ostk::mathematics::geometry::d2::object::Composite::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a015d42e476cfc1d14221e6088d79137e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#af999d9844abf33d70dae582222582fac',1,'ostk::mathematics::geometry::d2::object::Polygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a02a6a83da64f8aec58808f8eb747c249',1,'ostk::mathematics::geometry::d3::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad10e87ffe83a4c78798e598ddfa54998',1,'ostk::mathematics::geometry::d3::object::Composite::operator=()']]], + ['operator_3d_3d_263',['operator==',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a6ab153de4908b154d7627d124b8f1a78',1,'ostk::mathematics::geometry::d2::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aaa0ab4bcefcb11d05ddfcdea811f7d0b',1,'ostk::mathematics::geometry::d2::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a90b8ba896201c7e6207b8deb7d24639a',1,'ostk::mathematics::geometry::d2::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a9a5ce9c1b26bbad9f208a1f3192ea068',1,'ostk::mathematics::geometry::d2::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2243a564e4033f557f26b39cfd75ade8',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a6c0965f5352f0b062163855e2ec2cf4b',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a3a9cc35629142eb792940471e190f7d6',1,'ostk::mathematics::geometry::d2::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a736eaf33b25f759729e053aadaeae0cb',1,'ostk::mathematics::geometry::d2::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e45da47629d49cbf83823682b399e54',1,'ostk::mathematics::geometry::d2::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7efea6942753f879406cf983a8e55d19',1,'ostk::mathematics::geometry::d2::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9617246a3e26d57e5ba78e57387ae05a',1,'ostk::mathematics::geometry::d2::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a97115f56b673ff7d0efcc45ff4de2566',1,'ostk::mathematics::geometry::d2::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#adb34ecf6fc09a6a3b7c2dd349d0ecc31',1,'ostk::mathematics::geometry::d3::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a70bc18b2b15c4419de64b8b0ac0ec44f',1,'ostk::mathematics::geometry::d3::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a218e8b5b2b28de0a632b102c0953f948',1,'ostk::mathematics::geometry::d3::object::Cone::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abe25b1d5a60b159cfe79475e0a1bcd4b',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a24d5de8f8d462000ad16f99cb08b6bbe',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aba1fb7d8d2c55f5622219263cb7e677b',1,'ostk::mathematics::geometry::d3::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4c81f3eb92c3248c983def441296f9fb',1,'ostk::mathematics::geometry::d3::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a52ef325acb9072394c691b2511f875e9',1,'ostk::mathematics::geometry::d3::object::Plane::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3134e01a0c43d6ad7b040f8f730b8e50',1,'ostk::mathematics::geometry::d3::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1a5f1f9e222a57f6055045d49c4dff6c',1,'ostk::mathematics::geometry::d3::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a31ea0eaea624719d90d2d5477234fbc4',1,'ostk::mathematics::geometry::d3::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a77efda8908205d41517ed65ad8a09cf9',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a361468984adc4da8b25c39047c5a8279',1,'ostk::mathematics::geometry::d3::object::Ray::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae2d84ea0ab5dc2f1bcfb066e8c7e3f62',1,'ostk::mathematics::geometry::d3::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a86fab4da986e79ea843646b859a54b7b',1,'ostk::mathematics::geometry::d3::object::Sphere::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aeb99dd25ff1c0683d9c0a058c8200e4d',1,'ostk::mathematics::geometry::d3::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a487434e408dd6301e624305f9708a1b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a0701af3c93fa91a10f09335d03fe2f44',1,'ostk::mathematics::geometry::d3::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833',1,'ostk::mathematics::geometry::Angle::operator==()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc',1,'ostk::mathematics::object::Interval::operator==()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a751982613c3465145a9a0fc268c87467',1,'ostk::mathematics::solver::NumericalSolver::operator==()']]], + ['operator_5e_264',['operator^',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['origin_265',['Origin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a44fa9d92b862d8fb9a379440ee0e6a81',1,'ostk::mathematics::geometry::d2::object::Point::Origin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a2e0dc90fe04fb9befb79ec9874dcebc4',1,'ostk::mathematics::geometry::d3::object::Point::Origin()']]], + ['ostk_266',['ostk',['../namespaceostk.html',1,'']]], + ['rotation_267',['rotation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html',1,'ostk::mathematics::geometry::d3::transformation']]], + ['solver_268',['solver',['../namespaceostk_1_1mathematics_1_1solver.html',1,'ostk::mathematics']]], + ['transformation_269',['transformation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation.html',1,'ostk::mathematics::geometry::d3']]] ]; diff --git a/html/search/all_d.js b/html/search/all_d.js index ab5f0154..d5dacfac 100644 --- a/html/search/all_d.js +++ b/html/search/all_d.js @@ -1,24 +1,24 @@ var searchData= [ - ['parse_261',['Parse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a5b56dc4ce6a820188901e71d02333651',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Parse()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ace183366972c47b1f54c7b372e4ac0ff',1,'ostk::mathematics::geometry::Angle::Parse()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac57a376cb40367712a31e57b82d4bf96',1,'ostk::mathematics::object::Interval::Parse()']]], - ['pi_262',['Pi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ab52a6ac8a09b8e96ff5ce6f8c429eb25',1,'ostk::mathematics::geometry::Angle']]], - ['plane_263',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html',1,'ostk::mathematics::geometry::d3::object::Plane'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ae1c8e4e15ce5c0ec7ace2e1b61b17358',1,'ostk::mathematics::geometry::d3::object::Plane::Plane()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda0d3adee051531c15b3509b4d4d75ce7b',1,'ostk::mathematics::geometry::d3::Intersection::Plane()']]], - ['plane_2ecpp_264',['Plane.cpp',['../_plane_8cpp.html',1,'']]], - ['plane_2ehpp_265',['Plane.hpp',['../_plane_8hpp.html',1,'']]], - ['point_266',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d2::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d3::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a557d7508624c7644f74a358959e3a7e2',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1c108c80b33fb0252405b8a567060e28',1,'ostk::mathematics::geometry::d2::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#acbad6f7755a851df8bca64fb8bdef1b6',1,'ostk::mathematics::geometry::d3::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ad2997c8a9695cb44004985034cb622b8',1,'ostk::mathematics::geometry::d3::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d3::Intersection::Point()']]], - ['point_2ecpp_267',['Point.cpp',['../2_d_2_object_2_point_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8cpp.html',1,'(Global Namespace)']]], - ['point_2ehpp_268',['Point.hpp',['../2_d_2_object_2_point_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8hpp.html',1,'(Global Namespace)']]], - ['points_269',['Points',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ae8c72610b423866bc7c1bca059d3a7e3',1,'ostk::mathematics::geometry::d2::object::Line::Points()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2c137ebb5cbfe774410eb84644e5cdd4',1,'ostk::mathematics::geometry::d3::object::Line::Points()']]], - ['pointset_270',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d3::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d2::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aac4f1f9c3ecee9bce18232398a6a8344',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a652ec33b4c6493e0c191a4b6809653a2',1,'ostk::mathematics::geometry::d2::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3734219d673b6e159c6e5ac7d51f9b1b',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aabd317c62ef535b222c6facc6103faf6',1,'ostk::mathematics::geometry::d3::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()']]], - ['pointset_2ecpp_271',['PointSet.cpp',['../2_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)']]], - ['pointset_2ehpp_272',['PointSet.hpp',['../2_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)']]], - ['polygon_273',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d2::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d3::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0e011491a8e6fd33fa8f703529bebc76',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a4c9d7d4e3f89c926571e3f03766a0551',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a5389f3ef22d7144b5f01e37c8a221e8e',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Array< Point > &anOuterRing, const Array< Array< Point >> &anInnerRingArray=Array< Array< Point >>::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4031148e40aa64e08fe9ee5acdfa9c27',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon::Ring &anOuterRing, const Array< Polygon::Ring > &anInnerRingArray=Array< Polygon::Ring >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adc2ef152c4cfc2b2842cf9e215116ea4',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon &aPolygon)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a4a3afb176b3e70d5f174d0a7f6b57272',1,'ostk::mathematics::geometry::d3::object::Polygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d3::Intersection::Polygon()']]], - ['polygon_2ecpp_274',['Polygon.cpp',['../2_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)']]], - ['polygon_2ehpp_275',['Polygon.hpp',['../2_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)']]], - ['polygon2d_276',['Polygon2d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html#ac1ef77832033c8e89498cf87b6e0e08e',1,'ostk::mathematics::geometry::d2::object::Polygon2d()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae4c84293a1f85b2e2c0d2e8aa5f281c0',1,'ostk::mathematics::geometry::d3::object::Polygon2d()']]], - ['pow_277',['pow',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['print_278',['print',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68feee2a993e698e796db61bc27a6167',1,'ostk::mathematics::geometry::d2::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ad3cdbabb0a5a068923e9c63e6675fa15',1,'ostk::mathematics::geometry::d2::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a292e3bf679e232f605e4726f0bfff970',1,'ostk::mathematics::geometry::d2::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac1befc9e46d84330636599f164cb2033',1,'ostk::mathematics::geometry::d2::object::MultiLineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2912fc75e812550a0734bd6fa91368b7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1b7542e4161a90a3e2af18d62f9854c6',1,'ostk::mathematics::geometry::d2::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab1d1852516a67b36a9d4c3b5f5483fa7',1,'ostk::mathematics::geometry::d2::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e6da736abac853938c0a42e50984191',1,'ostk::mathematics::geometry::d2::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a104bbc842576324e46876838e92b18c9',1,'ostk::mathematics::geometry::d2::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aaf59b52c718ca92c6b6116660077d9f9',1,'ostk::mathematics::geometry::d2::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3403dc8a6f1f18450a86a3e5868d2348',1,'ostk::mathematics::geometry::d2::Transformation::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a7d59b2b6538e28c9faa5ad94249e0d5d',1,'ostk::mathematics::geometry::d3::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4683504c6cc0933811bf909c96f5ef17',1,'ostk::mathematics::geometry::d3::object::Cone::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa60fe81325d3fa897e6bc7517c28d071',1,'ostk::mathematics::geometry::d3::object::Cuboid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7c5c1f79b1c0533073ef48e38dc5e18b',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#adbfd6a95b2edf22a2540e449d07e499c',1,'ostk::mathematics::geometry::d3::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a3f55f08a54e8341f3381f1402ace1b09',1,'ostk::mathematics::geometry::d3::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a69cc28d37f97308cd2d0a9b58d50c18f',1,'ostk::mathematics::geometry::d3::object::Plane::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9395ae58a8f65a13328bc581586955c3',1,'ostk::mathematics::geometry::d3::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a54b5df386104fa9e13d7a982c3a99589',1,'ostk::mathematics::geometry::d3::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a3a3719dc361d969338a34cce892fff94',1,'ostk::mathematics::geometry::d3::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aba0fd8b256f78bb7bb0725103287f681',1,'ostk::mathematics::geometry::d3::object::Pyramid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#af5e5dea5fe393ea9a76fd3b2638f9446',1,'ostk::mathematics::geometry::d3::object::Ray::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa5283e30e7ddb452b048bd54f841c63e',1,'ostk::mathematics::geometry::d3::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae7a968c5f386c5f9019389e6e3fca138',1,'ostk::mathematics::geometry::d3::object::Sphere::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a5063e1f902e1b08d36f6b6cecab0bd95',1,'ostk::mathematics::geometry::d3::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a848420f246834b6ee2272144439e5cbf',1,'ostk::mathematics::geometry::d3::Transformation::print()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad228bac87a6b39aeecc275e894178722',1,'ostk::mathematics::solver::NumericalSolver::print()']]], - ['pyramid_279',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html',1,'ostk::mathematics::geometry::d3::object::Pyramid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#adddec5b182cdca50f62190d899179460',1,'ostk::mathematics::geometry::d3::object::Pyramid::Pyramid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda5e5b0d93bab61584149905b5e5dc71a0',1,'ostk::mathematics::geometry::d3::Intersection::Pyramid()']]], - ['pyramid_2ecpp_280',['Pyramid.cpp',['../_pyramid_8cpp.html',1,'']]], - ['pyramid_2ehpp_281',['Pyramid.hpp',['../_pyramid_8hpp.html',1,'']]] + ['parse_270',['Parse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a5b56dc4ce6a820188901e71d02333651',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Parse()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ace183366972c47b1f54c7b372e4ac0ff',1,'ostk::mathematics::geometry::Angle::Parse()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac57a376cb40367712a31e57b82d4bf96',1,'ostk::mathematics::object::Interval::Parse()']]], + ['pi_271',['Pi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ab52a6ac8a09b8e96ff5ce6f8c429eb25',1,'ostk::mathematics::geometry::Angle']]], + ['plane_272',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html',1,'ostk::mathematics::geometry::d3::object::Plane'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ae1c8e4e15ce5c0ec7ace2e1b61b17358',1,'ostk::mathematics::geometry::d3::object::Plane::Plane()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda0d3adee051531c15b3509b4d4d75ce7b',1,'ostk::mathematics::geometry::d3::Intersection::Plane()']]], + ['plane_2ecpp_273',['Plane.cpp',['../_plane_8cpp.html',1,'']]], + ['plane_2ehpp_274',['Plane.hpp',['../_plane_8hpp.html',1,'']]], + ['point_275',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d2::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d3::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a557d7508624c7644f74a358959e3a7e2',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1c108c80b33fb0252405b8a567060e28',1,'ostk::mathematics::geometry::d2::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#acbad6f7755a851df8bca64fb8bdef1b6',1,'ostk::mathematics::geometry::d3::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ad2997c8a9695cb44004985034cb622b8',1,'ostk::mathematics::geometry::d3::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d3::Intersection::Point()']]], + ['point_2ecpp_276',['Point.cpp',['../2_d_2_object_2_point_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8cpp.html',1,'(Global Namespace)']]], + ['point_2ehpp_277',['Point.hpp',['../2_d_2_object_2_point_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8hpp.html',1,'(Global Namespace)']]], + ['points_278',['Points',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ae8c72610b423866bc7c1bca059d3a7e3',1,'ostk::mathematics::geometry::d2::object::Line::Points()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2c137ebb5cbfe774410eb84644e5cdd4',1,'ostk::mathematics::geometry::d3::object::Line::Points()']]], + ['pointset_279',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d2::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d3::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aac4f1f9c3ecee9bce18232398a6a8344',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a652ec33b4c6493e0c191a4b6809653a2',1,'ostk::mathematics::geometry::d2::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3734219d673b6e159c6e5ac7d51f9b1b',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aabd317c62ef535b222c6facc6103faf6',1,'ostk::mathematics::geometry::d3::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()']]], + ['pointset_2ecpp_280',['PointSet.cpp',['../2_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)']]], + ['pointset_2ehpp_281',['PointSet.hpp',['../2_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)']]], + ['polygon_282',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d2::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d3::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0e011491a8e6fd33fa8f703529bebc76',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a4c9d7d4e3f89c926571e3f03766a0551',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a5389f3ef22d7144b5f01e37c8a221e8e',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Array< Point > &anOuterRing, const Array< Array< Point >> &anInnerRingArray=Array< Array< Point >>::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4031148e40aa64e08fe9ee5acdfa9c27',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon::Ring &anOuterRing, const Array< Polygon::Ring > &anInnerRingArray=Array< Polygon::Ring >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adc2ef152c4cfc2b2842cf9e215116ea4',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon &aPolygon)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a4a3afb176b3e70d5f174d0a7f6b57272',1,'ostk::mathematics::geometry::d3::object::Polygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d3::Intersection::Polygon()']]], + ['polygon_2ecpp_283',['Polygon.cpp',['../2_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)']]], + ['polygon_2ehpp_284',['Polygon.hpp',['../2_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)']]], + ['polygon2d_285',['Polygon2d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html#ac1ef77832033c8e89498cf87b6e0e08e',1,'ostk::mathematics::geometry::d2::object::Polygon2d()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae4c84293a1f85b2e2c0d2e8aa5f281c0',1,'ostk::mathematics::geometry::d3::object::Polygon2d()']]], + ['pow_286',['pow',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['print_287',['print',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68feee2a993e698e796db61bc27a6167',1,'ostk::mathematics::geometry::d2::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ad3cdbabb0a5a068923e9c63e6675fa15',1,'ostk::mathematics::geometry::d2::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a292e3bf679e232f605e4726f0bfff970',1,'ostk::mathematics::geometry::d2::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac1befc9e46d84330636599f164cb2033',1,'ostk::mathematics::geometry::d2::object::MultiLineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2912fc75e812550a0734bd6fa91368b7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1b7542e4161a90a3e2af18d62f9854c6',1,'ostk::mathematics::geometry::d2::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab1d1852516a67b36a9d4c3b5f5483fa7',1,'ostk::mathematics::geometry::d2::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e6da736abac853938c0a42e50984191',1,'ostk::mathematics::geometry::d2::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a104bbc842576324e46876838e92b18c9',1,'ostk::mathematics::geometry::d2::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aaf59b52c718ca92c6b6116660077d9f9',1,'ostk::mathematics::geometry::d2::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3403dc8a6f1f18450a86a3e5868d2348',1,'ostk::mathematics::geometry::d2::Transformation::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a7d59b2b6538e28c9faa5ad94249e0d5d',1,'ostk::mathematics::geometry::d3::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4683504c6cc0933811bf909c96f5ef17',1,'ostk::mathematics::geometry::d3::object::Cone::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa60fe81325d3fa897e6bc7517c28d071',1,'ostk::mathematics::geometry::d3::object::Cuboid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7c5c1f79b1c0533073ef48e38dc5e18b',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#adbfd6a95b2edf22a2540e449d07e499c',1,'ostk::mathematics::geometry::d3::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a3f55f08a54e8341f3381f1402ace1b09',1,'ostk::mathematics::geometry::d3::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a69cc28d37f97308cd2d0a9b58d50c18f',1,'ostk::mathematics::geometry::d3::object::Plane::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9395ae58a8f65a13328bc581586955c3',1,'ostk::mathematics::geometry::d3::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a54b5df386104fa9e13d7a982c3a99589',1,'ostk::mathematics::geometry::d3::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a3a3719dc361d969338a34cce892fff94',1,'ostk::mathematics::geometry::d3::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aba0fd8b256f78bb7bb0725103287f681',1,'ostk::mathematics::geometry::d3::object::Pyramid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#af5e5dea5fe393ea9a76fd3b2638f9446',1,'ostk::mathematics::geometry::d3::object::Ray::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa5283e30e7ddb452b048bd54f841c63e',1,'ostk::mathematics::geometry::d3::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae7a968c5f386c5f9019389e6e3fca138',1,'ostk::mathematics::geometry::d3::object::Sphere::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a5063e1f902e1b08d36f6b6cecab0bd95',1,'ostk::mathematics::geometry::d3::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a848420f246834b6ee2272144439e5cbf',1,'ostk::mathematics::geometry::d3::Transformation::print()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad228bac87a6b39aeecc275e894178722',1,'ostk::mathematics::solver::NumericalSolver::print()']]], + ['pyramid_288',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html',1,'ostk::mathematics::geometry::d3::object::Pyramid'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#adddec5b182cdca50f62190d899179460',1,'ostk::mathematics::geometry::d3::object::Pyramid::Pyramid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda5e5b0d93bab61584149905b5e5dc71a0',1,'ostk::mathematics::geometry::d3::Intersection::Pyramid()']]], + ['pyramid_2ecpp_289',['Pyramid.cpp',['../_pyramid_8cpp.html',1,'']]], + ['pyramid_2ehpp_290',['Pyramid.hpp',['../_pyramid_8hpp.html',1,'']]] ]; diff --git a/html/search/all_e.js b/html/search/all_e.js index 21454397..578cf6b7 100644 --- a/html/search/all_e.js +++ b/html/search/all_e.js @@ -1,6 +1,6 @@ var searchData= [ - ['quaternion_282',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector4d &aVector, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector3d &aVectorPart, const Real &aScalarPart)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a08706245c522cf0a4b101efdc66ab802',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ae2257efa00cf6358d7135f4fb67f42c0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Quaternion()']]], - ['quaternion_2ecpp_283',['Quaternion.cpp',['../_quaternion_8cpp.html',1,'']]], - ['quaternion_2ehpp_284',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] + ['quaternion_291',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a046912d1e2a21205e51d070b186630f6',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector4d &aVector, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector3d &aVectorPart, const Real &aScalarPart)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a08706245c522cf0a4b101efdc66ab802',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ae2257efa00cf6358d7135f4fb67f42c0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Quaternion()']]], + ['quaternion_2ecpp_292',['Quaternion.cpp',['../_quaternion_8cpp.html',1,'']]], + ['quaternion_2ehpp_293',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] ]; diff --git a/html/search/all_f.js b/html/search/all_f.js index 0a962c7c..e5242b97 100644 --- a/html/search/all_f.js +++ b/html/search/all_f.js @@ -1,33 +1,33 @@ var searchData= [ - ['radian_285',['Radian',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c',1,'ostk::mathematics::geometry::Angle']]], - ['radians_286',['Radians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac8d7459ae201e96eabd5e5d86eff5cb0',1,'ostk::mathematics::geometry::Angle']]], - ['ray_287',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html',1,'ostk::mathematics::geometry::d3::object::Ray'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a5853d8e020fb534c1c44a6f2350a45fc',1,'ostk::mathematics::geometry::d3::Intersection::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a0d244c15c77e18801be99d79a100420a',1,'ostk::mathematics::geometry::d3::object::Ray::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda9406e3c325bfc9873426e5eda4ba6e18',1,'ostk::mathematics::geometry::d3::Intersection::Ray()']]], - ['ray_2ecpp_288',['Ray.cpp',['../_ray_8cpp.html',1,'']]], - ['ray_2ehpp_289',['Ray.hpp',['../_ray_8hpp.html',1,'']]], - ['readme_2emd_290',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], - ['rectify_291',['rectify',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['reflection_292',['Reflection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d2::Transformation::Reflection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d3::Transformation::Reflection()']]], - ['relativetolerance_5f_293',['relativeTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a45eb77bb99f110923f802b93556747f0',1,'ostk::mathematics::solver::NumericalSolver']]], - ['revolution_294',['Revolution',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aad09b2d48b2811c68e5a2bf421f7f2f2',1,'ostk::mathematics::geometry::Angle']]], - ['revolutions_295',['Revolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a14eb58729720306e1d9def33d93278f6',1,'ostk::mathematics::geometry::Angle']]], - ['ring_296',['Ring',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e1a66ca47ea2cd18df9898d2d7ab014',1,'ostk::mathematics::geometry::d2::object::Polygon::Ring()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0def0d0862a7b5a429699d9e49b09edf',1,'ostk::mathematics::geometry::d3::object::Polygon::Ring()']]], - ['rotatevector_297',['rotateVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['rotation_298',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aae0d29a9d8b14e1234dddf22c072ff53',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa12d31e920d91e59080771f26242b0c2',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationVector &aRotationVector)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6302652ab44a2a9d5ee08645e7ed107a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationMatrix &aRotationMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9af1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaf1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation()']]], - ['rotationaround_299',['RotationAround',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a970c932524b54aa74373a1a3d50f51af',1,'ostk::mathematics::geometry::d2::Transformation::RotationAround()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a3966d6c0dcf466528932566907b9c7b4',1,'ostk::mathematics::geometry::d3::Transformation::RotationAround()']]], - ['rotationmatrix_300',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a6622a7bdc0b5a4a05b1924d8efc4b7d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Matrix3d &aMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Real &aFirstCoefficient, const Real &aSecondCoefficient, const Real &aThirdCoefficient, const Real &aFourthCoefficient, const Real &aFifthCoefficient, const Real &aSixthCoefficient, const Real &aSeventhCoefficient, const Real &aEighthCoefficient, const Real &aNinthCoefficient)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a11b732b431882d3e29d63b5b350b88bc',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationMatrix()']]], - ['rotationmatrix_2ecpp_301',['RotationMatrix.cpp',['../_rotation_matrix_8cpp.html',1,'']]], - ['rotationmatrix_2ehpp_302',['RotationMatrix.hpp',['../_rotation_matrix_8hpp.html',1,'']]], - ['rotationvector_303',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aee9309aec1e4543df08f57d40a0e51ed',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#af11a91008ad9a5e8682437777efcfb0d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector()']]], - ['rotationvector_2ecpp_304',['RotationVector.cpp',['../_rotation_vector_8cpp.html',1,'']]], - ['rotationvector_2ehpp_305',['RotationVector.hpp',['../_rotation_vector_8hpp.html',1,'']]], - ['rows_306',['Rows',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a803abf578ca73618baf5d92358a1fef5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['rowvectorxd_307',['RowVectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a9be86062a33aac0443deff367090b0a2',1,'ostk::mathematics::object']]], - ['rungekutta4_308',['RungeKutta4',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a2ad1d4b322353ee07200045be21ffb58',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttacashkarp54_309',['RungeKuttaCashKarp54',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a646d9d3aaac989d6fd4990f308ba3a37',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttadopri5_310',['RungeKuttaDopri5',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a3203013d28f8e40a899ed45ede9ad149',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttafehlberg78_311',['RungeKuttaFehlberg78',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a5002097811f3eb2dd4a34b826b1288e7',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rx_312',['RX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ad6019cbe46a2b47ad26470f996214bb0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['ry_313',['RY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a580d873ccc82cafaa3e18bedfe54a0f2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['rz_314',['RZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4056e0c5112b76e58df8afbf359cefa6',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]] + ['radian_294',['Radian',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c',1,'ostk::mathematics::geometry::Angle']]], + ['radians_295',['Radians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac8d7459ae201e96eabd5e5d86eff5cb0',1,'ostk::mathematics::geometry::Angle']]], + ['ray_296',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html',1,'ostk::mathematics::geometry::d3::object::Ray'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a5853d8e020fb534c1c44a6f2350a45fc',1,'ostk::mathematics::geometry::d3::Intersection::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a0d244c15c77e18801be99d79a100420a',1,'ostk::mathematics::geometry::d3::object::Ray::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda9406e3c325bfc9873426e5eda4ba6e18',1,'ostk::mathematics::geometry::d3::Intersection::Ray()']]], + ['ray_2ecpp_297',['Ray.cpp',['../_ray_8cpp.html',1,'']]], + ['ray_2ehpp_298',['Ray.hpp',['../_ray_8hpp.html',1,'']]], + ['readme_2emd_299',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['rectify_300',['rectify',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::rectify()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a02150f4e7ec88996f75eaae63b215cfb',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::rectify()']]], + ['reflection_301',['Reflection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d2::Transformation::Reflection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d3::Transformation::Reflection()']]], + ['relativetolerance_5f_302',['relativeTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a45eb77bb99f110923f802b93556747f0',1,'ostk::mathematics::solver::NumericalSolver']]], + ['revolution_303',['Revolution',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aad09b2d48b2811c68e5a2bf421f7f2f2',1,'ostk::mathematics::geometry::Angle']]], + ['revolutions_304',['Revolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a14eb58729720306e1d9def33d93278f6',1,'ostk::mathematics::geometry::Angle']]], + ['ring_305',['Ring',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e1a66ca47ea2cd18df9898d2d7ab014',1,'ostk::mathematics::geometry::d2::object::Polygon::Ring()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0def0d0862a7b5a429699d9e49b09edf',1,'ostk::mathematics::geometry::d3::object::Polygon::Ring()']]], + ['rotatevector_306',['rotateVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['rotation_307',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aae0d29a9d8b14e1234dddf22c072ff53',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa12d31e920d91e59080771f26242b0c2',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationVector &aRotationVector)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6302652ab44a2a9d5ee08645e7ed107a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationMatrix &aRotationMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9af1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaf1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation()']]], + ['rotationaround_308',['RotationAround',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a970c932524b54aa74373a1a3d50f51af',1,'ostk::mathematics::geometry::d2::Transformation::RotationAround()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a3966d6c0dcf466528932566907b9c7b4',1,'ostk::mathematics::geometry::d3::Transformation::RotationAround()']]], + ['rotationmatrix_309',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ad52bbd103ee414308394cd4c9e9848c9',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a6622a7bdc0b5a4a05b1924d8efc4b7d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Matrix3d &aMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Real &aFirstCoefficient, const Real &aSecondCoefficient, const Real &aThirdCoefficient, const Real &aFourthCoefficient, const Real &aFifthCoefficient, const Real &aSixthCoefficient, const Real &aSeventhCoefficient, const Real &aEighthCoefficient, const Real &aNinthCoefficient)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a11b732b431882d3e29d63b5b350b88bc',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationMatrix()']]], + ['rotationmatrix_2ecpp_310',['RotationMatrix.cpp',['../_rotation_matrix_8cpp.html',1,'']]], + ['rotationmatrix_2ehpp_311',['RotationMatrix.hpp',['../_rotation_matrix_8hpp.html',1,'']]], + ['rotationvector_312',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac8579cff213d96389fcb8daa84d81063',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aee9309aec1e4543df08f57d40a0e51ed',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#af11a91008ad9a5e8682437777efcfb0d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector(const Vector3d &anAxis, const Angle &anAngle)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aca6953257290fbef4b31d1ae9ce91c8f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector(const Vector3d &anAxis, const Angle::Unit &anAngleUnit)']]], + ['rotationvector_2ecpp_313',['RotationVector.cpp',['../_rotation_vector_8cpp.html',1,'']]], + ['rotationvector_2ehpp_314',['RotationVector.hpp',['../_rotation_vector_8hpp.html',1,'']]], + ['rows_315',['Rows',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a803abf578ca73618baf5d92358a1fef5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['rowvectorxd_316',['RowVectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a9be86062a33aac0443deff367090b0a2',1,'ostk::mathematics::object']]], + ['rungekutta4_317',['RungeKutta4',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a2ad1d4b322353ee07200045be21ffb58',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttacashkarp54_318',['RungeKuttaCashKarp54',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a646d9d3aaac989d6fd4990f308ba3a37',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttadopri5_319',['RungeKuttaDopri5',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a3203013d28f8e40a899ed45ede9ad149',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttafehlberg78_320',['RungeKuttaFehlberg78',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a5002097811f3eb2dd4a34b826b1288e7',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rx_321',['RX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ad6019cbe46a2b47ad26470f996214bb0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['ry_322',['RY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a580d873ccc82cafaa3e18bedfe54a0f2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['rz_323',['RZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4056e0c5112b76e58df8afbf359cefa6',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]] ]; diff --git a/html/search/classes_0.js b/html/search/classes_0.js index f93c49d5..92b22ad8 100644 --- a/html/search/classes_0.js +++ b/html/search/classes_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['angle_390',['Angle',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html',1,'ostk::mathematics::geometry']]] + ['angle_406',['Angle',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html',1,'ostk::mathematics::geometry']]] ]; diff --git a/html/search/classes_1.js b/html/search/classes_1.js index 70882f69..c01f0927 100644 --- a/html/search/classes_1.js +++ b/html/search/classes_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['barycentricrational_391',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html',1,'ostk::mathematics::curvefitting::interpolator']]] + ['barycentricrational_407',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html',1,'ostk::mathematics::curvefitting::interpolator']]] ]; diff --git a/html/search/classes_2.js b/html/search/classes_2.js index 8c69b1a0..dd3efd28 100644 --- a/html/search/classes_2.js +++ b/html/search/classes_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['composite_392',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d2::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d3::object::Composite']]], - ['cone_393',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html',1,'ostk::mathematics::geometry::d3::object']]], - ['cubicspline_394',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html',1,'ostk::mathematics::curvefitting::interpolator']]], - ['cuboid_395',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html',1,'ostk::mathematics::geometry::d3::object']]] + ['composite_408',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d2::object::Composite'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html',1,'ostk::mathematics::geometry::d3::object::Composite']]], + ['cone_409',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html',1,'ostk::mathematics::geometry::d3::object']]], + ['cubicspline_410',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html',1,'ostk::mathematics::curvefitting::interpolator']]], + ['cuboid_411',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html',1,'ostk::mathematics::geometry::d3::object']]] ]; diff --git a/html/search/classes_3.js b/html/search/classes_3.js index 88a873e0..27d61107 100644 --- a/html/search/classes_3.js +++ b/html/search/classes_3.js @@ -1,4 +1,5 @@ var searchData= [ - ['ellipsoid_396',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html',1,'ostk::mathematics::geometry::d3::object']]] + ['ellipsoid_412',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html',1,'ostk::mathematics::geometry::d3::object']]], + ['eulerangle_413',['EulerAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]] ]; diff --git a/html/search/classes_4.js b/html/search/classes_4.js index 29a56fc2..11bd04e3 100644 --- a/html/search/classes_4.js +++ b/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['hasher_397',['Hasher',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher']]] + ['hasher_414',['Hasher',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher']]] ]; diff --git a/html/search/classes_5.js b/html/search/classes_5.js index 12a60e2f..a8229fd3 100644 --- a/html/search/classes_5.js +++ b/html/search/classes_5.js @@ -1,7 +1,7 @@ var searchData= [ - ['interpolator_398',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html',1,'ostk::mathematics::curvefitting']]], - ['intersection_399',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html',1,'ostk::mathematics::geometry::d2::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html',1,'ostk::mathematics::geometry::d3::Intersection']]], - ['interval_400',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html',1,'ostk::mathematics::object']]], - ['intervalbase_401',['IntervalBase',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html',1,'ostk::mathematics::object']]] + ['interpolator_415',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html',1,'ostk::mathematics::curvefitting']]], + ['intersection_416',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html',1,'ostk::mathematics::geometry::d2::Intersection'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html',1,'ostk::mathematics::geometry::d3::Intersection']]], + ['interval_417',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html',1,'ostk::mathematics::object']]], + ['intervalbase_418',['IntervalBase',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html',1,'ostk::mathematics::object']]] ]; diff --git a/html/search/classes_6.js b/html/search/classes_6.js index c6238ef7..12378913 100644 --- a/html/search/classes_6.js +++ b/html/search/classes_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['line_402',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d2::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d3::object::Line']]], - ['linear_403',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html',1,'ostk::mathematics::curvefitting::interpolator']]], - ['linestring_404',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d3::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d2::object::LineString']]] + ['line_419',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d2::object::Line'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html',1,'ostk::mathematics::geometry::d3::object::Line']]], + ['linear_420',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html',1,'ostk::mathematics::curvefitting::interpolator']]], + ['linestring_421',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d3::object::LineString'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html',1,'ostk::mathematics::geometry::d2::object::LineString']]] ]; diff --git a/html/search/classes_7.js b/html/search/classes_7.js index 884577e1..54ca31e2 100644 --- a/html/search/classes_7.js +++ b/html/search/classes_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['multilinestring_405',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html',1,'ostk::mathematics::geometry::d2::object']]], - ['multipolygon_406',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html',1,'ostk::mathematics::geometry::d2::object']]] + ['multilinestring_422',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html',1,'ostk::mathematics::geometry::d2::object']]], + ['multipolygon_423',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html',1,'ostk::mathematics::geometry::d2::object']]] ]; diff --git a/html/search/classes_8.js b/html/search/classes_8.js index c1a1b866..0f703751 100644 --- a/html/search/classes_8.js +++ b/html/search/classes_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['numericalsolver_407',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html',1,'ostk::mathematics::solver']]] + ['numericalsolver_424',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html',1,'ostk::mathematics::solver']]] ]; diff --git a/html/search/classes_9.js b/html/search/classes_9.js index 19c84f70..2bb12bad 100644 --- a/html/search/classes_9.js +++ b/html/search/classes_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['object_408',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html',1,'ostk::mathematics::geometry::d2::Object'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html',1,'ostk::mathematics::geometry::d3::Object']]] + ['object_425',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html',1,'ostk::mathematics::geometry::d2::Object'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html',1,'ostk::mathematics::geometry::d3::Object']]] ]; diff --git a/html/search/classes_a.js b/html/search/classes_a.js index bc3c5aab..4cf46467 100644 --- a/html/search/classes_a.js +++ b/html/search/classes_a.js @@ -1,8 +1,8 @@ var searchData= [ - ['plane_409',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html',1,'ostk::mathematics::geometry::d3::object']]], - ['point_410',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d2::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d3::object::Point']]], - ['pointset_411',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d3::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d2::object::PointSet']]], - ['polygon_412',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d2::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d3::object::Polygon']]], - ['pyramid_413',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html',1,'ostk::mathematics::geometry::d3::object']]] + ['plane_426',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html',1,'ostk::mathematics::geometry::d3::object']]], + ['point_427',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d2::object::Point'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html',1,'ostk::mathematics::geometry::d3::object::Point']]], + ['pointset_428',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d2::object::PointSet'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html',1,'ostk::mathematics::geometry::d3::object::PointSet']]], + ['polygon_429',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d2::object::Polygon'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html',1,'ostk::mathematics::geometry::d3::object::Polygon']]], + ['pyramid_430',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html',1,'ostk::mathematics::geometry::d3::object']]] ]; diff --git a/html/search/classes_b.js b/html/search/classes_b.js index bb0210b7..a9e8685c 100644 --- a/html/search/classes_b.js +++ b/html/search/classes_b.js @@ -1,4 +1,4 @@ var searchData= [ - ['quaternion_414',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]] + ['quaternion_431',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]] ]; diff --git a/html/search/classes_c.js b/html/search/classes_c.js index 306cdf9b..c3592e39 100644 --- a/html/search/classes_c.js +++ b/html/search/classes_c.js @@ -1,6 +1,6 @@ var searchData= [ - ['ray_415',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html',1,'ostk::mathematics::geometry::d3::object']]], - ['rotationmatrix_416',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]], - ['rotationvector_417',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]] + ['ray_432',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html',1,'ostk::mathematics::geometry::d3::object']]], + ['rotationmatrix_433',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]], + ['rotationvector_434',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html',1,'ostk::mathematics::geometry::d3::transformation::rotation']]] ]; diff --git a/html/search/classes_d.js b/html/search/classes_d.js index 24a35119..fce01ab6 100644 --- a/html/search/classes_d.js +++ b/html/search/classes_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['segment_418',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d2::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d3::object::Segment']]], - ['sphere_419',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html',1,'ostk::mathematics::geometry::d3::object']]] + ['segment_435',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d3::object::Segment'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html',1,'ostk::mathematics::geometry::d2::object::Segment']]], + ['sphere_436',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html',1,'ostk::mathematics::geometry::d3::object']]] ]; diff --git a/html/search/classes_e.js b/html/search/classes_e.js index 20b5da8e..8d38ae3b 100644 --- a/html/search/classes_e.js +++ b/html/search/classes_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['transformation_420',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html',1,'ostk::mathematics::geometry::d3::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html',1,'ostk::mathematics::geometry::d2::Transformation']]] + ['transformation_437',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html',1,'ostk::mathematics::geometry::d3::Transformation'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html',1,'ostk::mathematics::geometry::d2::Transformation']]] ]; diff --git a/html/search/defines_0.js b/html/search/defines_0.js index e4f20b32..46745bd8 100644 --- a/html/search/defines_0.js +++ b/html/search/defines_0.js @@ -1,8 +1,8 @@ var searchData= [ - ['default_5fdiscretization_5flevel_829',['DEFAULT_DISCRETIZATION_LEVEL',['../_cone_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Cone.hpp'],['../_pyramid_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Pyramid.hpp']]], - ['default_5fonly_5fin_5fsight_830',['DEFAULT_ONLY_IN_SIGHT',['../_pyramid_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Pyramid.hpp'],['../_ray_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Ray.hpp'],['../_sphere_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Sphere.hpp']]], - ['default_5forientation_831',['DEFAULT_ORIENTATION',['../_ellipsoid_8hpp.html#a5c684aeaeb24d197904b5a34839d2dd9',1,'Ellipsoid.hpp']]], - ['default_5fprecision_832',['DEFAULT_PRECISION',['../3_d_2_object_2_point_8hpp.html#a6d81881a7883657dbc659ca545d9085d',1,'Point.hpp']]], - ['default_5fray_5fcount_833',['DEFAULT_RAY_COUNT',['../_cone_8hpp.html#a95759f940e1d5e70e977d66fa8fcb5ec',1,'Cone.hpp']]] + ['default_5fdiscretization_5flevel_865',['DEFAULT_DISCRETIZATION_LEVEL',['../_cone_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Cone.hpp'],['../_pyramid_8hpp.html#a3eb9931e85ba4c9718113211e549e91d',1,'DEFAULT_DISCRETIZATION_LEVEL(): Pyramid.hpp']]], + ['default_5fonly_5fin_5fsight_866',['DEFAULT_ONLY_IN_SIGHT',['../_pyramid_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Pyramid.hpp'],['../_ray_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Ray.hpp'],['../_sphere_8hpp.html#af424617f7c785f4835e2feba5a5640f2',1,'DEFAULT_ONLY_IN_SIGHT(): Sphere.hpp']]], + ['default_5forientation_867',['DEFAULT_ORIENTATION',['../_ellipsoid_8hpp.html#a5c684aeaeb24d197904b5a34839d2dd9',1,'Ellipsoid.hpp']]], + ['default_5fprecision_868',['DEFAULT_PRECISION',['../3_d_2_object_2_point_8hpp.html#a6d81881a7883657dbc659ca545d9085d',1,'Point.hpp']]], + ['default_5fray_5fcount_869',['DEFAULT_RAY_COUNT',['../_cone_8hpp.html#a95759f940e1d5e70e977d66fa8fcb5ec',1,'Cone.hpp']]] ]; diff --git a/html/search/defines_1.js b/html/search/defines_1.js index 3ed2e645..8135a45e 100644 --- a/html/search/defines_1.js +++ b/html/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['eigen_5fmatrixbase_5fplugin_834',['EIGEN_MATRIXBASE_PLUGIN',['../_vector_8hpp.html#afc792de073c9a00a2f3739a451be4312',1,'Vector.hpp']]] + ['eigen_5fmatrixbase_5fplugin_870',['EIGEN_MATRIXBASE_PLUGIN',['../_vector_8hpp.html#afc792de073c9a00a2f3739a451be4312',1,'Vector.hpp']]] ]; diff --git a/html/search/enums_0.js b/html/search/enums_0.js index cf70cc12..b90a666c 100644 --- a/html/search/enums_0.js +++ b/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['format_777',['Format',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13',1,'ostk::mathematics::geometry::d2::Object::Format()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Format()']]] + ['axissequence_809',['AxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168c',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]] ]; diff --git a/html/search/enums_1.js b/html/search/enums_1.js index ab16afcf..8150859b 100644 --- a/html/search/enums_1.js +++ b/html/search/enums_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['logtype_778',['LogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5',1,'ostk::mathematics::solver::NumericalSolver']]] + ['format_810',['Format',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13',1,'ostk::mathematics::geometry::d2::Object::Format()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfc',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Format()']]] ]; diff --git a/html/search/enums_2.js b/html/search/enums_2.js index 1c4ad9e7..80469937 100644 --- a/html/search/enums_2.js +++ b/html/search/enums_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['steppertype_779',['StepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97',1,'ostk::mathematics::solver::NumericalSolver']]] + ['logtype_811',['LogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/enums_3.js b/html/search/enums_3.js index ec5fdc93..2f87a9f6 100644 --- a/html/search/enums_3.js +++ b/html/search/enums_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['type_780',['Type',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557',1,'ostk::mathematics::curvefitting::Interpolator::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faae',1,'ostk::mathematics::geometry::d2::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9',1,'ostk::mathematics::geometry::d2::Transformation::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cd',1,'ostk::mathematics::geometry::d3::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdac',1,'ostk::mathematics::geometry::d3::Transformation::Type()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201',1,'ostk::mathematics::object::IntervalBase::Type()']]] + ['steppertype_812',['StepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/enums_4.js b/html/search/enums_4.js index 2c97f04e..4e234cc3 100644 --- a/html/search/enums_4.js +++ b/html/search/enums_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['unit_781',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371',1,'ostk::mathematics::geometry::Angle']]] + ['type_813',['Type',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557',1,'ostk::mathematics::curvefitting::Interpolator::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faae',1,'ostk::mathematics::geometry::d2::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9',1,'ostk::mathematics::geometry::d2::Transformation::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cd',1,'ostk::mathematics::geometry::d3::Intersection::Type()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdac',1,'ostk::mathematics::geometry::d3::Transformation::Type()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201',1,'ostk::mathematics::object::IntervalBase::Type()']]] ]; diff --git a/html/search/enums_5.html b/html/search/enums_5.html new file mode 100644 index 00000000..d39b033a --- /dev/null +++ b/html/search/enums_5.html @@ -0,0 +1,30 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/html/search/enums_5.js b/html/search/enums_5.js new file mode 100644 index 00000000..af92f85a --- /dev/null +++ b/html/search/enums_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['unit_814',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371',1,'ostk::mathematics::geometry::Angle']]] +]; diff --git a/html/search/enumvalues_0.js b/html/search/enumvalues_0.js index 77523262..a555f58a 100644 --- a/html/search/enumvalues_0.js +++ b/html/search/enumvalues_0.js @@ -1,6 +1,6 @@ var searchData= [ - ['affine_782',['Affine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a5b525aab6e200981a842101f1bcbafc6',1,'ostk::mathematics::geometry::d2::Transformation::Affine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca5b525aab6e200981a842101f1bcbafc6',1,'ostk::mathematics::geometry::d3::Transformation::Affine()']]], - ['arcminute_783',['Arcminute',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6d59f6ca1b5de72cbdc10a6792bcf090',1,'ostk::mathematics::geometry::Angle']]], - ['arcsecond_784',['Arcsecond',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a7839ceecae19481f2e21e0ce3e11d3aa',1,'ostk::mathematics::geometry::Angle']]] + ['affine_815',['Affine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a5b525aab6e200981a842101f1bcbafc6',1,'ostk::mathematics::geometry::d2::Transformation::Affine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca5b525aab6e200981a842101f1bcbafc6',1,'ostk::mathematics::geometry::d3::Transformation::Affine()']]], + ['arcminute_816',['Arcminute',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6d59f6ca1b5de72cbdc10a6792bcf090',1,'ostk::mathematics::geometry::Angle']]], + ['arcsecond_817',['Arcsecond',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a7839ceecae19481f2e21e0ce3e11d3aa',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/enumvalues_1.js b/html/search/enumvalues_1.js index 036aa9f2..b7d85d77 100644 --- a/html/search/enumvalues_1.js +++ b/html/search/enumvalues_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['barycentricrational_785',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a98cf9ba70112c998166a82b6f289bb9f',1,'ostk::mathematics::curvefitting::Interpolator']]] + ['barycentricrational_818',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a98cf9ba70112c998166a82b6f289bb9f',1,'ostk::mathematics::curvefitting::Interpolator']]] ]; diff --git a/html/search/enumvalues_10.js b/html/search/enumvalues_10.js index 3aec3e83..38d6f41d 100644 --- a/html/search/enumvalues_10.js +++ b/html/search/enumvalues_10.js @@ -1,4 +1,5 @@ var searchData= [ - ['xyzs_826',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['xyz_859',['XYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['xyzs_860',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/enumvalues_11.html b/html/search/enumvalues_11.html new file mode 100644 index 00000000..aab485d3 --- /dev/null +++ b/html/search/enumvalues_11.html @@ -0,0 +1,30 @@ + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/html/search/enumvalues_11.js b/html/search/enumvalues_11.js new file mode 100644 index 00000000..7eb0e77f --- /dev/null +++ b/html/search/enumvalues_11.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['zxy_861',['ZXY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['zyx_862',['ZYX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]] +]; diff --git a/html/search/enumvalues_2.js b/html/search/enumvalues_2.js index 67a81c3b..3b1869b5 100644 --- a/html/search/enumvalues_2.js +++ b/html/search/enumvalues_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['closed_786',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a03f4a47830f97377a35321051685071e',1,'ostk::mathematics::object::IntervalBase']]], - ['complex_787',['Complex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d2::Intersection::Complex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d3::Intersection::Complex()']]], - ['cubicspline_788',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557abc050383dcd36a2e1f9481e562332cfa',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['cuboid_789',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdadccdaa100fb1b4c91e2e6114ab957e28',1,'ostk::mathematics::geometry::d3::Intersection']]] + ['closed_819',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a03f4a47830f97377a35321051685071e',1,'ostk::mathematics::object::IntervalBase']]], + ['complex_820',['Complex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d2::Intersection::Complex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda10b4eb76294b70d7fd6df997ff06edb1',1,'ostk::mathematics::geometry::d3::Intersection::Complex()']]], + ['cubicspline_821',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557abc050383dcd36a2e1f9481e562332cfa',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['cuboid_822',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdadccdaa100fb1b4c91e2e6114ab957e28',1,'ostk::mathematics::geometry::d3::Intersection']]] ]; diff --git a/html/search/enumvalues_3.js b/html/search/enumvalues_3.js index 97f188cc..210017f4 100644 --- a/html/search/enumvalues_3.js +++ b/html/search/enumvalues_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['degree_790',['Degree',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8',1,'ostk::mathematics::geometry::Angle']]] + ['degree_823',['Degree',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/enumvalues_4.js b/html/search/enumvalues_4.js index 3987c7fe..24a90d5e 100644 --- a/html/search/enumvalues_4.js +++ b/html/search/enumvalues_4.js @@ -1,5 +1,5 @@ var searchData= [ - ['ellipsoid_791',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaeee5397cecd880d16ef7244819aa383d',1,'ostk::mathematics::geometry::d3::Intersection']]], - ['empty_792',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d3::Intersection::Empty()']]] + ['ellipsoid_824',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaeee5397cecd880d16ef7244819aa383d',1,'ostk::mathematics::geometry::d3::Intersection']]], + ['empty_825',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdace2c8aed9c2fa0cfbed56cbda4d8bf07',1,'ostk::mathematics::geometry::d3::Intersection::Empty()']]] ]; diff --git a/html/search/enumvalues_5.js b/html/search/enumvalues_5.js index 5d0b1f31..ebbdee81 100644 --- a/html/search/enumvalues_5.js +++ b/html/search/enumvalues_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['halfopenleft_793',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ab5e08f9173f660e791d3ba99ff8281d7',1,'ostk::mathematics::object::IntervalBase']]], - ['halfopenright_794',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a484f1b37e0208f622a1e6f7a3ff8c2c3',1,'ostk::mathematics::object::IntervalBase']]] + ['halfopenleft_826',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ab5e08f9173f660e791d3ba99ff8281d7',1,'ostk::mathematics::object::IntervalBase']]], + ['halfopenright_827',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201a484f1b37e0208f622a1e6f7a3ff8c2c3',1,'ostk::mathematics::object::IntervalBase']]] ]; diff --git a/html/search/enumvalues_6.js b/html/search/enumvalues_6.js index 8d401619..cc2c722d 100644 --- a/html/search/enumvalues_6.js +++ b/html/search/enumvalues_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['identity_795',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9ac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]] + ['identity_828',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9ac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacac9c5c65fb4af9cf90eb99b3b84424189',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]] ]; diff --git a/html/search/enumvalues_7.js b/html/search/enumvalues_7.js index f9b74daa..615a13bc 100644 --- a/html/search/enumvalues_7.js +++ b/html/search/enumvalues_7.js @@ -1,8 +1,8 @@ var searchData= [ - ['line_796',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d3::Intersection::Line()']]], - ['linear_797',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a32a843da6ea40ab3b17a3421ccdf671b',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['linestring_798',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d3::Intersection::LineString()']]], - ['logadaptive_799',['LogAdaptive',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5aa412149ee02d5aaab7f9f710b2e39c5e',1,'ostk::mathematics::solver::NumericalSolver']]], - ['logconstant_800',['LogConstant',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5a40b79e6f53444b0a01aa353abfd9fe91',1,'ostk::mathematics::solver::NumericalSolver']]] + ['line_829',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4803e6b9e63dabf04de980788d6a13c4',1,'ostk::mathematics::geometry::d3::Intersection::Line()']]], + ['linear_830',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6318ad43cbddfa9b220213af2ac33557a32a843da6ea40ab3b17a3421ccdf671b',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['linestring_831',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2e321465690359abbb020a3619b1c937',1,'ostk::mathematics::geometry::d3::Intersection::LineString()']]], + ['logadaptive_832',['LogAdaptive',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5aa412149ee02d5aaab7f9f710b2e39c5e',1,'ostk::mathematics::solver::NumericalSolver']]], + ['logconstant_833',['LogConstant',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5a40b79e6f53444b0a01aa353abfd9fe91',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/enumvalues_8.js b/html/search/enumvalues_8.js index a5a676e9..52b6d8f9 100644 --- a/html/search/enumvalues_8.js +++ b/html/search/enumvalues_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['nolog_801',['NoLog',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5ac224e58a49e83bb9b94e2bd594fd5231',1,'ostk::mathematics::solver::NumericalSolver']]] + ['nolog_834',['NoLog',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad8a0c981770c8ee40f765cc17cf0c1a5ac224e58a49e83bb9b94e2bd594fd5231',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/enumvalues_9.js b/html/search/enumvalues_9.js index 56a4b606..a1330022 100644 --- a/html/search/enumvalues_9.js +++ b/html/search/enumvalues_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['open_802',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ac3bf447eabe632720a3aa1a7ce401274',1,'ostk::mathematics::object::IntervalBase']]] + ['open_835',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201ac3bf447eabe632720a3aa1a7ce401274',1,'ostk::mathematics::object::IntervalBase']]] ]; diff --git a/html/search/enumvalues_a.js b/html/search/enumvalues_a.js index e9c47730..0aba0603 100644 --- a/html/search/enumvalues_a.js +++ b/html/search/enumvalues_a.js @@ -1,8 +1,8 @@ var searchData= [ - ['plane_803',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda0d3adee051531c15b3509b4d4d75ce7b',1,'ostk::mathematics::geometry::d3::Intersection']]], - ['point_804',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d3::Intersection::Point()']]], - ['pointset_805',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()']]], - ['polygon_806',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d3::Intersection::Polygon()']]], - ['pyramid_807',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda5e5b0d93bab61584149905b5e5dc71a0',1,'ostk::mathematics::geometry::d3::Intersection']]] + ['plane_836',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda0d3adee051531c15b3509b4d4d75ce7b',1,'ostk::mathematics::geometry::d3::Intersection']]], + ['point_837',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda2a3cd5946cfd317eb99c3d32e35e2d4c',1,'ostk::mathematics::geometry::d3::Intersection::Point()']]], + ['pointset_838',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaaedf8f48dfa5b704b6c12b415707a1da',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()']]], + ['polygon_839',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4c0a11247d92f73fb84baa51e37a3263',1,'ostk::mathematics::geometry::d3::Intersection::Polygon()']]], + ['pyramid_840',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda5e5b0d93bab61584149905b5e5dc71a0',1,'ostk::mathematics::geometry::d3::Intersection']]] ]; diff --git a/html/search/enumvalues_b.js b/html/search/enumvalues_b.js index 11af8d4f..41517d50 100644 --- a/html/search/enumvalues_b.js +++ b/html/search/enumvalues_b.js @@ -1,12 +1,12 @@ var searchData= [ - ['radian_808',['Radian',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c',1,'ostk::mathematics::geometry::Angle']]], - ['ray_809',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda9406e3c325bfc9873426e5eda4ba6e18',1,'ostk::mathematics::geometry::d3::Intersection']]], - ['reflection_810',['Reflection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d2::Transformation::Reflection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d3::Transformation::Reflection()']]], - ['revolution_811',['Revolution',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aad09b2d48b2811c68e5a2bf421f7f2f2',1,'ostk::mathematics::geometry::Angle']]], - ['rotation_812',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9af1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaf1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation()']]], - ['rungekutta4_813',['RungeKutta4',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a2ad1d4b322353ee07200045be21ffb58',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttacashkarp54_814',['RungeKuttaCashKarp54',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a646d9d3aaac989d6fd4990f308ba3a37',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttadopri5_815',['RungeKuttaDopri5',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a3203013d28f8e40a899ed45ede9ad149',1,'ostk::mathematics::solver::NumericalSolver']]], - ['rungekuttafehlberg78_816',['RungeKuttaFehlberg78',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a5002097811f3eb2dd4a34b826b1288e7',1,'ostk::mathematics::solver::NumericalSolver']]] + ['radian_841',['Radian',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c',1,'ostk::mathematics::geometry::Angle']]], + ['ray_842',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda9406e3c325bfc9873426e5eda4ba6e18',1,'ostk::mathematics::geometry::d3::Intersection']]], + ['reflection_843',['Reflection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d2::Transformation::Reflection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaaea1e492943ccbad7ee270ec1e064758',1,'ostk::mathematics::geometry::d3::Transformation::Reflection()']]], + ['revolution_844',['Revolution',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aad09b2d48b2811c68e5a2bf421f7f2f2',1,'ostk::mathematics::geometry::Angle']]], + ['rotation_845',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9af1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaf1a42bd417390fc63b030a519624607a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation()']]], + ['rungekutta4_846',['RungeKutta4',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a2ad1d4b322353ee07200045be21ffb58',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttacashkarp54_847',['RungeKuttaCashKarp54',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a646d9d3aaac989d6fd4990f308ba3a37',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttadopri5_848',['RungeKuttaDopri5',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a3203013d28f8e40a899ed45ede9ad149',1,'ostk::mathematics::solver::NumericalSolver']]], + ['rungekuttafehlberg78_849',['RungeKuttaFehlberg78',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6d9ca28da654c92c6f36878e6a5efd97a5002097811f3eb2dd4a34b826b1288e7',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/enumvalues_c.js b/html/search/enumvalues_c.js index 30bd86a5..405a9fe8 100644 --- a/html/search/enumvalues_c.js +++ b/html/search/enumvalues_c.js @@ -1,9 +1,9 @@ var searchData= [ - ['scaling_817',['Scaling',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9abc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d2::Transformation::Scaling()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacabc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d3::Transformation::Scaling()']]], - ['segment_818',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d3::Intersection::Segment()']]], - ['shear_819',['Shear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d2::Transformation::Shear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d3::Transformation::Shear()']]], - ['sphere_820',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdab7095f057db3fefa7325ad93a04e14fd',1,'ostk::mathematics::geometry::d3::Intersection']]], - ['standard_821',['Standard',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aeb6d8ae6f20283755b339c0dc273988b',1,'ostk::mathematics::geometry::d2::Object']]], - ['sxyz_822',['SXYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['scaling_850',['Scaling',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9abc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d2::Transformation::Scaling()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacabc967dc2d57e6eff184a821bf7577a80',1,'ostk::mathematics::geometry::d3::Transformation::Scaling()']]], + ['segment_851',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaea4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cda4b77e2a9d8e9cfc299f504b32d6e3d2b',1,'ostk::mathematics::geometry::d3::Intersection::Segment()']]], + ['shear_852',['Shear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d2::Transformation::Shear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca02414922b70cc0f9d7c841b0c70a0f94',1,'ostk::mathematics::geometry::d3::Transformation::Shear()']]], + ['sphere_853',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdab7095f057db3fefa7325ad93a04e14fd',1,'ostk::mathematics::geometry::d3::Intersection']]], + ['standard_854',['Standard',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aeb6d8ae6f20283755b339c0dc273988b',1,'ostk::mathematics::geometry::d2::Object']]], + ['sxyz_855',['SXYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a69f1621be80ba171c61830a76d481bfcabd514d63fd7944bc7d3718aeef3684be',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/enumvalues_d.js b/html/search/enumvalues_d.js index 381b5768..32ac4c06 100644 --- a/html/search/enumvalues_d.js +++ b/html/search/enumvalues_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['translation_823',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]] + ['translation_856',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9a6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdaca6dd08874f83507e9c7b23f1a46b7fa7c',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]] ]; diff --git a/html/search/enumvalues_e.js b/html/search/enumvalues_e.js index cb2f0849..1bc6e2dd 100644 --- a/html/search/enumvalues_e.js +++ b/html/search/enumvalues_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['undefined_824',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Object::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::object::IntervalBase::Undefined()']]] + ['undefined_857',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab05d25c82a3b3118aea0aecc2570faaeaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Object::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a119ede15c4e2af41c03d684fc37e06a9aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ae7e12ecebd39f90c9ac81a69db3233cdaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a86fdae5e12b1e722211ade5d0b31cdacaec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a9c6a3ae1411b75a6c0cac397a6ace371aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval_base.html#a2ad76e98fc37333faeb21490c7b4f201aec0fc0100c4fc1ce4eea230c3dc10360',1,'ostk::mathematics::object::IntervalBase::Undefined()']]] ]; diff --git a/html/search/enumvalues_f.js b/html/search/enumvalues_f.js index dcd21a51..6709cb2b 100644 --- a/html/search/enumvalues_f.js +++ b/html/search/enumvalues_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['wkt_825',['WKT',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13a9ab05752e6beff2c783a6046ed592661',1,'ostk::mathematics::geometry::d2::Object']]] + ['wkt_858',['WKT',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9ba9529b76d02fa7e4d1d285a8cf1c13a9ab05752e6beff2c783a6046ed592661',1,'ostk::mathematics::geometry::d2::Object']]] ]; diff --git a/html/search/files_0.js b/html/search/files_0.js index 31036f41..4f36ac79 100644 --- a/html/search/files_0.js +++ b/html/search/files_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['angle_2ecpp_432',['Angle.cpp',['../_angle_8cpp.html',1,'']]], - ['angle_2ehpp_433',['Angle.hpp',['../_angle_8hpp.html',1,'']]] + ['angle_2ecpp_449',['Angle.cpp',['../_angle_8cpp.html',1,'']]], + ['angle_2ehpp_450',['Angle.hpp',['../_angle_8hpp.html',1,'']]] ]; diff --git a/html/search/files_1.js b/html/search/files_1.js index 849bd3f0..b4a8122a 100644 --- a/html/search/files_1.js +++ b/html/search/files_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['barycentricrational_2ecpp_434',['BarycentricRational.cpp',['../_barycentric_rational_8cpp.html',1,'']]], - ['barycentricrational_2ehpp_435',['BarycentricRational.hpp',['../_barycentric_rational_8hpp.html',1,'']]] + ['barycentricrational_2ecpp_451',['BarycentricRational.cpp',['../_barycentric_rational_8cpp.html',1,'']]], + ['barycentricrational_2ehpp_452',['BarycentricRational.hpp',['../_barycentric_rational_8hpp.html',1,'']]] ]; diff --git a/html/search/files_2.js b/html/search/files_2.js index f220b5c6..29225612 100644 --- a/html/search/files_2.js +++ b/html/search/files_2.js @@ -1,12 +1,12 @@ var searchData= [ - ['composite_2ecpp_436',['Composite.cpp',['../2_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)']]], - ['composite_2ehpp_437',['Composite.hpp',['../2_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)']]], - ['cone_2ecpp_438',['Cone.cpp',['../_cone_8cpp.html',1,'']]], - ['cone_2ehpp_439',['Cone.hpp',['../_cone_8hpp.html',1,'']]], - ['contributing_2emd_440',['CONTRIBUTING.md',['../_c_o_n_t_r_i_b_u_t_i_n_g_8md.html',1,'']]], - ['cubicspline_2ecpp_441',['CubicSpline.cpp',['../_cubic_spline_8cpp.html',1,'']]], - ['cubicspline_2ehpp_442',['CubicSpline.hpp',['../_cubic_spline_8hpp.html',1,'']]], - ['cuboid_2ecpp_443',['Cuboid.cpp',['../_cuboid_8cpp.html',1,'']]], - ['cuboid_2ehpp_444',['Cuboid.hpp',['../_cuboid_8hpp.html',1,'']]] + ['composite_2ecpp_453',['Composite.cpp',['../2_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8cpp.html',1,'(Global Namespace)']]], + ['composite_2ehpp_454',['Composite.hpp',['../2_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_composite_8hpp.html',1,'(Global Namespace)']]], + ['cone_2ecpp_455',['Cone.cpp',['../_cone_8cpp.html',1,'']]], + ['cone_2ehpp_456',['Cone.hpp',['../_cone_8hpp.html',1,'']]], + ['contributing_2emd_457',['CONTRIBUTING.md',['../_c_o_n_t_r_i_b_u_t_i_n_g_8md.html',1,'']]], + ['cubicspline_2ecpp_458',['CubicSpline.cpp',['../_cubic_spline_8cpp.html',1,'']]], + ['cubicspline_2ehpp_459',['CubicSpline.hpp',['../_cubic_spline_8hpp.html',1,'']]], + ['cuboid_2ecpp_460',['Cuboid.cpp',['../_cuboid_8cpp.html',1,'']]], + ['cuboid_2ehpp_461',['Cuboid.hpp',['../_cuboid_8hpp.html',1,'']]] ]; diff --git a/html/search/files_3.js b/html/search/files_3.js index 1693a8f5..abcb83b6 100644 --- a/html/search/files_3.js +++ b/html/search/files_3.js @@ -1,7 +1,8 @@ var searchData= [ - ['eigen_2ehpp_445',['Eigen.hpp',['../_eigen_8hpp.html',1,'']]], - ['ellipsoid_2ecpp_446',['Ellipsoid.cpp',['../_ellipsoid_8cpp.html',1,'']]], - ['ellipsoid_2ehpp_447',['Ellipsoid.hpp',['../_ellipsoid_8hpp.html',1,'']]], - ['eulerangle_2ehpp_448',['EulerAngle.hpp',['../_euler_angle_8hpp.html',1,'']]] + ['eigen_2ehpp_462',['Eigen.hpp',['../_eigen_8hpp.html',1,'']]], + ['ellipsoid_2ecpp_463',['Ellipsoid.cpp',['../_ellipsoid_8cpp.html',1,'']]], + ['ellipsoid_2ehpp_464',['Ellipsoid.hpp',['../_ellipsoid_8hpp.html',1,'']]], + ['eulerangle_2ecpp_465',['EulerAngle.cpp',['../_euler_angle_8cpp.html',1,'']]], + ['eulerangle_2ehpp_466',['EulerAngle.hpp',['../_euler_angle_8hpp.html',1,'']]] ]; diff --git a/html/search/files_4.js b/html/search/files_4.js index acb628eb..89069ad3 100644 --- a/html/search/files_4.js +++ b/html/search/files_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['interpolator_2ecpp_449',['Interpolator.cpp',['../_interpolator_8cpp.html',1,'']]], - ['interpolator_2ehpp_450',['Interpolator.hpp',['../_interpolator_8hpp.html',1,'']]], - ['intersection_2ecpp_451',['Intersection.cpp',['../2_d_2_intersection_8cpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8cpp.html',1,'(Global Namespace)']]], - ['intersection_2ehpp_452',['Intersection.hpp',['../2_d_2_intersection_8hpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8hpp.html',1,'(Global Namespace)']]], - ['interval_2ehpp_453',['Interval.hpp',['../_interval_8hpp.html',1,'']]], - ['interval_2etpp_454',['Interval.tpp',['../_interval_8tpp.html',1,'']]] + ['interpolator_2ecpp_467',['Interpolator.cpp',['../_interpolator_8cpp.html',1,'']]], + ['interpolator_2ehpp_468',['Interpolator.hpp',['../_interpolator_8hpp.html',1,'']]], + ['intersection_2ecpp_469',['Intersection.cpp',['../2_d_2_intersection_8cpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8cpp.html',1,'(Global Namespace)']]], + ['intersection_2ehpp_470',['Intersection.hpp',['../2_d_2_intersection_8hpp.html',1,'(Global Namespace)'],['../3_d_2_intersection_8hpp.html',1,'(Global Namespace)']]], + ['interval_2ehpp_471',['Interval.hpp',['../_interval_8hpp.html',1,'']]], + ['interval_2etpp_472',['Interval.tpp',['../_interval_8tpp.html',1,'']]] ]; diff --git a/html/search/files_5.js b/html/search/files_5.js index c3d1aa9e..765ba10d 100644 --- a/html/search/files_5.js +++ b/html/search/files_5.js @@ -1,9 +1,9 @@ var searchData= [ - ['line_2ecpp_455',['Line.cpp',['../2_d_2_object_2_line_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8cpp.html',1,'(Global Namespace)']]], - ['line_2ehpp_456',['Line.hpp',['../2_d_2_object_2_line_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8hpp.html',1,'(Global Namespace)']]], - ['linear_2ecpp_457',['Linear.cpp',['../_linear_8cpp.html',1,'']]], - ['linear_2ehpp_458',['Linear.hpp',['../_linear_8hpp.html',1,'']]], - ['linestring_2ecpp_459',['LineString.cpp',['../2_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)']]], - ['linestring_2ehpp_460',['LineString.hpp',['../2_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)']]] + ['line_2ecpp_473',['Line.cpp',['../2_d_2_object_2_line_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8cpp.html',1,'(Global Namespace)']]], + ['line_2ehpp_474',['Line.hpp',['../2_d_2_object_2_line_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_8hpp.html',1,'(Global Namespace)']]], + ['linear_2ecpp_475',['Linear.cpp',['../_linear_8cpp.html',1,'']]], + ['linear_2ehpp_476',['Linear.hpp',['../_linear_8hpp.html',1,'']]], + ['linestring_2ecpp_477',['LineString.cpp',['../2_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8cpp.html',1,'(Global Namespace)']]], + ['linestring_2ehpp_478',['LineString.hpp',['../2_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_line_string_8hpp.html',1,'(Global Namespace)']]] ]; diff --git a/html/search/files_6.js b/html/search/files_6.js index e1752072..ce7bd894 100644 --- a/html/search/files_6.js +++ b/html/search/files_6.js @@ -1,8 +1,8 @@ var searchData= [ - ['matrix_2ecpp_461',['Matrix.cpp',['../_matrix_8cpp.html',1,'']]], - ['matrix_2ehpp_462',['Matrix.hpp',['../_matrix_8hpp.html',1,'']]], - ['multilinestring_2ehpp_463',['MultiLineString.hpp',['../_multi_line_string_8hpp.html',1,'']]], - ['multipolygon_2ecpp_464',['MultiPolygon.cpp',['../_multi_polygon_8cpp.html',1,'']]], - ['multipolygon_2ehpp_465',['MultiPolygon.hpp',['../_multi_polygon_8hpp.html',1,'']]] + ['matrix_2ecpp_479',['Matrix.cpp',['../_matrix_8cpp.html',1,'']]], + ['matrix_2ehpp_480',['Matrix.hpp',['../_matrix_8hpp.html',1,'']]], + ['multilinestring_2ehpp_481',['MultiLineString.hpp',['../_multi_line_string_8hpp.html',1,'']]], + ['multipolygon_2ecpp_482',['MultiPolygon.cpp',['../_multi_polygon_8cpp.html',1,'']]], + ['multipolygon_2ehpp_483',['MultiPolygon.hpp',['../_multi_polygon_8hpp.html',1,'']]] ]; diff --git a/html/search/files_7.js b/html/search/files_7.js index 4b761365..f0ee8abc 100644 --- a/html/search/files_7.js +++ b/html/search/files_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['numericalsolver_2ecpp_466',['NumericalSolver.cpp',['../_numerical_solver_8cpp.html',1,'']]], - ['numericalsolver_2ehpp_467',['NumericalSolver.hpp',['../_numerical_solver_8hpp.html',1,'']]] + ['numericalsolver_2ecpp_484',['NumericalSolver.cpp',['../_numerical_solver_8cpp.html',1,'']]], + ['numericalsolver_2ehpp_485',['NumericalSolver.hpp',['../_numerical_solver_8hpp.html',1,'']]] ]; diff --git a/html/search/files_8.js b/html/search/files_8.js index 7fdc86ae..db739976 100644 --- a/html/search/files_8.js +++ b/html/search/files_8.js @@ -1,5 +1,5 @@ var searchData= [ - ['object_2ecpp_468',['Object.cpp',['../2_d_2_object_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_8cpp.html',1,'(Global Namespace)']]], - ['object_2ehpp_469',['Object.hpp',['../_geometry_22_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_geometry_23_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_object_8hpp.html',1,'(Global Namespace)']]] + ['object_2ecpp_486',['Object.cpp',['../2_d_2_object_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_8cpp.html',1,'(Global Namespace)']]], + ['object_2ehpp_487',['Object.hpp',['../_geometry_22_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_geometry_23_d_2_object_8hpp.html',1,'(Global Namespace)'],['../_object_8hpp.html',1,'(Global Namespace)']]] ]; diff --git a/html/search/files_9.js b/html/search/files_9.js index 6f8b35c8..abd79652 100644 --- a/html/search/files_9.js +++ b/html/search/files_9.js @@ -1,13 +1,13 @@ var searchData= [ - ['plane_2ecpp_470',['Plane.cpp',['../_plane_8cpp.html',1,'']]], - ['plane_2ehpp_471',['Plane.hpp',['../_plane_8hpp.html',1,'']]], - ['point_2ecpp_472',['Point.cpp',['../2_d_2_object_2_point_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8cpp.html',1,'(Global Namespace)']]], - ['point_2ehpp_473',['Point.hpp',['../2_d_2_object_2_point_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8hpp.html',1,'(Global Namespace)']]], - ['pointset_2ecpp_474',['PointSet.cpp',['../2_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)']]], - ['pointset_2ehpp_475',['PointSet.hpp',['../2_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)']]], - ['polygon_2ecpp_476',['Polygon.cpp',['../2_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)']]], - ['polygon_2ehpp_477',['Polygon.hpp',['../2_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)']]], - ['pyramid_2ecpp_478',['Pyramid.cpp',['../_pyramid_8cpp.html',1,'']]], - ['pyramid_2ehpp_479',['Pyramid.hpp',['../_pyramid_8hpp.html',1,'']]] + ['plane_2ecpp_488',['Plane.cpp',['../_plane_8cpp.html',1,'']]], + ['plane_2ehpp_489',['Plane.hpp',['../_plane_8hpp.html',1,'']]], + ['point_2ecpp_490',['Point.cpp',['../2_d_2_object_2_point_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8cpp.html',1,'(Global Namespace)']]], + ['point_2ehpp_491',['Point.hpp',['../2_d_2_object_2_point_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_8hpp.html',1,'(Global Namespace)']]], + ['pointset_2ecpp_492',['PointSet.cpp',['../2_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8cpp.html',1,'(Global Namespace)']]], + ['pointset_2ehpp_493',['PointSet.hpp',['../2_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_point_set_8hpp.html',1,'(Global Namespace)']]], + ['polygon_2ecpp_494',['Polygon.cpp',['../2_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8cpp.html',1,'(Global Namespace)']]], + ['polygon_2ehpp_495',['Polygon.hpp',['../2_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_polygon_8hpp.html',1,'(Global Namespace)']]], + ['pyramid_2ecpp_496',['Pyramid.cpp',['../_pyramid_8cpp.html',1,'']]], + ['pyramid_2ehpp_497',['Pyramid.hpp',['../_pyramid_8hpp.html',1,'']]] ]; diff --git a/html/search/files_a.js b/html/search/files_a.js index f9448b91..199a11e9 100644 --- a/html/search/files_a.js +++ b/html/search/files_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['quaternion_2ecpp_480',['Quaternion.cpp',['../_quaternion_8cpp.html',1,'']]], - ['quaternion_2ehpp_481',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] + ['quaternion_2ecpp_498',['Quaternion.cpp',['../_quaternion_8cpp.html',1,'']]], + ['quaternion_2ehpp_499',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] ]; diff --git a/html/search/files_b.js b/html/search/files_b.js index d27ab3d2..e56715bd 100644 --- a/html/search/files_b.js +++ b/html/search/files_b.js @@ -1,10 +1,10 @@ var searchData= [ - ['ray_2ecpp_482',['Ray.cpp',['../_ray_8cpp.html',1,'']]], - ['ray_2ehpp_483',['Ray.hpp',['../_ray_8hpp.html',1,'']]], - ['readme_2emd_484',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], - ['rotationmatrix_2ecpp_485',['RotationMatrix.cpp',['../_rotation_matrix_8cpp.html',1,'']]], - ['rotationmatrix_2ehpp_486',['RotationMatrix.hpp',['../_rotation_matrix_8hpp.html',1,'']]], - ['rotationvector_2ecpp_487',['RotationVector.cpp',['../_rotation_vector_8cpp.html',1,'']]], - ['rotationvector_2ehpp_488',['RotationVector.hpp',['../_rotation_vector_8hpp.html',1,'']]] + ['ray_2ecpp_500',['Ray.cpp',['../_ray_8cpp.html',1,'']]], + ['ray_2ehpp_501',['Ray.hpp',['../_ray_8hpp.html',1,'']]], + ['readme_2emd_502',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['rotationmatrix_2ecpp_503',['RotationMatrix.cpp',['../_rotation_matrix_8cpp.html',1,'']]], + ['rotationmatrix_2ehpp_504',['RotationMatrix.hpp',['../_rotation_matrix_8hpp.html',1,'']]], + ['rotationvector_2ecpp_505',['RotationVector.cpp',['../_rotation_vector_8cpp.html',1,'']]], + ['rotationvector_2ehpp_506',['RotationVector.hpp',['../_rotation_vector_8hpp.html',1,'']]] ]; diff --git a/html/search/files_c.js b/html/search/files_c.js index e2c2c80b..7a1b9be9 100644 --- a/html/search/files_c.js +++ b/html/search/files_c.js @@ -1,7 +1,7 @@ var searchData= [ - ['segment_2ecpp_489',['Segment.cpp',['../2_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)']]], - ['segment_2ehpp_490',['Segment.hpp',['../2_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)']]], - ['sphere_2ecpp_491',['Sphere.cpp',['../_sphere_8cpp.html',1,'']]], - ['sphere_2ehpp_492',['Sphere.hpp',['../_sphere_8hpp.html',1,'']]] + ['segment_2ecpp_507',['Segment.cpp',['../2_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8cpp.html',1,'(Global Namespace)']]], + ['segment_2ehpp_508',['Segment.hpp',['../2_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)'],['../3_d_2_object_2_segment_8hpp.html',1,'(Global Namespace)']]], + ['sphere_2ecpp_509',['Sphere.cpp',['../_sphere_8cpp.html',1,'']]], + ['sphere_2ehpp_510',['Sphere.hpp',['../_sphere_8hpp.html',1,'']]] ]; diff --git a/html/search/files_d.js b/html/search/files_d.js index 0d03d521..4f11691e 100644 --- a/html/search/files_d.js +++ b/html/search/files_d.js @@ -1,6 +1,6 @@ var searchData= [ - ['transformation_2ecpp_493',['Transformation.cpp',['../2_d_2_transformation_8cpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8cpp.html',1,'(Global Namespace)']]], - ['transformation_2ehpp_494',['Transformation.hpp',['../2_d_2_transformation_8hpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8hpp.html',1,'(Global Namespace)']]], - ['tutorial_2emd_495',['Tutorial.md',['../_tutorial_8md.html',1,'']]] + ['transformation_2ecpp_511',['Transformation.cpp',['../2_d_2_transformation_8cpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8cpp.html',1,'(Global Namespace)']]], + ['transformation_2ehpp_512',['Transformation.hpp',['../2_d_2_transformation_8hpp.html',1,'(Global Namespace)'],['../3_d_2_transformation_8hpp.html',1,'(Global Namespace)']]], + ['tutorial_2emd_513',['Tutorial.md',['../_tutorial_8md.html',1,'']]] ]; diff --git a/html/search/files_e.js b/html/search/files_e.js index c24c68af..90aa2b46 100644 --- a/html/search/files_e.js +++ b/html/search/files_e.js @@ -1,5 +1,5 @@ var searchData= [ - ['vector_2ecpp_496',['Vector.cpp',['../_vector_8cpp.html',1,'']]], - ['vector_2ehpp_497',['Vector.hpp',['../_vector_8hpp.html',1,'']]] + ['vector_2ecpp_514',['Vector.cpp',['../_vector_8cpp.html',1,'']]], + ['vector_2ehpp_515',['Vector.hpp',['../_vector_8hpp.html',1,'']]] ]; diff --git a/html/search/functions_0.js b/html/search/functions_0.js index 256b8ad9..cace49ca 100644 --- a/html/search/functions_0.js +++ b/html/search/functions_0.js @@ -1,20 +1,20 @@ var searchData= [ - ['accesscomposite_498',['accessComposite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a74ec0b78bab654fc7ae2ba9795b32778',1,'ostk::mathematics::geometry::d2::Intersection::accessComposite()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#abefdf18f9b1dd525b49f7a933a9364b1',1,'ostk::mathematics::geometry::d3::Intersection::accessComposite()']]], - ['accesslowerbound_499',['accessLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac2e35a2096405efb9a7ab511a1c2e532',1,'ostk::mathematics::object::Interval']]], - ['accessmatrix_500',['accessMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4e911a9772e1740533c371d9c89cefb8',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['accessobjectat_501',['accessObjectAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a05508e89ea2f4af51e9cc5c11f297bf9',1,'ostk::mathematics::geometry::d2::object::Composite::accessObjectAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4ad37ad34b9cbc88dd613de55aa71bbe',1,'ostk::mathematics::geometry::d3::object::Composite::accessObjectAt()']]], - ['accessobjects_502',['accessObjects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5559e88bf01995f1c798d9083712758c',1,'ostk::mathematics::geometry::d2::object::Composite::accessObjects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a22d58efe4c8dcabb5b7d0c9f15dd76ac',1,'ostk::mathematics::geometry::d3::object::Composite::accessObjects()']]], - ['accessobservedstatevectors_503',['accessObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad7d60a1c86d369700734a572d6960da0',1,'ostk::mathematics::solver::NumericalSolver']]], - ['accesspointat_504',['accessPointAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad45555762f8bc004139ca09e49432d8a',1,'ostk::mathematics::geometry::d2::object::LineString::accessPointAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a06488a8c9956ec63215f8cceb6380b27',1,'ostk::mathematics::geometry::d3::object::LineString::accessPointAt()']]], - ['accessupperbound_505',['accessUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a575cb7312386085246bed0ee94aeda56',1,'ostk::mathematics::object::Interval']]], - ['angle_506',['Angle',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0514385b3b70596b16568a4f6a8b89f7',1,'ostk::mathematics::geometry::Angle']]], - ['angulardifferencewith_507',['angularDifferenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a012834daa1dcccf7a85d69f84b265dfb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['anycontains_508',['anyContains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a2249520e6059ea385d2b7bd2ff4b78ae',1,'ostk::mathematics::geometry::d2::object::Composite::anyContains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae6722f4d87b91c43645c2176c7effe47',1,'ostk::mathematics::geometry::d2::object::Composite::anyContains(const Composite &aComposite) const']]], - ['applyto_509',['applyTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#acc8517da6833948aef8183180d0b59be',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a5d1de9866945fa5b6057832b90f9e884',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Vector2d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#adfd45137a2eedea1ce1877a80abe12a9',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Unique< Object > &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a9ec64a3aedca2bde159fe870833e3e95',1,'ostk::mathematics::geometry::d3::Transformation::applyTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a7991674520692cab362fdb67e8ce5a00',1,'ostk::mathematics::geometry::d3::Transformation::applyTo(const Vector3d &aVector) const']]], - ['applytransformation_510',['applyTransformation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aa1fd52d4955be0b4ee647ac2971e72bf',1,'ostk::mathematics::geometry::d2::object::Composite::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3a157e132491ce9f98561dff3c4959d4',1,'ostk::mathematics::geometry::d2::object::Line::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a0d3a24eba42a2d7449259b890d0bb30f',1,'ostk::mathematics::geometry::d2::object::LineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afec5f43815879ddfcb5051dd7ac40009',1,'ostk::mathematics::geometry::d2::object::MultiLineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a876015bf7a3b8667b8cb94627435a920',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acae5fb88afef113a24cc77a3b536a2c9',1,'ostk::mathematics::geometry::d2::object::Point::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#aa0b9b22f3a53b89d79056596490bbb0d',1,'ostk::mathematics::geometry::d2::object::PointSet::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a98902fdd8d77f9f6f0d6f833fa007ada',1,'ostk::mathematics::geometry::d2::object::Polygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a678b14d476c41b11372b86e9db54b3a6',1,'ostk::mathematics::geometry::d2::object::Segment::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#add0c7edfac25cbd241f82edbb1ce1476',1,'ostk::mathematics::geometry::d2::Object::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a07770aa678f84c74355bf7488b4df425',1,'ostk::mathematics::geometry::d3::object::Composite::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae0eb36a3ddb55789fb3fd382ad5a5b1b',1,'ostk::mathematics::geometry::d3::object::Cone::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a8471b1cbbaa3498833f6fb6f9d2bab5a',1,'ostk::mathematics::geometry::d3::object::Cuboid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e8568dfcf2f261ea99c5a1c4edc2c1a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a5d3a7527694d5581fbd8ea6cf438d74c',1,'ostk::mathematics::geometry::d3::object::Line::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2bfff9b3a14df67fac884fd122315145',1,'ostk::mathematics::geometry::d3::object::LineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab4e329b825fa0a3aa24c2c4b7ebfb432',1,'ostk::mathematics::geometry::d3::object::Plane::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a99c3b0b78faa977d4c6bd526286a0815',1,'ostk::mathematics::geometry::d3::object::Point::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a750ddc45120fa67b224c65f5ae782ce2',1,'ostk::mathematics::geometry::d3::object::PointSet::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ad2265d32b954c38b63c273acd45bdc4d',1,'ostk::mathematics::geometry::d3::object::Polygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aec8ebca28ff89fd03a088d399de8e6e4',1,'ostk::mathematics::geometry::d3::object::Pyramid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3a226ee06322255306b029e004dac647',1,'ostk::mathematics::geometry::d3::object::Ray::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af3da3893add570615236f1e5ab4971ff',1,'ostk::mathematics::geometry::d3::object::Segment::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aec7fa1a21969f2175948bd57ac8a46ff',1,'ostk::mathematics::geometry::d3::object::Sphere::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a925a50c2bb1c31f396e469b74595e42a',1,'ostk::mathematics::geometry::d3::Object::applyTransformation()']]], - ['arcminutes_511',['Arcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a73f3742b596248a4ea84db75712cd40a',1,'ostk::mathematics::geometry::Angle']]], - ['arcseconds_512',['Arcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad8845fbfd652eb58936c0b01da672c07',1,'ostk::mathematics::geometry::Angle']]], - ['as_513',['as',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab61bad3ddb1b3810311ffe4d517e7b79',1,'ostk::mathematics::geometry::d2::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a1736931ccff0a138dbbf02b87bd6b5a7',1,'ostk::mathematics::geometry::d2::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ac93f620075e3364e9cdaef6c6191c4f9',1,'ostk::mathematics::geometry::d3::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a77bcf425bb31b5265f028de762878699',1,'ostk::mathematics::geometry::d3::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#acc1ec9fde56128d7fde8b96fa57180c4',1,'ostk::mathematics::geometry::d3::Object::as()']]], - ['asvector_514',['asVector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a2e3cfa4a339fec6203c201ab9922f35b',1,'ostk::mathematics::geometry::d2::object::Point::asVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a1d9614ed94b6049d6ce56ae529e7ca2b',1,'ostk::mathematics::geometry::d3::object::Point::asVector()']]] + ['accesscomposite_516',['accessComposite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a74ec0b78bab654fc7ae2ba9795b32778',1,'ostk::mathematics::geometry::d2::Intersection::accessComposite()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#abefdf18f9b1dd525b49f7a933a9364b1',1,'ostk::mathematics::geometry::d3::Intersection::accessComposite()']]], + ['accesslowerbound_517',['accessLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac2e35a2096405efb9a7ab511a1c2e532',1,'ostk::mathematics::object::Interval']]], + ['accessmatrix_518',['accessMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4e911a9772e1740533c371d9c89cefb8',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['accessobjectat_519',['accessObjectAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a05508e89ea2f4af51e9cc5c11f297bf9',1,'ostk::mathematics::geometry::d2::object::Composite::accessObjectAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4ad37ad34b9cbc88dd613de55aa71bbe',1,'ostk::mathematics::geometry::d3::object::Composite::accessObjectAt()']]], + ['accessobjects_520',['accessObjects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5559e88bf01995f1c798d9083712758c',1,'ostk::mathematics::geometry::d2::object::Composite::accessObjects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a22d58efe4c8dcabb5b7d0c9f15dd76ac',1,'ostk::mathematics::geometry::d3::object::Composite::accessObjects()']]], + ['accessobservedstatevectors_521',['accessObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad7d60a1c86d369700734a572d6960da0',1,'ostk::mathematics::solver::NumericalSolver']]], + ['accesspointat_522',['accessPointAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad45555762f8bc004139ca09e49432d8a',1,'ostk::mathematics::geometry::d2::object::LineString::accessPointAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a06488a8c9956ec63215f8cceb6380b27',1,'ostk::mathematics::geometry::d3::object::LineString::accessPointAt()']]], + ['accessupperbound_523',['accessUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a575cb7312386085246bed0ee94aeda56',1,'ostk::mathematics::object::Interval']]], + ['angle_524',['Angle',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0514385b3b70596b16568a4f6a8b89f7',1,'ostk::mathematics::geometry::Angle']]], + ['angulardifferencewith_525',['angularDifferenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a012834daa1dcccf7a85d69f84b265dfb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['anycontains_526',['anyContains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a2249520e6059ea385d2b7bd2ff4b78ae',1,'ostk::mathematics::geometry::d2::object::Composite::anyContains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae6722f4d87b91c43645c2176c7effe47',1,'ostk::mathematics::geometry::d2::object::Composite::anyContains(const Composite &aComposite) const']]], + ['applyto_527',['applyTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#acc8517da6833948aef8183180d0b59be',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a5d1de9866945fa5b6057832b90f9e884',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Vector2d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#adfd45137a2eedea1ce1877a80abe12a9',1,'ostk::mathematics::geometry::d2::Transformation::applyTo(const Unique< Object > &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a9ec64a3aedca2bde159fe870833e3e95',1,'ostk::mathematics::geometry::d3::Transformation::applyTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a7991674520692cab362fdb67e8ce5a00',1,'ostk::mathematics::geometry::d3::Transformation::applyTo(const Vector3d &aVector) const']]], + ['applytransformation_528',['applyTransformation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aa1fd52d4955be0b4ee647ac2971e72bf',1,'ostk::mathematics::geometry::d2::object::Composite::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3a157e132491ce9f98561dff3c4959d4',1,'ostk::mathematics::geometry::d2::object::Line::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a0d3a24eba42a2d7449259b890d0bb30f',1,'ostk::mathematics::geometry::d2::object::LineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afec5f43815879ddfcb5051dd7ac40009',1,'ostk::mathematics::geometry::d2::object::MultiLineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a876015bf7a3b8667b8cb94627435a920',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acae5fb88afef113a24cc77a3b536a2c9',1,'ostk::mathematics::geometry::d2::object::Point::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#aa0b9b22f3a53b89d79056596490bbb0d',1,'ostk::mathematics::geometry::d2::object::PointSet::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a98902fdd8d77f9f6f0d6f833fa007ada',1,'ostk::mathematics::geometry::d2::object::Polygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a678b14d476c41b11372b86e9db54b3a6',1,'ostk::mathematics::geometry::d2::object::Segment::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#add0c7edfac25cbd241f82edbb1ce1476',1,'ostk::mathematics::geometry::d2::Object::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a07770aa678f84c74355bf7488b4df425',1,'ostk::mathematics::geometry::d3::object::Composite::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae0eb36a3ddb55789fb3fd382ad5a5b1b',1,'ostk::mathematics::geometry::d3::object::Cone::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a8471b1cbbaa3498833f6fb6f9d2bab5a',1,'ostk::mathematics::geometry::d3::object::Cuboid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e8568dfcf2f261ea99c5a1c4edc2c1a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a5d3a7527694d5581fbd8ea6cf438d74c',1,'ostk::mathematics::geometry::d3::object::Line::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2bfff9b3a14df67fac884fd122315145',1,'ostk::mathematics::geometry::d3::object::LineString::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab4e329b825fa0a3aa24c2c4b7ebfb432',1,'ostk::mathematics::geometry::d3::object::Plane::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a99c3b0b78faa977d4c6bd526286a0815',1,'ostk::mathematics::geometry::d3::object::Point::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a750ddc45120fa67b224c65f5ae782ce2',1,'ostk::mathematics::geometry::d3::object::PointSet::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ad2265d32b954c38b63c273acd45bdc4d',1,'ostk::mathematics::geometry::d3::object::Polygon::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aec8ebca28ff89fd03a088d399de8e6e4',1,'ostk::mathematics::geometry::d3::object::Pyramid::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3a226ee06322255306b029e004dac647',1,'ostk::mathematics::geometry::d3::object::Ray::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af3da3893add570615236f1e5ab4971ff',1,'ostk::mathematics::geometry::d3::object::Segment::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aec7fa1a21969f2175948bd57ac8a46ff',1,'ostk::mathematics::geometry::d3::object::Sphere::applyTransformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a925a50c2bb1c31f396e469b74595e42a',1,'ostk::mathematics::geometry::d3::Object::applyTransformation()']]], + ['arcminutes_529',['Arcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a73f3742b596248a4ea84db75712cd40a',1,'ostk::mathematics::geometry::Angle']]], + ['arcseconds_530',['Arcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad8845fbfd652eb58936c0b01da672c07',1,'ostk::mathematics::geometry::Angle']]], + ['as_531',['as',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ab61bad3ddb1b3810311ffe4d517e7b79',1,'ostk::mathematics::geometry::d2::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a1736931ccff0a138dbbf02b87bd6b5a7',1,'ostk::mathematics::geometry::d2::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ac93f620075e3364e9cdaef6c6191c4f9',1,'ostk::mathematics::geometry::d3::Intersection::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a77bcf425bb31b5265f028de762878699',1,'ostk::mathematics::geometry::d3::object::Composite::as()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#acc1ec9fde56128d7fde8b96fa57180c4',1,'ostk::mathematics::geometry::d3::Object::as()']]], + ['asvector_532',['asVector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a2e3cfa4a339fec6203c201ab9922f35b',1,'ostk::mathematics::geometry::d2::object::Point::asVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a1d9614ed94b6049d6ce56ae529e7ca2b',1,'ostk::mathematics::geometry::d3::object::Point::asVector()']]] ]; diff --git a/html/search/functions_1.js b/html/search/functions_1.js index bd5920e1..8625cee9 100644 --- a/html/search/functions_1.js +++ b/html/search/functions_1.js @@ -1,6 +1,6 @@ var searchData= [ - ['barycentricrational_515',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a864926f51a4eb2c3566649d0fcf03fd3',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], - ['begin_516',['begin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a89beece656a90043d888c5cdd4504753',1,'ostk::mathematics::geometry::d2::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a51ad3a2adffa4a272897a22593da1428',1,'ostk::mathematics::geometry::d2::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afb12934caca48b8b55108c2087a3b3e3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a5572c34cc89ec6a975e25df33a6b70a5',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab0cdaa3e1f7ed827822cf1fa1798e3ca',1,'ostk::mathematics::geometry::d2::object::PointSet::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a69f7864cea32998901589429105a3965',1,'ostk::mathematics::geometry::d3::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#aa57ee802638910c77c4b2dd712614192',1,'ostk::mathematics::geometry::d3::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a2deda4dd9c626c22663b5a58f8a877d7',1,'ostk::mathematics::geometry::d3::object::PointSet::begin()']]], - ['between_517',['Between',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa09f2fa86b1ebb2f5b83f4e79f5b2c94',1,'ostk::mathematics::geometry::Angle::Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4eb394d49e185968a7ee16b6b40dc0c5',1,'ostk::mathematics::geometry::Angle::Between(const Vector3d &aFirstVector, const Vector3d &aSecondVector)']]] + ['barycentricrational_533',['BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a864926f51a4eb2c3566649d0fcf03fd3',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], + ['begin_534',['begin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a89beece656a90043d888c5cdd4504753',1,'ostk::mathematics::geometry::d2::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a51ad3a2adffa4a272897a22593da1428',1,'ostk::mathematics::geometry::d2::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#afb12934caca48b8b55108c2087a3b3e3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a5572c34cc89ec6a975e25df33a6b70a5',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab0cdaa3e1f7ed827822cf1fa1798e3ca',1,'ostk::mathematics::geometry::d2::object::PointSet::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a69f7864cea32998901589429105a3965',1,'ostk::mathematics::geometry::d3::object::Composite::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#aa57ee802638910c77c4b2dd712614192',1,'ostk::mathematics::geometry::d3::object::LineString::begin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a2deda4dd9c626c22663b5a58f8a877d7',1,'ostk::mathematics::geometry::d3::object::PointSet::begin()']]], + ['between_535',['Between',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa09f2fa86b1ebb2f5b83f4e79f5b2c94',1,'ostk::mathematics::geometry::Angle::Between(const Vector2d &aFirstVector, const Vector2d &aSecondVector)'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4eb394d49e185968a7ee16b6b40dc0c5',1,'ostk::mathematics::geometry::Angle::Between(const Vector3d &aFirstVector, const Vector3d &aSecondVector)']]] ]; diff --git a/html/search/functions_10.js b/html/search/functions_10.js index 638f1b9c..5ac3a66b 100644 --- a/html/search/functions_10.js +++ b/html/search/functions_10.js @@ -1,12 +1,15 @@ var searchData= [ - ['toline_715',['toLine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0',1,'ostk::mathematics::geometry::d2::object::Segment::toLine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afb05593ca4e9cd6c3f7df6bac574d6c1',1,'ostk::mathematics::geometry::d3::object::Segment::toLine()']]], - ['tostring_716',['toString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5b9183cde21c414bc8a12e2e079e4ed1',1,'ostk::mathematics::geometry::d2::object::Composite::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3c03f6d92663a15da6e2dc6dbdbc46ab',1,'ostk::mathematics::geometry::d2::object::Line::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a896eb59a09118ed324b444616538c699',1,'ostk::mathematics::geometry::d2::object::LineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a08e4ad2714d08fc8b90e2f4fd643bcfd',1,'ostk::mathematics::geometry::d2::object::MultiLineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab51f3ac0454156100fd02a75fcf3f7f7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acf4c687922d62a5aba718135134da5c6',1,'ostk::mathematics::geometry::d2::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a6cc208100261019089ad86b71b700864',1,'ostk::mathematics::geometry::d2::object::PointSet::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#acae5758cc07f2787875897d4392a07a4',1,'ostk::mathematics::geometry::d2::object::Polygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341',1,'ostk::mathematics::geometry::d2::object::Segment::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aedf9c7ef5af5892d15cf08da795fa1af',1,'ostk::mathematics::geometry::d2::Object::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa84b03a8b7122c8e18038800882bd368',1,'ostk::mathematics::geometry::d3::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Quaternion::Format &aFormat) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6',1,'ostk::mathematics::geometry::Angle::toString()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf',1,'ostk::mathematics::object::Interval::toString()'],['../_eigen_8hpp.html#a12b926fa5c60e26e4a170e5b4e870dea',1,'toString(): Eigen.hpp']]], - ['totransposed_717',['toTransposed',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['tovector_718',['toVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['transformation_719',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a75793220f8bb3d271b771b7f060b636c',1,'ostk::mathematics::geometry::d2::Transformation::Transformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a208df471aa963dabb54cfed7a6cbaa09',1,'ostk::mathematics::geometry::d3::Transformation::Transformation()']]], - ['translation_720',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ac20f9204fa06c83f5c3d5e487f2909e9',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#af9058de81115d953ab8d9b8922abe692',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]], - ['transpose_721',['transpose',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['twopi_722',['TwoPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac282022eaa53c2f999a181c241b358b0',1,'ostk::mathematics::geometry::Angle']]], - ['typeofmatrix_723',['TypeOfMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a50b50b58b43aa9534849d2c0398bd710',1,'ostk::mathematics::geometry::d2::Transformation::TypeOfMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a21a3ef00ead4aad2df9f7685729db7b3',1,'ostk::mathematics::geometry::d3::Transformation::TypeOfMatrix()']]] + ['toconjugate_741',['toConjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abd6b6809b6be6bff26bf99a4c2afbcdb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['toinverse_742',['toInverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a57e55414171904bd5126707ec5b1cb1b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['toline_743',['toLine',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a12d65189283e7c180d4046238be766f0',1,'ostk::mathematics::geometry::d2::object::Segment::toLine()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afb05593ca4e9cd6c3f7df6bac574d6c1',1,'ostk::mathematics::geometry::d3::object::Segment::toLine()']]], + ['tonormalized_744',['toNormalized',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a76d45236d97aca97432d5e6604cf6acf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['tostring_745',['toString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5b9183cde21c414bc8a12e2e079e4ed1',1,'ostk::mathematics::geometry::d2::object::Composite::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a3c03f6d92663a15da6e2dc6dbdbc46ab',1,'ostk::mathematics::geometry::d2::object::Line::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a896eb59a09118ed324b444616538c699',1,'ostk::mathematics::geometry::d2::object::LineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a08e4ad2714d08fc8b90e2f4fd643bcfd',1,'ostk::mathematics::geometry::d2::object::MultiLineString::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab51f3ac0454156100fd02a75fcf3f7f7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#acf4c687922d62a5aba718135134da5c6',1,'ostk::mathematics::geometry::d2::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a6cc208100261019089ad86b71b700864',1,'ostk::mathematics::geometry::d2::object::PointSet::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#acae5758cc07f2787875897d4392a07a4',1,'ostk::mathematics::geometry::d2::object::Polygon::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a336bfa4add0cea6ca7ce52a2e2b5e341',1,'ostk::mathematics::geometry::d2::object::Segment::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aedf9c7ef5af5892d15cf08da795fa1af',1,'ostk::mathematics::geometry::d2::Object::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa84b03a8b7122c8e18038800882bd368',1,'ostk::mathematics::geometry::d3::object::Point::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6ef0461c00dd105f6c38fe5a2ee22c94',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2aa46fa76d7a9fcbad21db53e7061f45',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Quaternion::Format &aFormat) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#abcc5bbb2b290710f39d2111f155ea8e3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toString(const Integer &aPrecision=Integer::Undefined(), const Quaternion::Format &aFormat=Quaternion::Format::XYZS) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a9ce94326aaddb6e9e967acc388b39f44',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::toString()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a007118f6ad1382acb3ed86ba69f8daf6',1,'ostk::mathematics::geometry::Angle::toString()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2078d591dd42e83abb2851a49e00cddf',1,'ostk::mathematics::object::Interval::toString()'],['../_eigen_8hpp.html#a12b926fa5c60e26e4a170e5b4e870dea',1,'toString(): Eigen.hpp']]], + ['totransposed_746',['toTransposed',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae0b991e0539d9767a4a2bb366b073ded',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['tovector_747',['toVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a511d16a1d248592a98f6fd3345bd7547',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::toVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ac23b62bf5637ca0a7a533434641effb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::toVector()']]], + ['transformation_748',['Transformation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a75793220f8bb3d271b771b7f060b636c',1,'ostk::mathematics::geometry::d2::Transformation::Transformation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a208df471aa963dabb54cfed7a6cbaa09',1,'ostk::mathematics::geometry::d3::Transformation::Transformation()']]], + ['translation_749',['Translation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ac20f9204fa06c83f5c3d5e487f2909e9',1,'ostk::mathematics::geometry::d2::Transformation::Translation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#af9058de81115d953ab8d9b8922abe692',1,'ostk::mathematics::geometry::d3::Transformation::Translation()']]], + ['transpose_750',['transpose',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#adc3e15a05d4efeed5bf2cb3eaf2c7237',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['twopi_751',['TwoPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac282022eaa53c2f999a181c241b358b0',1,'ostk::mathematics::geometry::Angle']]], + ['typeofmatrix_752',['TypeOfMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a50b50b58b43aa9534849d2c0398bd710',1,'ostk::mathematics::geometry::d2::Transformation::TypeOfMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a21a3ef00ead4aad2df9f7685729db7b3',1,'ostk::mathematics::geometry::d3::Transformation::TypeOfMatrix()']]] ]; diff --git a/html/search/functions_11.js b/html/search/functions_11.js index 5930d9c0..d11a8f6e 100644 --- a/html/search/functions_11.js +++ b/html/search/functions_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['undefined_724',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af09e4e5f1f8a4b76d0b5e91e3ea7ec11',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68ef0c5cbb3fde1c662f60c5f137fe60',1,'ostk::mathematics::geometry::d2::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a728722304ee853205eab876dec1ec632',1,'ostk::mathematics::geometry::d2::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#acc1cc81fdc22237fd4030fceff9962c0',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a71002eaa63a8305e0566b490ec7740ec',1,'ostk::mathematics::geometry::d2::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adcfe062c3f4fdf897e701399f3d6fd3c',1,'ostk::mathematics::geometry::d2::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abe41a221a94af6243a986b71e27f49ff',1,'ostk::mathematics::geometry::d2::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ae17a40e15a7800a2395825a16cbdea46',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a00b64df4b806356fd959b39e22140856',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ae9de0eace4f4bc2eeef0b79c48723aec',1,'ostk::mathematics::geometry::d3::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a05a5cf02c3eae74349a97c3347d54429',1,'ostk::mathematics::geometry::d3::object::Cone::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a137ba797d414aa5432154e59227c7cfc',1,'ostk::mathematics::geometry::d3::object::Cuboid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a926b28952c1364fff54b2cf2ace854ff',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a22a81cbf24719168493158361bb24ee7',1,'ostk::mathematics::geometry::d3::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a426953082cf45d17f80fde82753583df',1,'ostk::mathematics::geometry::d3::object::Plane::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a48d5b17426787474bdae338a5f154424',1,'ostk::mathematics::geometry::d3::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a446de1b35f71c1ac2be694b9c258b6cc',1,'ostk::mathematics::geometry::d3::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a631ca947390c95b73c78b42c3d840b12',1,'ostk::mathematics::geometry::d3::object::Pyramid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a96df474e37b59adc0de41d1b99b5550a',1,'ostk::mathematics::geometry::d3::object::Ray::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a350e73ef7a773419e87b5cec077f9482',1,'ostk::mathematics::geometry::d3::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a74397702d3224ec9a01897273de8f590',1,'ostk::mathematics::geometry::d3::object::Sphere::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9828e84f2f4b0837912d2a38459e052f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aeae6917c12ec1afe40af8d15bcd1ed0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac296ba2d49497a1d7a5b1d1aa1628294',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aac3424b240ed5116413462fa5e1f7c8f',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07abb07ad2d332bfd5ac200bf68f0dd',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a877844b24a34a2c5c5109ce658cd5551',1,'ostk::mathematics::object::Interval::Undefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1e196c06ce05721dd871501fd4df0500',1,'ostk::mathematics::solver::NumericalSolver::Undefined()']]], - ['unionwith_725',['unionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#adb9f3fc9b4a828252c89a0a314d851c8',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::unionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#addbc0c8111c2f8c5ce1ff347135d54fe',1,'ostk::mathematics::geometry::d2::object::Polygon::unionWith()']]], - ['unit_726',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a81b2f22059fd4a1235795783e0cfcbb3',1,'ostk::mathematics::geometry::d3::object::Sphere::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#affb9e0b77d6b66dfcfdccb17ec10d1bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a54cce35b27cb061a457bf0011f1312ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a31c276c930ed9d5ff4cb406be6a48f7e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Unit()']]] + ['undefined_753',['Undefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af09e4e5f1f8a4b76d0b5e91e3ea7ec11',1,'ostk::mathematics::geometry::d2::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68ef0c5cbb3fde1c662f60c5f137fe60',1,'ostk::mathematics::geometry::d2::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a728722304ee853205eab876dec1ec632',1,'ostk::mathematics::geometry::d2::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#acc1cc81fdc22237fd4030fceff9962c0',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a71002eaa63a8305e0566b490ec7740ec',1,'ostk::mathematics::geometry::d2::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adcfe062c3f4fdf897e701399f3d6fd3c',1,'ostk::mathematics::geometry::d2::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abe41a221a94af6243a986b71e27f49ff',1,'ostk::mathematics::geometry::d2::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ae17a40e15a7800a2395825a16cbdea46',1,'ostk::mathematics::geometry::d2::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a00b64df4b806356fd959b39e22140856',1,'ostk::mathematics::geometry::d3::Intersection::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ae9de0eace4f4bc2eeef0b79c48723aec',1,'ostk::mathematics::geometry::d3::object::Composite::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a05a5cf02c3eae74349a97c3347d54429',1,'ostk::mathematics::geometry::d3::object::Cone::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a137ba797d414aa5432154e59227c7cfc',1,'ostk::mathematics::geometry::d3::object::Cuboid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a926b28952c1364fff54b2cf2ace854ff',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a22a81cbf24719168493158361bb24ee7',1,'ostk::mathematics::geometry::d3::object::Line::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a426953082cf45d17f80fde82753583df',1,'ostk::mathematics::geometry::d3::object::Plane::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a48d5b17426787474bdae338a5f154424',1,'ostk::mathematics::geometry::d3::object::Point::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a446de1b35f71c1ac2be694b9c258b6cc',1,'ostk::mathematics::geometry::d3::object::Polygon::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a631ca947390c95b73c78b42c3d840b12',1,'ostk::mathematics::geometry::d3::object::Pyramid::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a96df474e37b59adc0de41d1b99b5550a',1,'ostk::mathematics::geometry::d3::object::Ray::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a350e73ef7a773419e87b5cec077f9482',1,'ostk::mathematics::geometry::d3::object::Segment::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a74397702d3224ec9a01897273de8f590',1,'ostk::mathematics::geometry::d3::object::Sphere::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a65f9ff57748fe200180b4c7ffee03dd5',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9828e84f2f4b0837912d2a38459e052f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aeae6917c12ec1afe40af8d15bcd1ed0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac296ba2d49497a1d7a5b1d1aa1628294',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aac3424b240ed5116413462fa5e1f7c8f',1,'ostk::mathematics::geometry::d3::Transformation::Undefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07abb07ad2d332bfd5ac200bf68f0dd',1,'ostk::mathematics::geometry::Angle::Undefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a877844b24a34a2c5c5109ce658cd5551',1,'ostk::mathematics::object::Interval::Undefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1e196c06ce05721dd871501fd4df0500',1,'ostk::mathematics::solver::NumericalSolver::Undefined()']]], + ['unionwith_754',['unionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#adb9f3fc9b4a828252c89a0a314d851c8',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::unionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#addbc0c8111c2f8c5ce1ff347135d54fe',1,'ostk::mathematics::geometry::d2::object::Polygon::unionWith()']]], + ['unit_755',['Unit',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a81b2f22059fd4a1235795783e0cfcbb3',1,'ostk::mathematics::geometry::d3::object::Sphere::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a970d830a551e4596701281e2cf0a1899',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#affb9e0b77d6b66dfcfdccb17ec10d1bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a54cce35b27cb061a457bf0011f1312ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Unit()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a31c276c930ed9d5ff4cb406be6a48f7e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Unit()']]] ]; diff --git a/html/search/functions_12.js b/html/search/functions_12.js index 30de223e..d3b44bc8 100644 --- a/html/search/functions_12.js +++ b/html/search/functions_12.js @@ -1,4 +1,4 @@ var searchData= [ - ['vector_727',['Vector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#ac1a68722649ac022d295b1e52cd715c5',1,'ostk::mathematics::geometry::d2::object::Point::Vector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa467c6aeea346a0a8d1d2c2b0397b069',1,'ostk::mathematics::geometry::d3::object::Point::Vector()']]] + ['vector_756',['Vector',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#ac1a68722649ac022d295b1e52cd715c5',1,'ostk::mathematics::geometry::d2::object::Point::Vector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa467c6aeea346a0a8d1d2c2b0397b069',1,'ostk::mathematics::geometry::d3::object::Point::Vector()']]] ]; diff --git a/html/search/functions_13.js b/html/search/functions_13.js index 854a8d3b..422ef0c1 100644 --- a/html/search/functions_13.js +++ b/html/search/functions_13.js @@ -1,5 +1,6 @@ var searchData= [ - ['x_728',['x',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#af8b071291f40e389405fb96905c1d6a8',1,'ostk::mathematics::geometry::d2::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3ddbe352084484876eb27f736cbeb652',1,'ostk::mathematics::geometry::d3::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ad5a563a069f6665a086b2ba5fc20ea76',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::X()']]], - ['xyzs_729',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab065862f2a77807e42f6feaadc0637e2',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['x_757',['x',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#af8b071291f40e389405fb96905c1d6a8',1,'ostk::mathematics::geometry::d2::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3ddbe352084484876eb27f736cbeb652',1,'ostk::mathematics::geometry::d3::object::Point::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adfdffa7d538271cddf839224bcb4e738',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::x()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ad5a563a069f6665a086b2ba5fc20ea76',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::X()']]], + ['xyz_758',['XYZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ad67a6f747c305d3528a7d9639ce14bf4',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['xyzs_759',['XYZS',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab065862f2a77807e42f6feaadc0637e2',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/functions_14.js b/html/search/functions_14.js index 728218d2..14875e2e 100644 --- a/html/search/functions_14.js +++ b/html/search/functions_14.js @@ -1,4 +1,4 @@ var searchData= [ - ['y_730',['y',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a90787dd1713e93c1220b0fc5afa96d93',1,'ostk::mathematics::geometry::d2::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa3c577975615062970c71fd90a166861',1,'ostk::mathematics::geometry::d3::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a30ecbac5afd7470bc9cb68079997fc0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Y()']]] + ['y_760',['Y',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a30ecbac5afd7470bc9cb68079997fc0c',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Y()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a90787dd1713e93c1220b0fc5afa96d93',1,'ostk::mathematics::geometry::d2::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#aa3c577975615062970c71fd90a166861',1,'ostk::mathematics::geometry::d3::object::Point::y()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a10f6aba9001c60d4e106a7989520c03a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::y()']]] ]; diff --git a/html/search/functions_15.js b/html/search/functions_15.js index b5682988..cd4b2d5f 100644 --- a/html/search/functions_15.js +++ b/html/search/functions_15.js @@ -1,5 +1,7 @@ var searchData= [ - ['z_731',['Z',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a4985f992a53c3d1412a06b2ebedd4bca',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ac4c697327bcf0b3bf414664b5e4b5da8',1,'ostk::mathematics::geometry::d3::object::Point::z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::z()']]], - ['zero_732',['Zero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a8e6ae32f87c8dd9dbb5b13f0403bb93b',1,'ostk::mathematics::geometry::Angle']]] + ['z_761',['Z',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a4985f992a53c3d1412a06b2ebedd4bca',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ac4c697327bcf0b3bf414664b5e4b5da8',1,'ostk::mathematics::geometry::d3::object::Point::z()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab2c7e95b006839e078c0517a320636cf',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::z()']]], + ['zero_762',['Zero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a8e6ae32f87c8dd9dbb5b13f0403bb93b',1,'ostk::mathematics::geometry::Angle']]], + ['zxy_763',['ZXY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5c480a99e25a582539a3d23bbc1cfaad',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['zyx_764',['ZYX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5a32a18b2e11e5cce47df3f651e22fe8',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]] ]; diff --git a/html/search/functions_16.js b/html/search/functions_16.js index 3471e72f..c1a450ef 100644 --- a/html/search/functions_16.js +++ b/html/search/functions_16.js @@ -1,11 +1,11 @@ var searchData= [ - ['_7ebarycentricrational_733',['~BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a084b79dfcfae56e18cd7c1dd5269e007',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], - ['_7ecubicspline_734',['~CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a458bf216be06ad3ef539343e8397ef44',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline']]], - ['_7einterpolator_735',['~Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#ac980e413bfeb65eceb347e787899c1f4',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['_7eintersection_736',['~Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0f8d688de5a4819053d1f69a50e5a78e',1,'ostk::mathematics::geometry::d2::Intersection::~Intersection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#afcedc858d9629b15c995294c81a6b22b',1,'ostk::mathematics::geometry::d3::Intersection::~Intersection()']]], - ['_7elinear_737',['~Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a6e6d93d0ac658408b32a8bb8dd66d069',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], - ['_7emultipolygon_738',['~MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae98f8850dcfc6dbd6d1aa3d1a4105408',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['_7eobject_739',['~Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af11dec981b2e1ab08deae342ec2c4ef8',1,'ostk::mathematics::geometry::d2::Object::~Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aae1324c306129cce2e7d42a28c0de181',1,'ostk::mathematics::geometry::d3::Object::~Object()']]], - ['_7epolygon_740',['~Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad145d668431abe12328dc010394684cb',1,'ostk::mathematics::geometry::d2::object::Polygon']]] + ['_7ebarycentricrational_765',['~BarycentricRational',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a084b79dfcfae56e18cd7c1dd5269e007',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational']]], + ['_7ecubicspline_766',['~CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a458bf216be06ad3ef539343e8397ef44',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline']]], + ['_7einterpolator_767',['~Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#ac980e413bfeb65eceb347e787899c1f4',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['_7eintersection_768',['~Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0f8d688de5a4819053d1f69a50e5a78e',1,'ostk::mathematics::geometry::d2::Intersection::~Intersection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#afcedc858d9629b15c995294c81a6b22b',1,'ostk::mathematics::geometry::d3::Intersection::~Intersection()']]], + ['_7elinear_769',['~Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a6e6d93d0ac658408b32a8bb8dd66d069',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], + ['_7emultipolygon_770',['~MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae98f8850dcfc6dbd6d1aa3d1a4105408',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['_7eobject_771',['~Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af11dec981b2e1ab08deae342ec2c4ef8',1,'ostk::mathematics::geometry::d2::Object::~Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aae1324c306129cce2e7d42a28c0de181',1,'ostk::mathematics::geometry::d3::Object::~Object()']]], + ['_7epolygon_772',['~Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad145d668431abe12328dc010394684cb',1,'ostk::mathematics::geometry::d2::object::Polygon']]] ]; diff --git a/html/search/functions_2.js b/html/search/functions_2.js index 300913ef..cf3e79b4 100644 --- a/html/search/functions_2.js +++ b/html/search/functions_2.js @@ -1,17 +1,17 @@ var searchData= [ - ['clone_518',['clone',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a19f3ba420ea69eefa3a2b948d59a2fab',1,'ostk::mathematics::geometry::d2::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a60f4de4753ac3be12c6084aca4b9cc3a',1,'ostk::mathematics::geometry::d2::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a37f35461ca951c8a01b50631500cddd8',1,'ostk::mathematics::geometry::d2::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#aab7aa00392d691582dfc454fd0d7a7c5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a04159c43117169d31c0e275f10617912',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a6130fa9acf01d10db49a6ea301efd579',1,'ostk::mathematics::geometry::d2::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a0ee1f055d01e740ac294252806887fc6',1,'ostk::mathematics::geometry::d2::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a290758ce99124ae08292c683a9d77fc3',1,'ostk::mathematics::geometry::d2::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54',1,'ostk::mathematics::geometry::d2::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af63da855554f9114803103fe2390f5eb',1,'ostk::mathematics::geometry::d2::Object::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4d5a9ea98d5a028f2792d3b11e9fd6e8',1,'ostk::mathematics::geometry::d3::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0c99b116c5a6f6e0915cb5375fc66149',1,'ostk::mathematics::geometry::d3::object::Cone::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ab67f8c5204e7d81204f80ca1298073a8',1,'ostk::mathematics::geometry::d3::object::Cuboid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca293bcf279702b8b59d72fe4dd09217',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a34fd0962885cf69d1a70a5d62395acc9',1,'ostk::mathematics::geometry::d3::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a6d27eb6359000685e81a6a5d79fbb807',1,'ostk::mathematics::geometry::d3::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a07a393740306e4f8363920a8d82823e7',1,'ostk::mathematics::geometry::d3::object::Plane::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#adf6a7e433d64879df60ea17403bf4694',1,'ostk::mathematics::geometry::d3::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1ab0dfee99b56b4324e782a406ca1687',1,'ostk::mathematics::geometry::d3::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0502f752850b36aa89c4fc443f7e4376',1,'ostk::mathematics::geometry::d3::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a61cb86ec44359755cc1edc8dec1604c0',1,'ostk::mathematics::geometry::d3::object::Pyramid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#ad6ef8e1e883a675f054a790093c152b8',1,'ostk::mathematics::geometry::d3::object::Ray::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aaaed581dfea7bf716e1125a088ba963c',1,'ostk::mathematics::geometry::d3::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a28e9a96d726b5eea0da0696647912780',1,'ostk::mathematics::geometry::d3::object::Sphere::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a8ea8d4074bfaaa3d996d760d5d5751db',1,'ostk::mathematics::geometry::d3::Object::clone()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ade382b45dc13976a125ee742a7e0e299',1,'ostk::mathematics::solver::NumericalSolver::clone()']]], - ['closed_519',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3d13b7bfa9bcfee7dd3a7f9998378c4b',1,'ostk::mathematics::object::Interval']]], - ['columns_520',['Columns',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a255df0da5d9ec95a9842ed312a67beb2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['composite_521',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a46840777485fc459449f36c304ef8989',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a40e91d9468ac09b2b87155b79d196d1d',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a66437dec2907929057147bcf7e6cd364',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae777b05fd25e69c98d8d664b6a3e4e14',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Composite &aComposite)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad3c66a24df2c50819fbc8dbe288b85ee',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aec24fbd4ad7f8beaea120b2fa2743bd5',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aa67f5a8fadff55239bc9710c3c86b08b',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a66ac8dd91f5a192965ed771a69593ac3',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Composite &aComposite)']]], - ['cone_522',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a10d3d96af94c8dc4219c4b4ffec15dce',1,'ostk::mathematics::geometry::d3::object::Cone']]], - ['conjugate_523',['conjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['contains_524',['contains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a9c1fbdcbb36a4689a047ec6a9e887ebc',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aff95d8fa19dde2346269555c4b8e05cf',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#aefb7b93e8cea6c18e38ee2e6627da0e5',1,'ostk::mathematics::geometry::d2::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a44ea437739c18c9c49f05d0f7453cb32',1,'ostk::mathematics::geometry::d2::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a6c13eb4d91446900ddda8f0040455020',1,'ostk::mathematics::geometry::d2::object::LineString::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a910773da45f1028fd287d54cf983d80a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab8545c27cb14a4c15ba5d7b80f07c91a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4b5a24cc8cb60cf10d710aa62f742478',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac1e78b5240370ba32bcfd6078793888c',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a0c4427854d9487e06ba35456128692fb',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const LineString &aLineString) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a694a856a4e694e0c570b3e0bbbee9f53',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a43eaa4a59d81e7eb36b80f6695de6ce1',1,'ostk::mathematics::geometry::d2::Object::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9a69a179318ed283eb977f7ed6649061',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9239c58d4c8dc813b944bd4ab92371a7',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0e66cd58ae5abba7d1c183ec5c9daef7',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aaa970b79b1e3b9dcd247a4bff7bd9378',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a2f3b44690e2997261115755b7aef8a07',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a81f8bff0944acb412ca59238bb717426',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a3c18746829be63f97a7b50e7c6fa69c4',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a589c4383552d6e6dcc23f20dc3d6008d',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af9c1badd7cb2289a15179b0013624045',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a3cf093f96d14d21cfd9851b1cbe744be',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#adf437c225438cc4d8464002c75eea143',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#acd6265aa0324a0a42782255c6c68fd6c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aa0d3177d1ed9985503ec6055f40768a8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2f6d64044fbfaa53a018f3f0e62fa2ce',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac1c03c840e6a7da0f4c7dd756181d7bb',1,'ostk::mathematics::geometry::d3::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8371e47909da7e742bb96ef1a1db99c7',1,'ostk::mathematics::geometry::d3::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a524aa96a108be7503f1ff86394a08f2c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab0b9146d7ba1edd4386336b6838fa27f',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a6ccf2471ed3a0c7ca9d52b96aecfd01d',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b9e0648b92e137af003fa83b0a7d882',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a24f4e1fe595451ef6cb1c3acef15d894',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4df37b7e74dcdbce1d4485e5531a6f65',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#afb8fc0cc19a2ed253abf288c91d6a769',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a21258f62dee6d2ce47cc7dc5ce758f95',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aaa1043541f46cbf9939ccb1f24ab8ee9',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a1848ffef38a11b7014ae9fbdbf293503',1,'ostk::mathematics::geometry::d3::object::Segment::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a4a3a9cec2f8df6799344ea779a635fd5',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ac55784d01e1ab5c8ea2b800dc844448b',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af60902b6b025fdaf8839c08e532dd2b0',1,'ostk::mathematics::geometry::d3::Object::contains()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e',1,'ostk::mathematics::object::Interval::contains(const T &aValue) const'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5',1,'ostk::mathematics::object::Interval::contains(const Interval &anInterval) const']]], - ['crossmultiply_525',['crossMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['cube_526',['Cube',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a50197f54dd665a9dc63004e89bad728e',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['cubicspline_527',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#af32918b90ad7b87440323e3b0e4a8d6e',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &anXVector, const VectorXd &aYVector)'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#aee7259e030e792e73991125e793f0862',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &aYVector, const Real &x0, const Real &h)']]], - ['cuboid_528',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa8163a96646fa5b9069c7a19d6a6c642',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['cuboidgtevectorfrompoint_529',['CuboidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#aacca6849c92edb9524d03ca2a4f37905',1,'ostk::mathematics::geometry::d3::object']]], - ['cuboidgtevectorfromvector3d_530',['CuboidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0c088041334cad9e4d7fee2ea9ef573a',1,'ostk::mathematics::geometry::d3::object']]], - ['cuboidpointfromgtevector_531',['CuboidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a45b420bc462a2d1e530f360e1b071ee1',1,'ostk::mathematics::geometry::d3::object']]] + ['clone_536',['clone',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a19f3ba420ea69eefa3a2b948d59a2fab',1,'ostk::mathematics::geometry::d2::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a60f4de4753ac3be12c6084aca4b9cc3a',1,'ostk::mathematics::geometry::d2::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a37f35461ca951c8a01b50631500cddd8',1,'ostk::mathematics::geometry::d2::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#aab7aa00392d691582dfc454fd0d7a7c5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a04159c43117169d31c0e275f10617912',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a6130fa9acf01d10db49a6ea301efd579',1,'ostk::mathematics::geometry::d2::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a0ee1f055d01e740ac294252806887fc6',1,'ostk::mathematics::geometry::d2::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a290758ce99124ae08292c683a9d77fc3',1,'ostk::mathematics::geometry::d2::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a354e489eed79ff4e87deea504eeccb54',1,'ostk::mathematics::geometry::d2::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#af63da855554f9114803103fe2390f5eb',1,'ostk::mathematics::geometry::d2::Object::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4d5a9ea98d5a028f2792d3b11e9fd6e8',1,'ostk::mathematics::geometry::d3::object::Composite::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0c99b116c5a6f6e0915cb5375fc66149',1,'ostk::mathematics::geometry::d3::object::Cone::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ab67f8c5204e7d81204f80ca1298073a8',1,'ostk::mathematics::geometry::d3::object::Cuboid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca293bcf279702b8b59d72fe4dd09217',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a34fd0962885cf69d1a70a5d62395acc9',1,'ostk::mathematics::geometry::d3::object::Line::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a6d27eb6359000685e81a6a5d79fbb807',1,'ostk::mathematics::geometry::d3::object::LineString::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a07a393740306e4f8363920a8d82823e7',1,'ostk::mathematics::geometry::d3::object::Plane::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#adf6a7e433d64879df60ea17403bf4694',1,'ostk::mathematics::geometry::d3::object::Point::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1ab0dfee99b56b4324e782a406ca1687',1,'ostk::mathematics::geometry::d3::object::PointSet::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0502f752850b36aa89c4fc443f7e4376',1,'ostk::mathematics::geometry::d3::object::Polygon::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a61cb86ec44359755cc1edc8dec1604c0',1,'ostk::mathematics::geometry::d3::object::Pyramid::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#ad6ef8e1e883a675f054a790093c152b8',1,'ostk::mathematics::geometry::d3::object::Ray::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aaaed581dfea7bf716e1125a088ba963c',1,'ostk::mathematics::geometry::d3::object::Segment::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a28e9a96d726b5eea0da0696647912780',1,'ostk::mathematics::geometry::d3::object::Sphere::clone()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a8ea8d4074bfaaa3d996d760d5d5751db',1,'ostk::mathematics::geometry::d3::Object::clone()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ade382b45dc13976a125ee742a7e0e299',1,'ostk::mathematics::solver::NumericalSolver::clone()']]], + ['closed_537',['Closed',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3d13b7bfa9bcfee7dd3a7f9998378c4b',1,'ostk::mathematics::object::Interval']]], + ['columns_538',['Columns',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a255df0da5d9ec95a9842ed312a67beb2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['composite_539',['Composite',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a46840777485fc459449f36c304ef8989',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a40e91d9468ac09b2b87155b79d196d1d',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a66437dec2907929057147bcf7e6cd364',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae777b05fd25e69c98d8d664b6a3e4e14',1,'ostk::mathematics::geometry::d2::object::Composite::Composite(const Composite &aComposite)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad3c66a24df2c50819fbc8dbe288b85ee',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Object &anObject)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aec24fbd4ad7f8beaea120b2fa2743bd5',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Unique< Object > &anObjectUPtr)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aa67f5a8fadff55239bc9710c3c86b08b',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a66ac8dd91f5a192965ed771a69593ac3',1,'ostk::mathematics::geometry::d3::object::Composite::Composite(const Composite &aComposite)']]], + ['cone_540',['Cone',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a10d3d96af94c8dc4219c4b4ffec15dce',1,'ostk::mathematics::geometry::d3::object::Cone']]], + ['conjugate_541',['conjugate',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a593e8387b883d1950674e3e4db8f685a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['contains_542',['contains',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a9c1fbdcbb36a4689a047ec6a9e887ebc',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aff95d8fa19dde2346269555c4b8e05cf',1,'ostk::mathematics::geometry::d2::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#aefb7b93e8cea6c18e38ee2e6627da0e5',1,'ostk::mathematics::geometry::d2::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a44ea437739c18c9c49f05d0f7453cb32',1,'ostk::mathematics::geometry::d2::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a6c13eb4d91446900ddda8f0040455020',1,'ostk::mathematics::geometry::d2::object::LineString::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a910773da45f1028fd287d54cf983d80a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ab8545c27cb14a4c15ba5d7b80f07c91a',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4b5a24cc8cb60cf10d710aa62f742478',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac1e78b5240370ba32bcfd6078793888c',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a0c4427854d9487e06ba35456128692fb',1,'ostk::mathematics::geometry::d2::object::Polygon::contains(const LineString &aLineString) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a694a856a4e694e0c570b3e0bbbee9f53',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a23def062fef6c1210fa528ff078930a3',1,'ostk::mathematics::geometry::d2::object::Segment::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a43eaa4a59d81e7eb36b80f6695de6ce1',1,'ostk::mathematics::geometry::d2::Object::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9a69a179318ed283eb977f7ed6649061',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9239c58d4c8dc813b944bd4ab92371a7',1,'ostk::mathematics::geometry::d3::object::Composite::contains(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a0e66cd58ae5abba7d1c183ec5c9daef7',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aaa970b79b1e3b9dcd247a4bff7bd9378',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a2f3b44690e2997261115755b7aef8a07',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a81f8bff0944acb412ca59238bb717426',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a3c18746829be63f97a7b50e7c6fa69c4',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a589c4383552d6e6dcc23f20dc3d6008d',1,'ostk::mathematics::geometry::d3::object::Cone::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af9c1badd7cb2289a15179b0013624045',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a3cf093f96d14d21cfd9851b1cbe744be',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#adf437c225438cc4d8464002c75eea143',1,'ostk::mathematics::geometry::d3::object::Cuboid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#acd6265aa0324a0a42782255c6c68fd6c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aa0d3177d1ed9985503ec6055f40768a8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2f6d64044fbfaa53a018f3f0e62fa2ce',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac1c03c840e6a7da0f4c7dd756181d7bb',1,'ostk::mathematics::geometry::d3::object::Line::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8371e47909da7e742bb96ef1a1db99c7',1,'ostk::mathematics::geometry::d3::object::Line::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a524aa96a108be7503f1ff86394a08f2c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ab0b9146d7ba1edd4386336b6838fa27f',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a28361bb8bf43e6a73c4347385f5e27e2',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a6ccf2471ed3a0c7ca9d52b96aecfd01d',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a1c62f4dcef9ff0a578e656fd18c2d40c',1,'ostk::mathematics::geometry::d3::object::Plane::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b9e0648b92e137af003fa83b0a7d882',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a24f4e1fe595451ef6cb1c3acef15d894',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4df37b7e74dcdbce1d4485e5531a6f65',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#afb8fc0cc19a2ed253abf288c91d6a769',1,'ostk::mathematics::geometry::d3::object::Pyramid::contains(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a21258f62dee6d2ce47cc7dc5ce758f95',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aaa1043541f46cbf9939ccb1f24ab8ee9',1,'ostk::mathematics::geometry::d3::object::Ray::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a1848ffef38a11b7014ae9fbdbf293503',1,'ostk::mathematics::geometry::d3::object::Segment::contains()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a4a3a9cec2f8df6799344ea779a635fd5',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ac55784d01e1ab5c8ea2b800dc844448b',1,'ostk::mathematics::geometry::d3::object::Sphere::contains(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af60902b6b025fdaf8839c08e532dd2b0',1,'ostk::mathematics::geometry::d3::Object::contains()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac80d99178336fdcddf7406757f0cc27e',1,'ostk::mathematics::object::Interval::contains(const T &aValue) const'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a83de87f899ef154f8364c875a45e89b5',1,'ostk::mathematics::object::Interval::contains(const Interval &anInterval) const']]], + ['crossmultiply_543',['crossMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3f4cbf44fdc4f0ef7a054ec12a08e9ca',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['cube_544',['Cube',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a50197f54dd665a9dc63004e89bad728e',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['cubicspline_545',['CubicSpline',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#af32918b90ad7b87440323e3b0e4a8d6e',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &anXVector, const VectorXd &aYVector)'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#aee7259e030e792e73991125e793f0862',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::CubicSpline(const VectorXd &aYVector, const Real &x0, const Real &h)']]], + ['cuboid_546',['Cuboid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa8163a96646fa5b9069c7a19d6a6c642',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['cuboidgtevectorfrompoint_547',['CuboidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#aacca6849c92edb9524d03ca2a4f37905',1,'ostk::mathematics::geometry::d3::object']]], + ['cuboidgtevectorfromvector3d_548',['CuboidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0c088041334cad9e4d7fee2ea9ef573a',1,'ostk::mathematics::geometry::d3::object']]], + ['cuboidpointfromgtevector_549',['CuboidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a45b420bc462a2d1e530f360e1b071ee1',1,'ostk::mathematics::geometry::d3::object']]] ]; diff --git a/html/search/functions_3.js b/html/search/functions_3.js index 4f8a94c1..616bf899 100644 --- a/html/search/functions_3.js +++ b/html/search/functions_3.js @@ -1,9 +1,9 @@ var searchData= [ - ['default_532',['Default',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1653209d9c0b27cc3299fafaa4df7368',1,'ostk::mathematics::solver::NumericalSolver']]], - ['degrees_533',['Degrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf219273c9f6215c4a47a5530e0a3aa3',1,'ostk::mathematics::geometry::Angle']]], - ['differencewith_534',['differenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a7caedd5217a76f4739ae14c56d7c2387',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['distanceto_535',['distanceTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#af81c8fb3c528d9dd47a72628533f6860',1,'ostk::mathematics::geometry::d2::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5ac6096d3ec22385b722e911afbd3bba',1,'ostk::mathematics::geometry::d2::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a88ba7ea275fba11813b6170e927d1477',1,'ostk::mathematics::geometry::d2::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0fa9db689dceda267581043aab6bc8b9',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a7325f4a0c092cb59c505d281d0c064b0',1,'ostk::mathematics::geometry::d3::object::Cone::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a43104ae42afd24aaa0278f31b2c287a5',1,'ostk::mathematics::geometry::d3::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9d9227bdcc6c23de1b327db7383bcc9f',1,'ostk::mathematics::geometry::d3::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a0c0b80b471c070b67768752d65a36b66',1,'ostk::mathematics::geometry::d3::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a4582d8b43bf47e6d1ede6102425d905c',1,'ostk::mathematics::geometry::d3::object::Ray::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a827fa4980d4799eb154256c59e21e406',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a916bf81d9f186f4712cde0b04d28176a',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const PointSet &aPointSet) const']]], - ['dotmultiply_536',['dotMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['dotproduct_537',['dotProduct',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['default_550',['Default',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1653209d9c0b27cc3299fafaa4df7368',1,'ostk::mathematics::solver::NumericalSolver']]], + ['degrees_551',['Degrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf219273c9f6215c4a47a5530e0a3aa3',1,'ostk::mathematics::geometry::Angle']]], + ['differencewith_552',['differenceWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a7caedd5217a76f4739ae14c56d7c2387',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['distanceto_553',['distanceTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#af81c8fb3c528d9dd47a72628533f6860',1,'ostk::mathematics::geometry::d2::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5ac6096d3ec22385b722e911afbd3bba',1,'ostk::mathematics::geometry::d2::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a88ba7ea275fba11813b6170e927d1477',1,'ostk::mathematics::geometry::d2::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0fa9db689dceda267581043aab6bc8b9',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a529eb85f7ac09d930579f9c1523feb36',1,'ostk::mathematics::geometry::d2::object::Segment::distanceTo(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a7325f4a0c092cb59c505d281d0c064b0',1,'ostk::mathematics::geometry::d3::object::Cone::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a43104ae42afd24aaa0278f31b2c287a5',1,'ostk::mathematics::geometry::d3::object::Line::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9d9227bdcc6c23de1b327db7383bcc9f',1,'ostk::mathematics::geometry::d3::object::Point::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a0c0b80b471c070b67768752d65a36b66',1,'ostk::mathematics::geometry::d3::object::PointSet::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a4582d8b43bf47e6d1ede6102425d905c',1,'ostk::mathematics::geometry::d3::object::Ray::distanceTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a827fa4980d4799eb154256c59e21e406',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a916bf81d9f186f4712cde0b04d28176a',1,'ostk::mathematics::geometry::d3::object::Segment::distanceTo(const PointSet &aPointSet) const']]], + ['dotmultiply_554',['dotMultiply',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a50c95b29f1d658560a0005ee47d40e3a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['dotproduct_555',['dotProduct',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adbc57819c76d4b481fc84bb20667b796',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/functions_4.js b/html/search/functions_4.js index 09f449b1..83b4342b 100644 --- a/html/search/functions_4.js +++ b/html/search/functions_4.js @@ -1,11 +1,12 @@ var searchData= [ - ['ellipsoid_538',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a770daad95f02aec5ed9e124592548152',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['ellipsoidgtevectorfrompoint_539',['EllipsoidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ac7819bb67f76c012bdc8c2924ccff8c6',1,'ostk::mathematics::geometry::d3::object']]], - ['ellipsoidgtevectorfromvector3d_540',['EllipsoidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0b95578c2aff528cc4d83bd900884c99',1,'ostk::mathematics::geometry::d3::object']]], - ['ellipsoidpointfromgtevector_541',['EllipsoidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a9153855848bb4b44e441d4fd8efc2195',1,'ostk::mathematics::geometry::d3::object']]], - ['empty_542',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b1d39b9c1516c2b1129957e1aaeab61',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5704d4c2404b89ef12ccf562fd48a7f5',1,'ostk::mathematics::geometry::d2::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a1c013105d818b7e58ce82ba781ad5e95',1,'ostk::mathematics::geometry::d2::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a55c60a678817302f5eedabceca6dbf43',1,'ostk::mathematics::geometry::d2::object::MultiLineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a512dbda75dd8c2143329e525c0478c47',1,'ostk::mathematics::geometry::d2::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#add4cb4f79cbc36b7de65ca88190ae011',1,'ostk::mathematics::geometry::d3::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a2d1b2de30917d5cb24843a4590c45cf4',1,'ostk::mathematics::geometry::d3::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5a7f530f442be990ea18c30032f04d45',1,'ostk::mathematics::geometry::d3::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aa973f5bcaee2c808e981ced66f60156c',1,'ostk::mathematics::geometry::d3::object::PointSet::Empty()']]], - ['end_543',['end',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a01d075d05560cae44d5fc4fa17f3594c',1,'ostk::mathematics::geometry::d2::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac4688c0d0f28a9627add88395df8337f',1,'ostk::mathematics::geometry::d2::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a7c91eca1a5cfcbae562a1c709b975cf5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac54e468edcaf72136cb1e93f0b73e779',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a39a4223c3ee108f0b0b07d28fa337c3b',1,'ostk::mathematics::geometry::d2::object::PointSet::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a44e8b75a9ba8fa5b92d4589ec8cfe323',1,'ostk::mathematics::geometry::d3::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1427440792919bda6cc0704fe286cd71',1,'ostk::mathematics::geometry::d3::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a4939eefd0f54e0076af40960dfe93418',1,'ostk::mathematics::geometry::d3::object::PointSet::end()']]], - ['evaluate_544',['evaluate',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a0a440a296a04347ed9b4a9a22f1cf57f',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a343d5f5f554639ce936706ea75109006',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a6852a278bdd114175116ae0e875bd258',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a2f91b443473606d1236a81d24d643368',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#ac1332768995f471149cd3852b3ba2782',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a741b61d24af15b3332721b0751ec3a7a',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a2e5f87beae48daf0ebbd4da6c0fdcb77',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const VectorXd &aQueryVector) const =0'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#aae0c8423f11e7aa9f764ee4973070c36',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const double &aQueryValue) const =0']]], - ['exp_545',['exp',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['ellipsoid_556',['Ellipsoid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a770daad95f02aec5ed9e124592548152',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['ellipsoidgtevectorfrompoint_557',['EllipsoidGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ac7819bb67f76c012bdc8c2924ccff8c6',1,'ostk::mathematics::geometry::d3::object']]], + ['ellipsoidgtevectorfromvector3d_558',['EllipsoidGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a0b95578c2aff528cc4d83bd900884c99',1,'ostk::mathematics::geometry::d3::object']]], + ['ellipsoidpointfromgtevector_559',['EllipsoidPointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a9153855848bb4b44e441d4fd8efc2195',1,'ostk::mathematics::geometry::d3::object']]], + ['empty_560',['Empty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b1d39b9c1516c2b1129957e1aaeab61',1,'ostk::mathematics::geometry::d2::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a5704d4c2404b89ef12ccf562fd48a7f5',1,'ostk::mathematics::geometry::d2::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a1c013105d818b7e58ce82ba781ad5e95',1,'ostk::mathematics::geometry::d2::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a55c60a678817302f5eedabceca6dbf43',1,'ostk::mathematics::geometry::d2::object::MultiLineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a512dbda75dd8c2143329e525c0478c47',1,'ostk::mathematics::geometry::d2::object::PointSet::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#add4cb4f79cbc36b7de65ca88190ae011',1,'ostk::mathematics::geometry::d3::Intersection::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a2d1b2de30917d5cb24843a4590c45cf4',1,'ostk::mathematics::geometry::d3::object::Composite::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5a7f530f442be990ea18c30032f04d45',1,'ostk::mathematics::geometry::d3::object::LineString::Empty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aa973f5bcaee2c808e981ced66f60156c',1,'ostk::mathematics::geometry::d3::object::PointSet::Empty()']]], + ['end_561',['end',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a01d075d05560cae44d5fc4fa17f3594c',1,'ostk::mathematics::geometry::d2::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac4688c0d0f28a9627add88395df8337f',1,'ostk::mathematics::geometry::d2::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a7c91eca1a5cfcbae562a1c709b975cf5',1,'ostk::mathematics::geometry::d2::object::MultiLineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac54e468edcaf72136cb1e93f0b73e779',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a39a4223c3ee108f0b0b07d28fa337c3b',1,'ostk::mathematics::geometry::d2::object::PointSet::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a44e8b75a9ba8fa5b92d4589ec8cfe323',1,'ostk::mathematics::geometry::d3::object::Composite::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1427440792919bda6cc0704fe286cd71',1,'ostk::mathematics::geometry::d3::object::LineString::end()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a4939eefd0f54e0076af40960dfe93418',1,'ostk::mathematics::geometry::d3::object::PointSet::end()']]], + ['eulerangle_562',['EulerAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a7d88d303ded4e39e598cdf566796cc9e',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle(const Angle &aFirstAngle, const Angle &aSecondAngle, const Angle &aThirdAngle, const EulerAngle::AxisSequence &anAxisSequence)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#aef0ee3faab6cf338e6c3fef716160378',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::EulerAngle(const Vector3d &aVector, const Angle::Unit &anAngleUnit, const EulerAngle::AxisSequence &anAxisSequence)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2d7a76dced15258282988935a8161cbe',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::EulerAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a17e0c181b02dd8857a0414331ac54bac',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::EulerAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#acfff1d3bbd3dc4b5998bed27cca91e7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::EulerAngle()']]], + ['evaluate_563',['evaluate',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a0a440a296a04347ed9b4a9a22f1cf57f',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_barycentric_rational.html#a343d5f5f554639ce936706ea75109006',1,'ostk::mathematics::curvefitting::interpolator::BarycentricRational::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a6852a278bdd114175116ae0e875bd258',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline.html#a2f91b443473606d1236a81d24d643368',1,'ostk::mathematics::curvefitting::interpolator::CubicSpline::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#ac1332768995f471149cd3852b3ba2782',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const VectorXd &aQueryVector) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a741b61d24af15b3332721b0751ec3a7a',1,'ostk::mathematics::curvefitting::interpolator::Linear::evaluate(const double &aQueryValue) const override'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a2e5f87beae48daf0ebbd4da6c0fdcb77',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const VectorXd &aQueryVector) const =0'],['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#aae0c8423f11e7aa9f764ee4973070c36',1,'ostk::mathematics::curvefitting::Interpolator::evaluate(const double &aQueryValue) const =0']]], + ['exp_564',['exp',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e858e5dbaf5ac0b3385e76320cc449f',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/functions_5.js b/html/search/functions_5.js index 4d995cb6..64aea531 100644 --- a/html/search/functions_5.js +++ b/html/search/functions_5.js @@ -1,75 +1,79 @@ var searchData= [ - ['generatearraywithsize_546',['generateArrayWithSize',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad84a50656e1779837cdf34e8cb8867a2',1,'ostk::mathematics::object::Interval']]], - ['generatearraywithstep_547',['generateArrayWithStep',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868',1,'ostk::mathematics::object::Interval']]], - ['generateinterpolator_548',['GenerateInterpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a41019cdd1cad7b5c5c818ff25a122536',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['getabsolutetolerance_549',['getAbsoluteTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acd9c18a1b9dc2ba8bb5605da416638dc',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getangle_550',['getAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a9ab023a205fcfdb8b12dae5aae10daad',1,'ostk::mathematics::geometry::d3::object::Cone::getAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAngle()']]], - ['getapex_551',['getApex',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#af4e2a4ec2ea977f144e7f7e9a0aed779',1,'ostk::mathematics::geometry::d3::object::Cone::getApex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a11b0783c46852783670d9d0aa82fc61a',1,'ostk::mathematics::geometry::d3::object::Pyramid::getApex()']]], - ['getaxis_552',['getAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a8089b763c1415d24136cd42b31a95fee',1,'ostk::mathematics::geometry::d3::object::Cone::getAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAxis()']]], - ['getbase_553',['getBase',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8438922f810553cb5ca34e777ef809bd',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getcenter_554',['getCenter',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7e8e8108964812282c0bd08bd8020116',1,'ostk::mathematics::geometry::d2::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7d4dde36b455d6e11a3ed9a0dbbafa01',1,'ostk::mathematics::geometry::d3::object::Cuboid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aaffdeef56c13f84501e5e303c932890a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afef142ebd804a348980d9ba1b86bc955',1,'ostk::mathematics::geometry::d3::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a02fcea7a4eaae6f396bc09e09bcc6966',1,'ostk::mathematics::geometry::d3::object::Sphere::getCenter()']]], - ['getcolumnat_555',['getColumnAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['getconvexhull_556',['getConvexHull',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a83c6178d69cbf895f4def2487cac0b06',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::getConvexHull()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a28f6ead5b5f3b2125330c318e2aee4c5',1,'ostk::mathematics::geometry::d2::object::Polygon::getConvexHull()']]], - ['getdirection_557',['getDirection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#abe689136d2b21263bfc7a0e4431a4941',1,'ostk::mathematics::geometry::d2::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9',1,'ostk::mathematics::geometry::d2::object::Segment::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac14c45f446051372e0a4dc3f4a6d514c',1,'ostk::mathematics::geometry::d3::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a5154c1a63676ebf5948aaa544a819608',1,'ostk::mathematics::geometry::d3::object::Ray::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae164dfde1de40b86054ec6b945b7e274',1,'ostk::mathematics::geometry::d3::object::Segment::getDirection()']]], - ['getedgeat_558',['getEdgeAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#accd882308127423cb544a6baa5230e0a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af2becfe7fb55b38515336f000c321b2f',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeAt()']]], - ['getedgecount_559',['getEdgeCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8899fe8a17de74160cf594c41af36d6a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a331693f8f195c7074b7eb012207d944e',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeCount()']]], - ['getedges_560',['getEdges',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad96e3314523abd27276eca0a7b16f00d',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdges()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a061e927858c6ae9e318561c9bb76f02a',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdges()']]], - ['getfirstaxis_561',['getFirstAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa1e57bae3cf58c83496484ff6943446a',1,'ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a67ec6b3fcf80a18b0dbb6521c321e003',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getFirstAxis()']]], - ['getfirstextent_562',['getFirstExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae73025b31d9a9beeb8969a3515f1f211',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getfirstpoint_563',['getFirstPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ab16e56418d2482c24971dcf678d85ec5',1,'ostk::mathematics::geometry::d2::object::Segment::getFirstPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa382709e1071932f9fbf51f6863f4ab0',1,'ostk::mathematics::geometry::d3::object::Segment::getFirstPoint()']]], - ['getfirstprincipalsemiaxis_564',['getFirstPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aee9a534a5fe0d981f240778a675592f0',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getinnerringat_565',['getInnerRingAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ae6ca3b527769f810852bf4c7a05f6b53',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getinnerringcount_566',['getInnerRingCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ab0e7337f42aace5f1032bb56bd497d77',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getinterpolationtype_567',['getInterpolationType',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a3e596528cd5e416546dabe45e9100e04',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['getintersectionwith_568',['getIntersectionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1',1,'ostk::mathematics::object::Interval']]], - ['getinverse_569',['getInverse',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a81ec04277231eb4c06a3daf04bbd5b22',1,'ostk::mathematics::geometry::d2::Transformation::getInverse()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a4d7e7f02948277935e28e089ba85d6bd',1,'ostk::mathematics::geometry::d3::Transformation::getInverse()']]], - ['getlateralfaceat_570',['getLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aca6a2bed3e225add46016583f1c3baec',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getlateralfacecount_571',['getLateralFaceCount',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aed535ef84d792822dd1105148fb76451',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getlength_572',['getLength',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a90d8233fcd492fac4a74d5715d5e3b28',1,'ostk::mathematics::geometry::d2::object::Segment::getLength()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#adf1fed29cbbb81556c3a512efcf917aa',1,'ostk::mathematics::geometry::d3::object::Segment::getLength()']]], - ['getlinestringcount_573',['getLineStringCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a307dced668e40eb38bebea36f1f66dd1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], - ['getlogtype_574',['getLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acc6274d68e4f0ec5f10089db23354a90',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getlowerbound_575',['getLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60',1,'ostk::mathematics::object::Interval']]], - ['getmatrix_576',['getMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3b523e122e6023e9416269a0bcab7367',1,'ostk::mathematics::geometry::d2::Transformation::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad28f3cc4c201d12054da52ce51bdb6a3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6581c0285a996750beb921f7138cbe09',1,'ostk::mathematics::geometry::d3::Transformation::getMatrix()']]], - ['getnormalvector_577',['getNormalVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8637b16118f31b362eb371c3550a430b',1,'ostk::mathematics::geometry::d3::object::Plane::getNormalVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a7a4c4b31702b6fce4d15b00a602ab033',1,'ostk::mathematics::geometry::d3::object::Polygon::getNormalVector()']]], - ['getobjectcount_578',['getObjectCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a823c0b72b4adcdd660b3d2eb874f0b93',1,'ostk::mathematics::geometry::d2::object::Composite::getObjectCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aeb62c71920e942368345586df194b63e',1,'ostk::mathematics::geometry::d3::object::Composite::getObjectCount()']]], - ['getobservedstatevectors_579',['getObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ac1dc63e114e85e2c733349ae7f69ed9d',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getorientation_580',['getOrientation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a68cbd49084f102aa99f9135bd0fce3db',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getorigin_581',['getOrigin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a2af43b703748a7eef22d63c7413fc85c',1,'ostk::mathematics::geometry::d2::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a9dc7e990d3dde27a6cdb332c27df0422',1,'ostk::mathematics::geometry::d3::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a2a9544f0a707b1760b0a1d52aed42623',1,'ostk::mathematics::geometry::d3::object::Polygon::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a64e20625495d9d302afe9c8edcb87ff9',1,'ostk::mathematics::geometry::d3::object::Ray::getOrigin()']]], - ['getouterring_582',['getOuterRing',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8cf439cf1110d7046b793123ac10b99d',1,'ostk::mathematics::geometry::d2::object::Polygon']]], - ['getpoint_583',['getPoint',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0',1,'ostk::mathematics::geometry::d3::object::Plane']]], - ['getpointarray_584',['getPointArray',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a66e45823757b2fa9a486729e02a91b94',1,'ostk::mathematics::geometry::d2::object::LineString']]], - ['getpointclosestto_585',['getPointClosestTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ae59decef7e902caadca16d171658701e',1,'ostk::mathematics::geometry::d2::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ae1e7df5d3840884839e43aa0aca5ba6b',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a9ada547e27eb625b3be37ac1f8bd5e08',1,'ostk::mathematics::geometry::d2::object::PointSet::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#acdf9a6bdfdf5e8b51c3521367d9adf35',1,'ostk::mathematics::geometry::d3::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac94914cb9c81d2fadab4e700088be7da',1,'ostk::mathematics::geometry::d3::object::PointSet::getPointClosestTo()']]], - ['getpointcount_586',['getPointCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a31ff5ebe4cb0e03f08a68218ec7723c0',1,'ostk::mathematics::geometry::d2::object::LineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af6b98286c8c872d39d8659d5672f7649',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4e68ff9a60ace16eba53c703828c07e2',1,'ostk::mathematics::geometry::d3::object::LineString::getPointCount()']]], - ['getpolygon2d_587',['getPolygon2d',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a59a5f8d88d61da7f2875b1dee2b0acae',1,'ostk::mathematics::geometry::d3::object::Polygon']]], - ['getpolygoncount_588',['getPolygonCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae9ce727a0b851951cb91cd646d745d6e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['getpolygons_589',['getPolygons',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2d3cb29e353fd52f931b4b23d9fb3236',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], - ['getradius_590',['getRadius',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a391da737aed2cd3615f9992949c07abe',1,'ostk::mathematics::geometry::d3::object::Sphere']]], - ['getraysoflateralfaceat_591',['getRaysOfLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a83e11f308ae9cd0cdfd10a15c4c11335',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getraysoflateralfaces_592',['getRaysOfLateralFaces',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8674910a0a9b4a158c0a538c646fe971',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], - ['getraysoflateralsurface_593',['getRaysOfLateralSurface',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4531bad0aa524f19588b4458796b3f78',1,'ostk::mathematics::geometry::d3::object::Cone']]], - ['getrelativetolerance_594',['getRelativeTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af59c4d7855ecc9a757df289df56b6495',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getrowat_595',['getRowAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['getscalarpart_596',['getScalarPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['getsecondaxis_597',['getSecondAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a6faa56bfcc4ab39fc6025ca1e179227b',1,'ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a71329b4763d0b8dc247f73167e69308c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getSecondAxis()']]], - ['getsecondextent_598',['getSecondExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a469d77aeca859afb5a98af4773504ba2',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getsecondpoint_599',['getSecondPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0417919bc94c59ae23492d591514b6c9',1,'ostk::mathematics::geometry::d2::object::Segment::getSecondPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a06820598f214bcd39275d7a5b92c7247',1,'ostk::mathematics::geometry::d3::object::Segment::getSecondPoint()']]], - ['getsecondprincipalsemiaxis_600',['getSecondPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a87c58137ec69a852e079274838b1f1f5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['getsignedtimestep_601',['getSignedTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a348ac983e497f1185031205dd465c588',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getsize_602',['getSize',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a5364c919ae2c9607ac6ca463588fb358',1,'ostk::mathematics::geometry::d2::object::PointSet::getSize()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#af110ae77a421e673d3ede1b39bfea608',1,'ostk::mathematics::geometry::d3::object::PointSet::getSize()']]], - ['getsteppertype_603',['getStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a520c6ba46e8033399d81c0f896fa5539',1,'ostk::mathematics::solver::NumericalSolver']]], - ['getthirdaxis_604',['getThirdAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abdd000d8bdb9d14c3023305572347859',1,'ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5fe355055f5fdce92375fa04ff1851e9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getThirdAxis()']]], - ['getthirdextent_605',['getThirdExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a9e7aac9e658a9d647aa07d7aafb93124',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], - ['getthirdprincipalsemiaxis_606',['getThirdPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca6b3792410def0bef84025ffd981836',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], - ['gettimestep_607',['getTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aad43791f97dfc11ac7b4dc3e97a6a786',1,'ostk::mathematics::solver::NumericalSolver']]], - ['gettype_608',['getType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad258b08bc3806cb99bb4019293b92992',1,'ostk::mathematics::geometry::d2::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ad4af5f661b7219ddac4e96de8fb4c462',1,'ostk::mathematics::geometry::d2::Transformation::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a367b3a8193c36e55d69008429349866f',1,'ostk::mathematics::geometry::d3::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac56b1e2bf4c24a55f55b22d856f5af25',1,'ostk::mathematics::geometry::d3::Transformation::getType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#aed3a6e8e931beaa732211ccb44e2c43d',1,'ostk::mathematics::object::Interval::getType()']]], - ['getunionwith_609',['getUnionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#af0b873731c1700be9b2a30d87a2aa956',1,'ostk::mathematics::object::Interval']]], - ['getunit_610',['getUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aaf5a6fca6315e78ec77c6b4bbc3dd5c9',1,'ostk::mathematics::geometry::Angle']]], - ['getupperbound_611',['getUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b',1,'ostk::mathematics::object::Interval']]], - ['getvectorpart_612',['getVectorPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['getvertexat_613',['getVertexAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a40e8429ba11bf27825295b9a4d467bf6',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a6d1e6c86c77796b38b006e60a4e42501',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexAt()']]], - ['getvertexcount_614',['getVertexCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac95bb98116f2a2f8daa00c1f128d41d9',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#abd7c3950f920132bf429342772102058',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexCount()']]], - ['getvertices_615',['getVertices',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a3308ae10e5627e0427dab164bb4b41d8',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a957659e1c2269b537c70683674ebc223',1,'ostk::mathematics::geometry::d3::object::Cuboid::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aa882c5688de60db3e90fb540f5016b65',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertices()']]], - ['getxaxis_616',['getXAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aba824d7c22a6609d103f910ec7c3d646',1,'ostk::mathematics::geometry::d3::object::Polygon']]], - ['getyaxis_617',['getYAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ae0d384044e734cc18867358ac9d690f1',1,'ostk::mathematics::geometry::d3::object::Polygon']]] + ['generatearraywithsize_565',['generateArrayWithSize',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad84a50656e1779837cdf34e8cb8867a2',1,'ostk::mathematics::object::Interval']]], + ['generatearraywithstep_566',['generateArrayWithStep',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad1636246dd97c94a67d38b5d2a8eb868',1,'ostk::mathematics::object::Interval']]], + ['generateinterpolator_567',['GenerateInterpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a41019cdd1cad7b5c5c818ff25a122536',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['getabsolutetolerance_568',['getAbsoluteTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acd9c18a1b9dc2ba8bb5605da416638dc',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getangle_569',['getAngle',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a9ab023a205fcfdb8b12dae5aae10daad',1,'ostk::mathematics::geometry::d3::object::Cone::getAngle()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ac9544a31482220e580b6ad383c888bb5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAngle()']]], + ['getapex_570',['getApex',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#af4e2a4ec2ea977f144e7f7e9a0aed779',1,'ostk::mathematics::geometry::d3::object::Cone::getApex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a11b0783c46852783670d9d0aa82fc61a',1,'ostk::mathematics::geometry::d3::object::Pyramid::getApex()']]], + ['getaxis_571',['getAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a8089b763c1415d24136cd42b31a95fee',1,'ostk::mathematics::geometry::d3::object::Cone::getAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a177b242ce75f1631de02e15e50804958',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::getAxis()']]], + ['getaxissequence_572',['getAxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a959afa9de94bff84008813662da769e0',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getbase_573',['getBase',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8438922f810553cb5ca34e777ef809bd',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getcenter_574',['getCenter',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7e8e8108964812282c0bd08bd8020116',1,'ostk::mathematics::geometry::d2::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7d4dde36b455d6e11a3ed9a0dbbafa01',1,'ostk::mathematics::geometry::d3::object::Cuboid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aaffdeef56c13f84501e5e303c932890a',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#afef142ebd804a348980d9ba1b86bc955',1,'ostk::mathematics::geometry::d3::object::Segment::getCenter()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a02fcea7a4eaae6f396bc09e09bcc6966',1,'ostk::mathematics::geometry::d3::object::Sphere::getCenter()']]], + ['getcolumnat_575',['getColumnAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2abb637de6747ef51067aaf00237d9bf',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['getconvexhull_576',['getConvexHull',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a83c6178d69cbf895f4def2487cac0b06',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::getConvexHull()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a28f6ead5b5f3b2125330c318e2aee4c5',1,'ostk::mathematics::geometry::d2::object::Polygon::getConvexHull()']]], + ['getdirection_577',['getDirection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#abe689136d2b21263bfc7a0e4431a4941',1,'ostk::mathematics::geometry::d2::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a1963e9bad746b355e0b340804622b2b9',1,'ostk::mathematics::geometry::d2::object::Segment::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ac14c45f446051372e0a4dc3f4a6d514c',1,'ostk::mathematics::geometry::d3::object::Line::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a5154c1a63676ebf5948aaa544a819608',1,'ostk::mathematics::geometry::d3::object::Ray::getDirection()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae164dfde1de40b86054ec6b945b7e274',1,'ostk::mathematics::geometry::d3::object::Segment::getDirection()']]], + ['getedgeat_578',['getEdgeAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#accd882308127423cb544a6baa5230e0a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af2becfe7fb55b38515336f000c321b2f',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeAt()']]], + ['getedgecount_579',['getEdgeCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8899fe8a17de74160cf594c41af36d6a',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdgeCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a331693f8f195c7074b7eb012207d944e',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdgeCount()']]], + ['getedges_580',['getEdges',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad96e3314523abd27276eca0a7b16f00d',1,'ostk::mathematics::geometry::d2::object::Polygon::getEdges()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a061e927858c6ae9e318561c9bb76f02a',1,'ostk::mathematics::geometry::d3::object::Polygon::getEdges()']]], + ['getfirstaxis_581',['getFirstAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa1e57bae3cf58c83496484ff6943446a',1,'ostk::mathematics::geometry::d3::object::Cuboid::getFirstAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a67ec6b3fcf80a18b0dbb6521c321e003',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getFirstAxis()']]], + ['getfirstextent_582',['getFirstExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae73025b31d9a9beeb8969a3515f1f211',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getfirstpoint_583',['getFirstPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ab16e56418d2482c24971dcf678d85ec5',1,'ostk::mathematics::geometry::d2::object::Segment::getFirstPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa382709e1071932f9fbf51f6863f4ab0',1,'ostk::mathematics::geometry::d3::object::Segment::getFirstPoint()']]], + ['getfirstprincipalsemiaxis_584',['getFirstPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aee9a534a5fe0d981f240778a675592f0',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getinnerringat_585',['getInnerRingAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ae6ca3b527769f810852bf4c7a05f6b53',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getinnerringcount_586',['getInnerRingCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ab0e7337f42aace5f1032bb56bd497d77',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getinterpolationtype_587',['getInterpolationType',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a3e596528cd5e416546dabe45e9100e04',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['getintersectionwith_588',['getIntersectionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a2d06470c41c25401977c6a1b0da578e1',1,'ostk::mathematics::object::Interval']]], + ['getinverse_589',['getInverse',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a81ec04277231eb4c06a3daf04bbd5b22',1,'ostk::mathematics::geometry::d2::Transformation::getInverse()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a4d7e7f02948277935e28e089ba85d6bd',1,'ostk::mathematics::geometry::d3::Transformation::getInverse()']]], + ['getlateralfaceat_590',['getLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aca6a2bed3e225add46016583f1c3baec',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getlateralfacecount_591',['getLateralFaceCount',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aed535ef84d792822dd1105148fb76451',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getlength_592',['getLength',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a90d8233fcd492fac4a74d5715d5e3b28',1,'ostk::mathematics::geometry::d2::object::Segment::getLength()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#adf1fed29cbbb81556c3a512efcf917aa',1,'ostk::mathematics::geometry::d3::object::Segment::getLength()']]], + ['getlinestringcount_593',['getLineStringCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a307dced668e40eb38bebea36f1f66dd1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], + ['getlogtype_594',['getLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#acc6274d68e4f0ec5f10089db23354a90',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getlowerbound_595',['getLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a79e64fd3c8faa78c8b62859c5b095b60',1,'ostk::mathematics::object::Interval']]], + ['getmatrix_596',['getMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3b523e122e6023e9416269a0bcab7367',1,'ostk::mathematics::geometry::d2::Transformation::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad28f3cc4c201d12054da52ce51bdb6a3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a2cea2567403768437e4074720996bea2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::getMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6581c0285a996750beb921f7138cbe09',1,'ostk::mathematics::geometry::d3::Transformation::getMatrix()']]], + ['getnormalvector_597',['getNormalVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8637b16118f31b362eb371c3550a430b',1,'ostk::mathematics::geometry::d3::object::Plane::getNormalVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a7a4c4b31702b6fce4d15b00a602ab033',1,'ostk::mathematics::geometry::d3::object::Polygon::getNormalVector()']]], + ['getobjectcount_598',['getObjectCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a823c0b72b4adcdd660b3d2eb874f0b93',1,'ostk::mathematics::geometry::d2::object::Composite::getObjectCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#aeb62c71920e942368345586df194b63e',1,'ostk::mathematics::geometry::d3::object::Composite::getObjectCount()']]], + ['getobservedstatevectors_599',['getObservedStateVectors',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ac1dc63e114e85e2c733349ae7f69ed9d',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getorientation_600',['getOrientation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a68cbd49084f102aa99f9135bd0fce3db',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getorigin_601',['getOrigin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a2af43b703748a7eef22d63c7413fc85c',1,'ostk::mathematics::geometry::d2::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a9dc7e990d3dde27a6cdb332c27df0422',1,'ostk::mathematics::geometry::d3::object::Line::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a2a9544f0a707b1760b0a1d52aed42623',1,'ostk::mathematics::geometry::d3::object::Polygon::getOrigin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a64e20625495d9d302afe9c8edcb87ff9',1,'ostk::mathematics::geometry::d3::object::Ray::getOrigin()']]], + ['getouterring_602',['getOuterRing',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8cf439cf1110d7046b793123ac10b99d',1,'ostk::mathematics::geometry::d2::object::Polygon']]], + ['getphi_603',['getPhi',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a6a2ec66eea87c4645cc7815c82d09d0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getpoint_604',['getPoint',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a27ac75e7c17511ca313236d2048dfac0',1,'ostk::mathematics::geometry::d3::object::Plane']]], + ['getpointarray_605',['getPointArray',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a66e45823757b2fa9a486729e02a91b94',1,'ostk::mathematics::geometry::d2::object::LineString']]], + ['getpointclosestto_606',['getPointClosestTo',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ae59decef7e902caadca16d171658701e',1,'ostk::mathematics::geometry::d2::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ae1e7df5d3840884839e43aa0aca5ba6b',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a9ada547e27eb625b3be37ac1f8bd5e08',1,'ostk::mathematics::geometry::d2::object::PointSet::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#acdf9a6bdfdf5e8b51c3521367d9adf35',1,'ostk::mathematics::geometry::d3::object::LineString::getPointClosestTo()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac94914cb9c81d2fadab4e700088be7da',1,'ostk::mathematics::geometry::d3::object::PointSet::getPointClosestTo()']]], + ['getpointcount_607',['getPointCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a31ff5ebe4cb0e03f08a68218ec7723c0',1,'ostk::mathematics::geometry::d2::object::LineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af6b98286c8c872d39d8659d5672f7649',1,'ostk::mathematics::geometry::d2::object::MultiLineString::getPointCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4e68ff9a60ace16eba53c703828c07e2',1,'ostk::mathematics::geometry::d3::object::LineString::getPointCount()']]], + ['getpolygon2d_608',['getPolygon2d',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a59a5f8d88d61da7f2875b1dee2b0acae',1,'ostk::mathematics::geometry::d3::object::Polygon']]], + ['getpolygoncount_609',['getPolygonCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ae9ce727a0b851951cb91cd646d745d6e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['getpolygons_610',['getPolygons',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2d3cb29e353fd52f931b4b23d9fb3236',1,'ostk::mathematics::geometry::d2::object::MultiPolygon']]], + ['getpsi_611',['getPsi',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a21bb162e148332ca5c36fe4ec1d9de58',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getradius_612',['getRadius',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a391da737aed2cd3615f9992949c07abe',1,'ostk::mathematics::geometry::d3::object::Sphere']]], + ['getraysoflateralfaceat_613',['getRaysOfLateralFaceAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a83e11f308ae9cd0cdfd10a15c4c11335',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getraysoflateralfaces_614',['getRaysOfLateralFaces',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8674910a0a9b4a158c0a538c646fe971',1,'ostk::mathematics::geometry::d3::object::Pyramid']]], + ['getraysoflateralsurface_615',['getRaysOfLateralSurface',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4531bad0aa524f19588b4458796b3f78',1,'ostk::mathematics::geometry::d3::object::Cone']]], + ['getrelativetolerance_616',['getRelativeTolerance',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af59c4d7855ecc9a757df289df56b6495',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getrowat_617',['getRowAt',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a8f62d9ae197f5f94e168a612be0a9bb1',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['getscalarpart_618',['getScalarPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af25340ddd9f641d4e3b588b0fa110669',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['getsecondaxis_619',['getSecondAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a6faa56bfcc4ab39fc6025ca1e179227b',1,'ostk::mathematics::geometry::d3::object::Cuboid::getSecondAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a71329b4763d0b8dc247f73167e69308c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getSecondAxis()']]], + ['getsecondextent_620',['getSecondExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a469d77aeca859afb5a98af4773504ba2',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getsecondpoint_621',['getSecondPoint',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a0417919bc94c59ae23492d591514b6c9',1,'ostk::mathematics::geometry::d2::object::Segment::getSecondPoint()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a06820598f214bcd39275d7a5b92c7247',1,'ostk::mathematics::geometry::d3::object::Segment::getSecondPoint()']]], + ['getsecondprincipalsemiaxis_622',['getSecondPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a87c58137ec69a852e079274838b1f1f5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['getsignedtimestep_623',['getSignedTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a348ac983e497f1185031205dd465c588',1,'ostk::mathematics::solver::NumericalSolver']]], + ['getsize_624',['getSize',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a5364c919ae2c9607ac6ca463588fb358',1,'ostk::mathematics::geometry::d2::object::PointSet::getSize()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#af110ae77a421e673d3ede1b39bfea608',1,'ostk::mathematics::geometry::d3::object::PointSet::getSize()']]], + ['getsteppertype_625',['getStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a520c6ba46e8033399d81c0f896fa5539',1,'ostk::mathematics::solver::NumericalSolver']]], + ['gettheta_626',['getTheta',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a13a35f51cad01171184a1feb3910b68b',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['getthirdaxis_627',['getThirdAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abdd000d8bdb9d14c3023305572347859',1,'ostk::mathematics::geometry::d3::object::Cuboid::getThirdAxis()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5fe355055f5fdce92375fa04ff1851e9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::getThirdAxis()']]], + ['getthirdextent_628',['getThirdExtent',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a9e7aac9e658a9d647aa07d7aafb93124',1,'ostk::mathematics::geometry::d3::object::Cuboid']]], + ['getthirdprincipalsemiaxis_629',['getThirdPrincipalSemiAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#aca6b3792410def0bef84025ffd981836',1,'ostk::mathematics::geometry::d3::object::Ellipsoid']]], + ['gettimestep_630',['getTimeStep',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aad43791f97dfc11ac7b4dc3e97a6a786',1,'ostk::mathematics::solver::NumericalSolver']]], + ['gettype_631',['getType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad258b08bc3806cb99bb4019293b92992',1,'ostk::mathematics::geometry::d2::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ad4af5f661b7219ddac4e96de8fb4c462',1,'ostk::mathematics::geometry::d2::Transformation::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a367b3a8193c36e55d69008429349866f',1,'ostk::mathematics::geometry::d3::Intersection::getType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac56b1e2bf4c24a55f55b22d856f5af25',1,'ostk::mathematics::geometry::d3::Transformation::getType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#aed3a6e8e931beaa732211ccb44e2c43d',1,'ostk::mathematics::object::Interval::getType()']]], + ['getunionwith_632',['getUnionWith',['../classostk_1_1mathematics_1_1object_1_1_interval.html#af0b873731c1700be9b2a30d87a2aa956',1,'ostk::mathematics::object::Interval']]], + ['getunit_633',['getUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aaf5a6fca6315e78ec77c6b4bbc3dd5c9',1,'ostk::mathematics::geometry::Angle']]], + ['getupperbound_634',['getUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a17efb397c97eb600f37fbe3e8517df4b',1,'ostk::mathematics::object::Interval']]], + ['getvectorpart_635',['getVectorPart',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a3c12f3cb5522ec354d8f2e369135430c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['getvertexat_636',['getVertexAt',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a40e8429ba11bf27825295b9a4d467bf6',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexAt()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a6d1e6c86c77796b38b006e60a4e42501',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexAt()']]], + ['getvertexcount_637',['getVertexCount',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ac95bb98116f2a2f8daa00c1f128d41d9',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertexCount()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#abd7c3950f920132bf429342772102058',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertexCount()']]], + ['getvertices_638',['getVertices',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a3308ae10e5627e0427dab164bb4b41d8',1,'ostk::mathematics::geometry::d2::object::Polygon::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a957659e1c2269b537c70683674ebc223',1,'ostk::mathematics::geometry::d3::object::Cuboid::getVertices()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aa882c5688de60db3e90fb540f5016b65',1,'ostk::mathematics::geometry::d3::object::Polygon::getVertices()']]], + ['getxaxis_639',['getXAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#aba824d7c22a6609d103f910ec7c3d646',1,'ostk::mathematics::geometry::d3::object::Polygon']]], + ['getyaxis_640',['getYAxis',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ae0d384044e734cc18867358ac9d690f1',1,'ostk::mathematics::geometry::d3::object::Polygon']]] ]; diff --git a/html/search/functions_6.js b/html/search/functions_6.js index 30038cdf..a1579b42 100644 --- a/html/search/functions_6.js +++ b/html/search/functions_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['halfopenleft_618',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac0553ec6683fa168ae0beb39d1a4377a',1,'ostk::mathematics::object::Interval']]], - ['halfopenright_619',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac7c309f97e84496b0520879137fb26a4',1,'ostk::mathematics::object::Interval']]], - ['halfpi_620',['HalfPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3902ff6a057fc65e17b462d2d31e9cd2',1,'ostk::mathematics::geometry::Angle']]] + ['halfopenleft_641',['HalfOpenLeft',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac0553ec6683fa168ae0beb39d1a4377a',1,'ostk::mathematics::object::Interval']]], + ['halfopenright_642',['HalfOpenRight',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac7c309f97e84496b0520879137fb26a4',1,'ostk::mathematics::object::Interval']]], + ['halfpi_643',['HalfPi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3902ff6a057fc65e17b462d2d31e9cd2',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/functions_7.js b/html/search/functions_7.js index 111eeec6..59468b94 100644 --- a/html/search/functions_7.js +++ b/html/search/functions_7.js @@ -1,30 +1,31 @@ var searchData= [ - ['identity_621',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a509eff4857f5c7e947fe3673269bc20f',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5cd654de32139306358aa773bbf8c291',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]], - ['in_622',['in',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a5a4a660668c35df6cc2ad47e02727b7e',1,'ostk::mathematics::geometry::Angle']]], - ['inarcminutes_623',['inArcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2',1,'ostk::mathematics::geometry::Angle::inArcminutes() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b',1,'ostk::mathematics::geometry::Angle::inArcminutes(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inarcseconds_624',['inArcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a2a14798865b6afe512b1d21797092c84',1,'ostk::mathematics::geometry::Angle::inArcseconds() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a20aa823cd2cd954365f0daaba9e77c6d',1,'ostk::mathematics::geometry::Angle::inArcseconds(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['indegrees_625',['inDegrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a31b1cd5ca5d3ca1c5c866b0274933edb',1,'ostk::mathematics::geometry::Angle::inDegrees() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4d56166e0b2512567cedf1e4f267d29e',1,'ostk::mathematics::geometry::Angle::inDegrees(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inradians_626',['inRadians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7',1,'ostk::mathematics::geometry::Angle::inRadians() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#acfb4ab5bc33ca5bf005bcffae8c02073',1,'ostk::mathematics::geometry::Angle::inRadians(const Real &aLowerBound, const Real &anUpperBound) const']]], - ['inrevolutions_627',['inRevolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aff2915c9dfacf75a3c601688b3ab0d6b',1,'ostk::mathematics::geometry::Angle']]], - ['integrateduration_628',['integrateDuration',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a0b2c17bbe35e2cbb8a352b4736685637',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Real &aDurationInSeconds, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae8581bab9e2de3b4025c966da27a72c2',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Array< Real > &aDurationArray, const SystemOfEquationsWrapper &aSystemOfEquations)']]], - ['integratetime_629',['integrateTime',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7f9c29b8cbdb29b1e1de907a528f902d',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Array< Real > &aTimeArray, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6ca786d30c480052c195cea67f919f05',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Real &anEndTime, const SystemOfEquationsWrapper &aSystemOfEquations)']]], - ['interpolator_630',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6593f90bb974214f6f2b264bc114b96e',1,'ostk::mathematics::curvefitting::Interpolator']]], - ['intersection_631',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#abadbbcd1176ace347a7148ea89a0fdef',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a5078dd27fbdbff7de1eeaa0a49eaea18',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(const Intersection &anIntersection)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aa36acae0dea26436f03216212ca4d571',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a516c2bf940b353c16293f49e49064780',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(const Intersection &anIntersection)']]], - ['intersectionwith_632',['intersectionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#aeeedeff734bdf3fceae7d17dc9aa2097',1,'ostk::mathematics::geometry::d2::object::Polygon::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a17316a3b66d1459e5a152d71af82d28c',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4605abca6734c866d094f0d40d001b3f',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aff8111459bf4fd52f4890d52ef468c0a',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Sphere &aSphere, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4007f417805759277400b050391b77c9',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1fc1bdcbc9727ed2bb089fb257719827',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#afffd360837814171549e1e23ffb60b6e',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a38e0ac9992b7f2d5c7a8556dc0a1f36d',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a024aa416b981d548d3e5cc7b8a496cfe',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae4489290518d48903197556ee086c203',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5c3062e7f2f271c470821e3addbd3698',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a81a3f44b8b4a26c8c7db2fa5f1ea98c3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ac3f1b3592db2bbfb25890382a2276878',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#abcbc9b4bbcb64628471f7b233639d645',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2d6ef8385352f67912edbf2b2db7e3c2',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Cone &aCone, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8543a4010dc4847303f00afb77786378',1,'ostk::mathematics::geometry::d3::object::Line::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#abc6de4b10a4db6f07a8d0e0358d52c5c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aefbcaaa5d805230fb4414211e330beb4',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8074e08abe264931aedb9662ae818ee0',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a93113d23dee9ac80c7cba6198ce272a2',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a5ed8e14c5ca36792c887d534d446ce4f',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a71557ba02108ba09422fb3c2b2c8ed68',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a29e402d81639c9a6d094181d8c4ed1c7',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a17a3946028e0de16727f63d3f3e6f69d',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af5450d87b31c03fb1fb1ffd14547783d',1,'ostk::mathematics::geometry::d3::object::Segment::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#af155cd1d10cd5b010b134a29e6d67492',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#abfdfa4f19cb716271505c28d7085d2da',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Ray &aRay, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a66e7d89eaf128a2ee1277a605f25ab7e',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad710eeb805c0152d53dc874131f5f758',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae16d1ba9ed85bb8b7716202a651c262c',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Cone &aCone, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ac1325aba0fa3796c9ddc5d39dfe40aa6',1,'ostk::mathematics::geometry::d3::Object::intersectionWith()']]], - ['intersects_633',['intersects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a268fb26bb98a77e6ddca626901e9449e',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae79948364d0502c3b6f839ce90e00b45',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#adda17499fb10cce0898d611ec234817e',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a8f6979f55c2a971d1b7f1f7dc4b991be',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8292e74414aa470153d0bd6f0884e00d',1,'ostk::mathematics::geometry::d2::object::Polygon::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a553d7a1e388598c74d0f9fdd57d1ba9d',1,'ostk::mathematics::geometry::d2::Object::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#afb414dd80dce2ea9aad5513c8f466e94',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a5377ac1f13ee56f32d1c125a26d28a60',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a801e263af20ca039858bcecdd579ff1c',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aa08f535f31cc63cc5675f434b20617e4',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a25720e902948424afe2f04f20e17aaad',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a912567b6d352e2c74129dc3bf1338e33',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7b7213f7ee4154957c65b0c8d9fdde63',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af02af83e9c321858d2b54dfc31730aa9',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0d7ae6afa89438cb9f1676fccd400b15',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a23cf1aaedc78eb2cf1bb5b2cc1df92f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af0a08f4419d48e38793f875654bc97f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a5ebb29d0be21f18c899b255af1347d89',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0496625c9ee5edb30052b1b125fcbc64',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9b031c4f2a63121d6b5060dea2fd85dc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a8a8d5655286857611c174afd3e324d45',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae3f7633c6157c430980af3832d0a73b9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae93d460a11c18dcc589501535db52622',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a00bfb5a8d081333b080b586f4b81f8cc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad0c47ee2cbdc18795a00c72a47f83a33',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a1d17071a0fe4ae568bffcbbb3a12aeb8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a376af728b387ddc84152ad2fea9076ad',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7176ac82c4684066d3656db93673fe8c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9903921f3b39326751b64198af6e9044',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2faa83f9795b399b706480d501d78d4b',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a94c3c7588bf70c66f9ec2f170c6a4121',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aae92782ed75f744c24c48e5d47cf0545',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a1ef879a1337fedd5b458c928bfd67ee2',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ac55945830db7e46ae59bca73f4a0c800',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aa4ef1e875568bd35e5a0c502cd9576a3',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a532ab8dd1b23858a0ecba19353d1ff7f',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8c2cb7d5c1378a400dce11cb78bbe1d4',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a04c4eacdc8f5d1edd6a1ff0da1d6e0fa',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4676717f067f8fd710fc9073d0b1709d',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#ae2daf13e58b060a4085944e3c3171910',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a6f9353b78f7f3d3c8824c29a97bd172e',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a46135e8dd6b6821f0d5e137f479f8997',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aa4aea4e829d688aeaa26440f211e9218',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a72bb7ad7136e99d98c580cd5a26728b5',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#acca8f1805ebeda2a26ae27c51ec4839b',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a310c09a4a237994b6cb89de517e763a5',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a665f8e3612d42576658fcd4e1ab5090d',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#afc06f6968104f1207b1f3da7ceaae4aa',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#adbdedf8a33a33ecf34f4c8a45f365c0d',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aa26ce6b341283ea77b99207a05368a52',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a669b7ac4228e1bf40fa0ffabc3cddde9',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a26a485b4674c7f852f07652297adf8b4',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a38e7ed98b7f10761bdf7c5d87315a460',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad2c172f9ed998e785986b13bffeb6c93',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3ec429fe276d4da08dea92c56c008fc5',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3b3ce9155edeeab7fbaec2cbdde06f41',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a0d8ddc7a929bb3b0b1c70ad82742e64e',1,'ostk::mathematics::geometry::d3::Object::intersects()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808',1,'ostk::mathematics::object::Interval::intersects()']]], - ['interval_634',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525',1,'ostk::mathematics::object::Interval']]], - ['inverse_635',['inverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['is_636',['is',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7d961245648ef69ae55d6e4cbf24544f',1,'ostk::mathematics::geometry::d2::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a569c373be972804901329c2b2886edba',1,'ostk::mathematics::geometry::d2::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad0823d059381f54389ee417b834c9ef8',1,'ostk::mathematics::geometry::d3::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1cfbb9bdbf5c56aae7fa6496b6e7c080',1,'ostk::mathematics::geometry::d3::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ad9e6f5027d14e3c7d7bead94052611ed',1,'ostk::mathematics::geometry::d3::Object::is()']]], - ['iscomplex_637',['isComplex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af2757994e5cca200ade007991ff4f160',1,'ostk::mathematics::geometry::d2::Intersection::isComplex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a08c4ac700f904766b8625ac09f2a3281',1,'ostk::mathematics::geometry::d3::Intersection::isComplex()']]], - ['isdefined_638',['isDefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aee7e7ede2e3ea269b9b2eb091da92b8f',1,'ostk::mathematics::geometry::d2::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a8978d917810e68bb9e6b484fc97524c3',1,'ostk::mathematics::geometry::d2::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a603f1de0e328c16a829b9e1c9f5c077f',1,'ostk::mathematics::geometry::d2::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad8e472cb5b6c7fe87374a1476b8835b7',1,'ostk::mathematics::geometry::d2::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac38eacd742cd2a60eb62d03cf1234b45',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a06c0dd090011c4bc96237f46ce47e049',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5a81fa8426fe6a4be5addda02c888704',1,'ostk::mathematics::geometry::d2::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a29bfbe3e8ba8d68e4e5b2351f225f965',1,'ostk::mathematics::geometry::d2::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a81f715c35ecd0fa424f2daf4ffe59bec',1,'ostk::mathematics::geometry::d2::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a6a88d19e8e5978c2fe9eeeb88d6cf8d7',1,'ostk::mathematics::geometry::d2::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#abe5ea18c13bc259fc0da0b0c49fa0dca',1,'ostk::mathematics::geometry::d2::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a7a810c3645491c671fae1953456257c4',1,'ostk::mathematics::geometry::d2::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a960e02ae1d0b7a1a5f6871ee70b161a0',1,'ostk::mathematics::geometry::d3::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a8ccf639112d5c08aa7d2bb831072ca2f',1,'ostk::mathematics::geometry::d3::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a927c5cfa7196f425f8cd153efde8e90f',1,'ostk::mathematics::geometry::d3::object::Cone::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae9749637798c6670bb1c2b8cc2850ba8',1,'ostk::mathematics::geometry::d3::object::Cuboid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e36099693bccb2d2e68d8673d86e5f6',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ae07b5282c948df716fc1fa5bedeec344',1,'ostk::mathematics::geometry::d3::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac79b6efa23440fa61690181c6ade42ec',1,'ostk::mathematics::geometry::d3::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47',1,'ostk::mathematics::geometry::d3::object::Plane::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a151a3020d20a0ae2847f5ce99bd7ee06',1,'ostk::mathematics::geometry::d3::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a6b8187ba8b67220e7562357ad846edaa',1,'ostk::mathematics::geometry::d3::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab2e3d42d2420cd0d3029f1d14e126a6c',1,'ostk::mathematics::geometry::d3::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b85f9aa5f4b1cdf0047c8010fdb7645',1,'ostk::mathematics::geometry::d3::object::Pyramid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a402bf991d7974383a2766f12367681cd',1,'ostk::mathematics::geometry::d3::object::Ray::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a682162f29a5597e61f0eaac2f9762518',1,'ostk::mathematics::geometry::d3::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a5311446aca36ccadbd8ae323502dba44',1,'ostk::mathematics::geometry::d3::object::Sphere::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a1962edbcdde0f851361b60324ab9ce2b',1,'ostk::mathematics::geometry::d3::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a94cd6ac661f8a55d599ea9a1eaa291dd',1,'ostk::mathematics::geometry::d3::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad99d5ff3a95e93b3599248c72b631ff1',1,'ostk::mathematics::geometry::Angle::isDefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708',1,'ostk::mathematics::object::Interval::isDefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae9123dc938fbfdf8497f804adf981f37',1,'ostk::mathematics::solver::NumericalSolver::isDefined()'],['../_eigen_8hpp.html#aaa1d139fcb55b1f038ab29d736d07f3d',1,'isDefined(): Eigen.hpp']]], - ['isdegenerate_639',['isDegenerate',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ae83df71f8f42ef823a7976f78de97a3f',1,'ostk::mathematics::geometry::d2::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a26a65f0f44cbde006a084bbdc9300089',1,'ostk::mathematics::geometry::d3::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a',1,'ostk::mathematics::object::Interval::isDegenerate()']]], - ['isempty_640',['isEmpty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4908a1b0edd4fb1b77bf13051f524a70',1,'ostk::mathematics::geometry::d2::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ac4ad3c0b11203ad5c8eb3e455edaf3a2',1,'ostk::mathematics::geometry::d2::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac2a570d2617759b4e5d9e802ba9abade',1,'ostk::mathematics::geometry::d2::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af5f5a56165c38b4dc183316189038642',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ae206d0de2c96dba3162f4bcdd4218234',1,'ostk::mathematics::geometry::d2::object::PointSet::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a457c09dcf9daaf8c0ebc0af50373936c',1,'ostk::mathematics::geometry::d3::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4212e7557991ad99f9d4dfe9cbf6b703',1,'ostk::mathematics::geometry::d3::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2be7308b9a8a52f43b920b01c41c7253',1,'ostk::mathematics::geometry::d3::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ab40c84e9a4d76cf89471771c74c3126c',1,'ostk::mathematics::geometry::d3::object::PointSet::isEmpty()']]], - ['isidentity_641',['isIdentity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afc750037dcccec8a35ea8b6e959836cf',1,'ostk::mathematics::geometry::d2::Transformation::isIdentity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a8ba50a377bd868397be3fa4111dfdf0f',1,'ostk::mathematics::geometry::d3::Transformation::isIdentity()']]], - ['isinf_642',['isInf',['../_eigen_8hpp.html#afe8246e867e93283cdfac59d16941411',1,'Eigen.hpp']]], - ['isnan_643',['isNaN',['../_eigen_8hpp.html#a0f14bad11d673c61a550d48d6777eae1',1,'Eigen.hpp']]], - ['isnear_644',['isNear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a93f187300021999caf7c48efabcb3265',1,'ostk::mathematics::geometry::d2::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a98b34037dc99160c8b58f0d45f78a02c',1,'ostk::mathematics::geometry::d2::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a219b3cafbf670b88d762c402d09de243',1,'ostk::mathematics::geometry::d2::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad5d51eaab4e20905884893b79ff6bf32',1,'ostk::mathematics::geometry::d2::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae79125fb5fff0a42cdd7bf89ba8a0718',1,'ostk::mathematics::geometry::d3::object::Cuboid::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac80cff5419ed1a8cbeb2b1b6835d15ae',1,'ostk::mathematics::geometry::d3::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a509a7280634229dbbc349000f77b1f96',1,'ostk::mathematics::geometry::d3::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aedd7f0ed2b59c5a8713bc83ab2bbdee6',1,'ostk::mathematics::geometry::d3::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af6dbda995c2077e6b6865710122e39c0',1,'ostk::mathematics::geometry::d3::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isNear()'],['../_eigen_8hpp.html#add00b5fa2f33935acb910760aeea837c',1,'isNear(): Eigen.hpp']]], - ['isrigid_645',['isRigid',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a35e8e5478a46bdab58808ef63efc4f77',1,'ostk::mathematics::geometry::d2::Transformation::isRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac948a75534e57432e32a747b8340efe1',1,'ostk::mathematics::geometry::d3::Transformation::isRigid() const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a2b247dc8cec2489b61e3a6ec943dc12e',1,'ostk::mathematics::geometry::d3::Transformation::IsRigid(const Matrix4d &aMatrix)']]], - ['isunitary_646',['isUnitary',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a9dbed5ac4eec1c9a79eedf5408191021',1,'ostk::mathematics::geometry::d3::object::Sphere::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isUnitary()']]], - ['iszero_647',['isZero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342',1,'ostk::mathematics::geometry::Angle']]] + ['identity_644',['Identity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a509eff4857f5c7e947fe3673269bc20f',1,'ostk::mathematics::geometry::d2::Transformation::Identity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5cd654de32139306358aa773bbf8c291',1,'ostk::mathematics::geometry::d3::Transformation::Identity()']]], + ['in_645',['in',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a5a4a660668c35df6cc2ad47e02727b7e',1,'ostk::mathematics::geometry::Angle']]], + ['inarcminutes_646',['inArcminutes',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad9ceffd9a91e117a415248f8b40429d2',1,'ostk::mathematics::geometry::Angle::inArcminutes() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae865c49d71cb316df83a11f2a7f9996b',1,'ostk::mathematics::geometry::Angle::inArcminutes(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inarcseconds_647',['inArcseconds',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a2a14798865b6afe512b1d21797092c84',1,'ostk::mathematics::geometry::Angle::inArcseconds() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a20aa823cd2cd954365f0daaba9e77c6d',1,'ostk::mathematics::geometry::Angle::inArcseconds(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['indegrees_648',['inDegrees',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a31b1cd5ca5d3ca1c5c866b0274933edb',1,'ostk::mathematics::geometry::Angle::inDegrees() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a4d56166e0b2512567cedf1e4f267d29e',1,'ostk::mathematics::geometry::Angle::inDegrees(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inradians_649',['inRadians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae07e7bb66c4f60565d19343124ff0cc7',1,'ostk::mathematics::geometry::Angle::inRadians() const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#acfb4ab5bc33ca5bf005bcffae8c02073',1,'ostk::mathematics::geometry::Angle::inRadians(const Real &aLowerBound, const Real &anUpperBound) const']]], + ['inrevolutions_650',['inRevolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aff2915c9dfacf75a3c601688b3ab0d6b',1,'ostk::mathematics::geometry::Angle']]], + ['integrateduration_651',['integrateDuration',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a0b2c17bbe35e2cbb8a352b4736685637',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Real &aDurationInSeconds, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae8581bab9e2de3b4025c966da27a72c2',1,'ostk::mathematics::solver::NumericalSolver::integrateDuration(const StateVector &anInitialStateVector, const Array< Real > &aDurationArray, const SystemOfEquationsWrapper &aSystemOfEquations)']]], + ['integratetime_652',['integrateTime',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7f9c29b8cbdb29b1e1de907a528f902d',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Array< Real > &aTimeArray, const SystemOfEquationsWrapper &aSystemOfEquations)'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a6ca786d30c480052c195cea67f919f05',1,'ostk::mathematics::solver::NumericalSolver::integrateTime(const StateVector &anInitialStateVector, const Real &aStartTime, const Real &anEndTime, const SystemOfEquationsWrapper &aSystemOfEquations)']]], + ['interpolator_653',['Interpolator',['../classostk_1_1mathematics_1_1curvefitting_1_1_interpolator.html#a6593f90bb974214f6f2b264bc114b96e',1,'ostk::mathematics::curvefitting::Interpolator']]], + ['intersection_654',['Intersection',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#abadbbcd1176ace347a7148ea89a0fdef',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a5078dd27fbdbff7de1eeaa0a49eaea18',1,'ostk::mathematics::geometry::d2::Intersection::Intersection(const Intersection &anIntersection)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aa36acae0dea26436f03216212ca4d571',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(Array< Unique< Object >> &&anObjectArray)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a516c2bf940b353c16293f49e49064780',1,'ostk::mathematics::geometry::d3::Intersection::Intersection(const Intersection &anIntersection)']]], + ['intersectionwith_655',['intersectionWith',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#aeeedeff734bdf3fceae7d17dc9aa2097',1,'ostk::mathematics::geometry::d2::object::Polygon::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a17316a3b66d1459e5a152d71af82d28c',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4605abca6734c866d094f0d40d001b3f',1,'ostk::mathematics::geometry::d3::object::Composite::intersectionWith(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aff8111459bf4fd52f4890d52ef468c0a',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Sphere &aSphere, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4007f417805759277400b050391b77c9',1,'ostk::mathematics::geometry::d3::object::Cone::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=false, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1fc1bdcbc9727ed2bb089fb257719827',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#afffd360837814171549e1e23ffb60b6e',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a38e0ac9992b7f2d5c7a8556dc0a1f36d',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a024aa416b981d548d3e5cc7b8a496cfe',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae4489290518d48903197556ee086c203',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a5c3062e7f2f271c470821e3addbd3698',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a81a3f44b8b4a26c8c7db2fa5f1ea98c3',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Ray &aRay, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ac3f1b3592db2bbfb25890382a2276878',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#abcbc9b4bbcb64628471f7b233639d645',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a2d6ef8385352f67912edbf2b2db7e3c2',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersectionWith(const Cone &aCone, const bool onlyInSight=false) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a8543a4010dc4847303f00afb77786378',1,'ostk::mathematics::geometry::d3::object::Line::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#abc6de4b10a4db6f07a8d0e0358d52c5c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aefbcaaa5d805230fb4414211e330beb4',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a10c0772740b3e8db07cf6e9a3a95986c',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a365705683c88be776018f682e0fe0899',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8074e08abe264931aedb9662ae818ee0',1,'ostk::mathematics::geometry::d3::object::Plane::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a93113d23dee9ac80c7cba6198ce272a2',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a5ed8e14c5ca36792c887d534d446ce4f',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a71557ba02108ba09422fb3c2b2c8ed68',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a29e402d81639c9a6d094181d8c4ed1c7',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Sphere &aSphere, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a17a3946028e0de16727f63d3f3e6f69d',1,'ostk::mathematics::geometry::d3::object::Ray::intersectionWith(const Ellipsoid &anEllipsoid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#af5450d87b31c03fb1fb1ffd14547783d',1,'ostk::mathematics::geometry::d3::object::Segment::intersectionWith()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#af155cd1d10cd5b010b134a29e6d67492',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#abfdfa4f19cb716271505c28d7085d2da',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Ray &aRay, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a66e7d89eaf128a2ee1277a605f25ab7e',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad710eeb805c0152d53dc874131f5f758',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Pyramid &aPyramid, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae16d1ba9ed85bb8b7716202a651c262c',1,'ostk::mathematics::geometry::d3::object::Sphere::intersectionWith(const Cone &aCone, const bool onlyInSight=DEFAULT_ONLY_IN_SIGHT) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ac1325aba0fa3796c9ddc5d39dfe40aa6',1,'ostk::mathematics::geometry::d3::Object::intersectionWith()']]], + ['intersects_656',['intersects',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a268fb26bb98a77e6ddca626901e9449e',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ae79948364d0502c3b6f839ce90e00b45',1,'ostk::mathematics::geometry::d2::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#adda17499fb10cce0898d611ec234817e',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a8f6979f55c2a971d1b7f1f7dc4b991be',1,'ostk::mathematics::geometry::d2::object::Line::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a8292e74414aa470153d0bd6f0884e00d',1,'ostk::mathematics::geometry::d2::object::Polygon::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a553d7a1e388598c74d0f9fdd57d1ba9d',1,'ostk::mathematics::geometry::d2::Object::intersects()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#afb414dd80dce2ea9aad5513c8f466e94',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Object &anObject) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a5377ac1f13ee56f32d1c125a26d28a60',1,'ostk::mathematics::geometry::d3::object::Composite::intersects(const Composite &aComposite) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a801e263af20ca039858bcecdd579ff1c',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#aa08f535f31cc63cc5675f434b20617e4',1,'ostk::mathematics::geometry::d3::object::Cone::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a25720e902948424afe2f04f20e17aaad',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a912567b6d352e2c74129dc3bf1338e33',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a7b7213f7ee4154957c65b0c8d9fdde63',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af02af83e9c321858d2b54dfc31730aa9',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0d7ae6afa89438cb9f1676fccd400b15',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a23cf1aaedc78eb2cf1bb5b2cc1df92f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#af0a08f4419d48e38793f875654bc97f1',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a5ebb29d0be21f18c899b255af1347d89',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Cuboid &aCuboid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a0496625c9ee5edb30052b1b125fcbc64',1,'ostk::mathematics::geometry::d3::object::Cuboid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9b031c4f2a63121d6b5060dea2fd85dc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a8a8d5655286857611c174afd3e324d45',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae3f7633c6157c430980af3832d0a73b9',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ae93d460a11c18dcc589501535db52622',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a00bfb5a8d081333b080b586f4b81f8cc',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#ad0c47ee2cbdc18795a00c72a47f83a33',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a1d17071a0fe4ae568bffcbbb3a12aeb8',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a376af728b387ddc84152ad2fea9076ad',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7176ac82c4684066d3656db93673fe8c',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a9903921f3b39326751b64198af6e9044',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2faa83f9795b399b706480d501d78d4b',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a94c3c7588bf70c66f9ec2f170c6a4121',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aae92782ed75f744c24c48e5d47cf0545',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a1ef879a1337fedd5b458c928bfd67ee2',1,'ostk::mathematics::geometry::d3::object::Line::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ac55945830db7e46ae59bca73f4a0c800',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#aa4ef1e875568bd35e5a0c502cd9576a3',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a532ab8dd1b23858a0ecba19353d1ff7f',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a8c2cb7d5c1378a400dce11cb78bbe1d4',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a04c4eacdc8f5d1edd6a1ff0da1d6e0fa',1,'ostk::mathematics::geometry::d3::object::Plane::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a4676717f067f8fd710fc9073d0b1709d',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Sphere &aSphere, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#ae2daf13e58b060a4085944e3c3171910',1,'ostk::mathematics::geometry::d3::object::Pyramid::intersects(const Ellipsoid &anEllipsoid, const Size aDiscretizationLevel=DEFAULT_DISCRETIZATION_LEVEL) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a6f9353b78f7f3d3c8824c29a97bd172e',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a46135e8dd6b6821f0d5e137f479f8997',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#aa4aea4e829d688aeaa26440f211e9218',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a72bb7ad7136e99d98c580cd5a26728b5',1,'ostk::mathematics::geometry::d3::object::Ray::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#acca8f1805ebeda2a26ae27c51ec4839b',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a310c09a4a237994b6cb89de517e763a5',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Sphere &aSphere) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a665f8e3612d42576658fcd4e1ab5090d',1,'ostk::mathematics::geometry::d3::object::Segment::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#afc06f6968104f1207b1f3da7ceaae4aa',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Point &aPoint) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#adbdedf8a33a33ecf34f4c8a45f365c0d',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const PointSet &aPointSet) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#aa26ce6b341283ea77b99207a05368a52',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Line &aLine) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a669b7ac4228e1bf40fa0ffabc3cddde9',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ray &aRay) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a26a485b4674c7f852f07652297adf8b4',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Segment &aSegment) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a38e7ed98b7f10761bdf7c5d87315a460',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Plane &aPlane) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ad2c172f9ed998e785986b13bffeb6c93',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Ellipsoid &anEllipsoid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3ec429fe276d4da08dea92c56c008fc5',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Pyramid &aPyramid) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a3b3ce9155edeeab7fbaec2cbdde06f41',1,'ostk::mathematics::geometry::d3::object::Sphere::intersects(const Cone &aCone) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a0d8ddc7a929bb3b0b1c70ad82742e64e',1,'ostk::mathematics::geometry::d3::Object::intersects()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a8f109e44bbf0691c0a941a48df64c808',1,'ostk::mathematics::object::Interval::intersects()']]], + ['interval_657',['Interval',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a625893384a0eea6cedbe88172764a525',1,'ostk::mathematics::object::Interval']]], + ['inverse_658',['inverse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a08f5634f4f48c927635fe781843260fb',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['is_659',['is',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7d961245648ef69ae55d6e4cbf24544f',1,'ostk::mathematics::geometry::d2::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a569c373be972804901329c2b2886edba',1,'ostk::mathematics::geometry::d2::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad0823d059381f54389ee417b834c9ef8',1,'ostk::mathematics::geometry::d3::Intersection::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1cfbb9bdbf5c56aae7fa6496b6e7c080',1,'ostk::mathematics::geometry::d3::object::Composite::is()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#ad9e6f5027d14e3c7d7bead94052611ed',1,'ostk::mathematics::geometry::d3::Object::is()']]], + ['iscomplex_660',['isComplex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af2757994e5cca200ade007991ff4f160',1,'ostk::mathematics::geometry::d2::Intersection::isComplex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a08c4ac700f904766b8625ac09f2a3281',1,'ostk::mathematics::geometry::d3::Intersection::isComplex()']]], + ['isdefined_661',['isDefined',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aee7e7ede2e3ea269b9b2eb091da92b8f',1,'ostk::mathematics::geometry::d2::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a8978d917810e68bb9e6b484fc97524c3',1,'ostk::mathematics::geometry::d2::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a603f1de0e328c16a829b9e1c9f5c077f',1,'ostk::mathematics::geometry::d2::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ad8e472cb5b6c7fe87374a1476b8835b7',1,'ostk::mathematics::geometry::d2::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac38eacd742cd2a60eb62d03cf1234b45',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a06c0dd090011c4bc96237f46ce47e049',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a5a81fa8426fe6a4be5addda02c888704',1,'ostk::mathematics::geometry::d2::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a29bfbe3e8ba8d68e4e5b2351f225f965',1,'ostk::mathematics::geometry::d2::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a81f715c35ecd0fa424f2daf4ffe59bec',1,'ostk::mathematics::geometry::d2::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a6a88d19e8e5978c2fe9eeeb88d6cf8d7',1,'ostk::mathematics::geometry::d2::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#abe5ea18c13bc259fc0da0b0c49fa0dca',1,'ostk::mathematics::geometry::d2::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a7a810c3645491c671fae1953456257c4',1,'ostk::mathematics::geometry::d2::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a960e02ae1d0b7a1a5f6871ee70b161a0',1,'ostk::mathematics::geometry::d3::Intersection::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a8ccf639112d5c08aa7d2bb831072ca2f',1,'ostk::mathematics::geometry::d3::object::Composite::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a927c5cfa7196f425f8cd153efde8e90f',1,'ostk::mathematics::geometry::d3::object::Cone::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae9749637798c6670bb1c2b8cc2850ba8',1,'ostk::mathematics::geometry::d3::object::Cuboid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a3e36099693bccb2d2e68d8673d86e5f6',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#ae07b5282c948df716fc1fa5bedeec344',1,'ostk::mathematics::geometry::d3::object::Line::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac79b6efa23440fa61690181c6ade42ec',1,'ostk::mathematics::geometry::d3::object::LineString::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a0a39c2a1bd1e330e8cc15aa4a5e19d47',1,'ostk::mathematics::geometry::d3::object::Plane::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a151a3020d20a0ae2847f5ce99bd7ee06',1,'ostk::mathematics::geometry::d3::object::Point::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a6b8187ba8b67220e7562357ad846edaa',1,'ostk::mathematics::geometry::d3::object::PointSet::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab2e3d42d2420cd0d3029f1d14e126a6c',1,'ostk::mathematics::geometry::d3::object::Polygon::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a8b85f9aa5f4b1cdf0047c8010fdb7645',1,'ostk::mathematics::geometry::d3::object::Pyramid::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a402bf991d7974383a2766f12367681cd',1,'ostk::mathematics::geometry::d3::object::Ray::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a682162f29a5597e61f0eaac2f9762518',1,'ostk::mathematics::geometry::d3::object::Segment::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a5311446aca36ccadbd8ae323502dba44',1,'ostk::mathematics::geometry::d3::object::Sphere::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a1962edbcdde0f851361b60324ab9ce2b',1,'ostk::mathematics::geometry::d3::Object::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5140298e4d18f9b63fe1791e2785938c',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a25d3f5bd7307918ea70b3b21f80a3001',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ae17d3b16182ce6110a87534fd5aff6b4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a7eb8f0bba73e0e36fa7a6f1bbd88da2d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a94cd6ac661f8a55d599ea9a1eaa291dd',1,'ostk::mathematics::geometry::d3::Transformation::isDefined()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad99d5ff3a95e93b3599248c72b631ff1',1,'ostk::mathematics::geometry::Angle::isDefined()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a6dd09d2e325303a5ad0097bed3896708',1,'ostk::mathematics::object::Interval::isDefined()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae9123dc938fbfdf8497f804adf981f37',1,'ostk::mathematics::solver::NumericalSolver::isDefined()'],['../_eigen_8hpp.html#aaa1d139fcb55b1f038ab29d736d07f3d',1,'isDefined(): Eigen.hpp']]], + ['isdegenerate_662',['isDegenerate',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ae83df71f8f42ef823a7976f78de97a3f',1,'ostk::mathematics::geometry::d2::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a26a65f0f44cbde006a084bbdc9300089',1,'ostk::mathematics::geometry::d3::object::Segment::isDegenerate()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a1f279c73d8c7a5fa69ce52dc301d1f5a',1,'ostk::mathematics::object::Interval::isDegenerate()']]], + ['isempty_663',['isEmpty',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4908a1b0edd4fb1b77bf13051f524a70',1,'ostk::mathematics::geometry::d2::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#ac4ad3c0b11203ad5c8eb3e455edaf3a2',1,'ostk::mathematics::geometry::d2::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#ac2a570d2617759b4e5d9e802ba9abade',1,'ostk::mathematics::geometry::d2::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#af5f5a56165c38b4dc183316189038642',1,'ostk::mathematics::geometry::d2::object::MultiLineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ae206d0de2c96dba3162f4bcdd4218234',1,'ostk::mathematics::geometry::d2::object::PointSet::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a457c09dcf9daaf8c0ebc0af50373936c',1,'ostk::mathematics::geometry::d3::Intersection::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a4212e7557991ad99f9d4dfe9cbf6b703',1,'ostk::mathematics::geometry::d3::object::Composite::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a2be7308b9a8a52f43b920b01c41c7253',1,'ostk::mathematics::geometry::d3::object::LineString::isEmpty()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ab40c84e9a4d76cf89471771c74c3126c',1,'ostk::mathematics::geometry::d3::object::PointSet::isEmpty()']]], + ['isidentity_664',['isIdentity',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afc750037dcccec8a35ea8b6e959836cf',1,'ostk::mathematics::geometry::d2::Transformation::isIdentity()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a8ba50a377bd868397be3fa4111dfdf0f',1,'ostk::mathematics::geometry::d3::Transformation::isIdentity()']]], + ['isinf_665',['isInf',['../_eigen_8hpp.html#afe8246e867e93283cdfac59d16941411',1,'Eigen.hpp']]], + ['isnan_666',['isNaN',['../_eigen_8hpp.html#a0f14bad11d673c61a550d48d6777eae1',1,'Eigen.hpp']]], + ['isnear_667',['isNear',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a93f187300021999caf7c48efabcb3265',1,'ostk::mathematics::geometry::d2::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a98b34037dc99160c8b58f0d45f78a02c',1,'ostk::mathematics::geometry::d2::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a219b3cafbf670b88d762c402d09de243',1,'ostk::mathematics::geometry::d2::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#ad5d51eaab4e20905884893b79ff6bf32',1,'ostk::mathematics::geometry::d2::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ae79125fb5fff0a42cdd7bf89ba8a0718',1,'ostk::mathematics::geometry::d3::object::Cuboid::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#ac80cff5419ed1a8cbeb2b1b6835d15ae',1,'ostk::mathematics::geometry::d3::object::LineString::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a509a7280634229dbbc349000f77b1f96',1,'ostk::mathematics::geometry::d3::object::Point::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aedd7f0ed2b59c5a8713bc83ab2bbdee6',1,'ostk::mathematics::geometry::d3::object::PointSet::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#af6dbda995c2077e6b6865710122e39c0',1,'ostk::mathematics::geometry::d3::object::Polygon::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ab25e5b93b6cff6716c08d5b9de4ab2c5',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afab79d88d91c8fc0a6b888a91f0e52bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isNear()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a93759a5dc36449aaa68d749d270fa736',1,'ostk::mathematics::geometry::Angle::isNear()'],['../_eigen_8hpp.html#add00b5fa2f33935acb910760aeea837c',1,'isNear(): Eigen.hpp']]], + ['isnegative_668',['isNegative',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a80267bbfcf53ac84f70e8c64c0ae4162',1,'ostk::mathematics::geometry::Angle']]], + ['isrigid_669',['IsRigid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a2b247dc8cec2489b61e3a6ec943dc12e',1,'ostk::mathematics::geometry::d3::Transformation::IsRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a35e8e5478a46bdab58808ef63efc4f77',1,'ostk::mathematics::geometry::d2::Transformation::isRigid()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#ac948a75534e57432e32a747b8340efe1',1,'ostk::mathematics::geometry::d3::Transformation::isRigid()']]], + ['isunitary_670',['isUnitary',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a9dbed5ac4eec1c9a79eedf5408191021',1,'ostk::mathematics::geometry::d3::object::Sphere::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a75a6bd4f088b43ba2f9e7a9a1a963e64',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::isUnitary()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aea4706c3cc65b5a8e7250a042cb1edaa',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::isUnitary()']]], + ['iszero_671',['isZero',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a17449f940c75bc182a9eaa069ae59342',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/functions_8.js b/html/search/functions_8.js index 4a8a6440..14ba1519 100644 --- a/html/search/functions_8.js +++ b/html/search/functions_8.js @@ -1,8 +1,8 @@ var searchData= [ - ['lerp_648',['LERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a106daf1df7b2ee91f1ef3fb0338c8c1a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['line_649',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4981da070b5400c1546f0014000c968a',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a0a22b94b232fca62ec257f90f3329431',1,'ostk::mathematics::geometry::d2::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a74e48bb7378d4d8780406edb1b6d70db',1,'ostk::mathematics::geometry::d3::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aa953f89b8b41699dc8f14a465e2ef6b8',1,'ostk::mathematics::geometry::d3::object::Line::Line()']]], - ['linear_650',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a66f13250b306128dacc988a56961eda8',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], - ['linestring_651',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a2ecaccd9004396a2c0552ee3459a73a0',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#af664c958b514884a3889eab433c5482d',1,'ostk::mathematics::geometry::d2::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a6f94954fba394952d087e6a2339c356a',1,'ostk::mathematics::geometry::d3::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1cbd0b1900eded1596378ba9a65b4e4e',1,'ostk::mathematics::geometry::d3::object::LineString::LineString()']]], - ['log_652',['log',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] + ['lerp_672',['LERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a106daf1df7b2ee91f1ef3fb0338c8c1a',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['line_673',['Line',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4981da070b5400c1546f0014000c968a',1,'ostk::mathematics::geometry::d2::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a0a22b94b232fca62ec257f90f3329431',1,'ostk::mathematics::geometry::d2::object::Line::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a74e48bb7378d4d8780406edb1b6d70db',1,'ostk::mathematics::geometry::d3::Intersection::Line()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aa953f89b8b41699dc8f14a465e2ef6b8',1,'ostk::mathematics::geometry::d3::object::Line::Line()']]], + ['linear_674',['Linear',['../classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_linear.html#a66f13250b306128dacc988a56961eda8',1,'ostk::mathematics::curvefitting::interpolator::Linear']]], + ['linestring_675',['LineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a2ecaccd9004396a2c0552ee3459a73a0',1,'ostk::mathematics::geometry::d2::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#af664c958b514884a3889eab433c5482d',1,'ostk::mathematics::geometry::d2::object::LineString::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a6f94954fba394952d087e6a2339c356a',1,'ostk::mathematics::geometry::d3::Intersection::LineString()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a1cbd0b1900eded1596378ba9a65b4e4e',1,'ostk::mathematics::geometry::d3::object::LineString::LineString()']]], + ['log_676',['log',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad0889624c3960610d94c44c2675fe2d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]] ]; diff --git a/html/search/functions_9.js b/html/search/functions_9.js index 8e813fdb..5de20ec7 100644 --- a/html/search/functions_9.js +++ b/html/search/functions_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['multilinestring_653',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2be4b3e1608f466d294ef5884684bab1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], - ['multipolygon_654',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a387e29bd423e834d10e30d1b55e4a2d7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const Array< Polygon2d > &aPolygonArray=Array< Polygon2d >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a255ed57cc7b1617df7ee07277d3efd66',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const MultiPolygon &aMultiPolygon)']]] + ['multilinestring_677',['MultiLineString',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2be4b3e1608f466d294ef5884684bab1',1,'ostk::mathematics::geometry::d2::object::MultiLineString']]], + ['multipolygon_678',['MultiPolygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a387e29bd423e834d10e30d1b55e4a2d7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const Array< Polygon2d > &aPolygonArray=Array< Polygon2d >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a255ed57cc7b1617df7ee07277d3efd66',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::MultiPolygon(const MultiPolygon &aMultiPolygon)']]] ]; diff --git a/html/search/functions_a.js b/html/search/functions_a.js index 5cc68016..d3ccd0e4 100644 --- a/html/search/functions_a.js +++ b/html/search/functions_a.js @@ -1,6 +1,7 @@ var searchData= [ - ['nlerp_655',['NLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a896500b99a8ab9cf38bc7f402001d41b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['normalize_656',['normalize',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['numericalsolver_657',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1c5fd12a2d545bf7d090d992ffcbe17e',1,'ostk::mathematics::solver::NumericalSolver']]] + ['nlerp_679',['NLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a896500b99a8ab9cf38bc7f402001d41b',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['norm_680',['norm',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#adac286e89986a4dc8cd2791c96bcb979',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['normalize_681',['normalize',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a724528ea23c64ba56a077d2a9aeb5529',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['numericalsolver_682',['NumericalSolver',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a1c5fd12a2d545bf7d090d992ffcbe17e',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/functions_b.js b/html/search/functions_b.js index 26364ff0..ec6e1d7f 100644 --- a/html/search/functions_b.js +++ b/html/search/functions_b.js @@ -1,20 +1,20 @@ var searchData= [ - ['object_658',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a15a959fd5b624d6fcc6725982a8cddf8',1,'ostk::mathematics::geometry::d2::Object::Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af003ad733beface98466830078a83875',1,'ostk::mathematics::geometry::d3::Object::Object()']]], - ['open_659',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0dc8428f4db393e2ae009e2a8730c8c2',1,'ostk::mathematics::object::Interval']]], - ['operator_21_3d_660',['operator!=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b5775a7a48175d24ff520f3686526a2',1,'ostk::mathematics::geometry::d2::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a11fcec32f83c456a485ccd5e8bcdc98f',1,'ostk::mathematics::geometry::d2::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a4b591f899c00ed44f98ce718d5d104f4',1,'ostk::mathematics::geometry::d2::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a53f5cb0e9c9b0c4750b398d1abd24762',1,'ostk::mathematics::geometry::d2::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a711811c8e62ce8f678958d09ef6913a3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ad1ac733a4cb185285402cdffbfd8fb36',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a4591e0cef8606f3b6d4eadf6f3ffbb9f',1,'ostk::mathematics::geometry::d2::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a98a4dd2e211ceacfc9e2d9cc35703892',1,'ostk::mathematics::geometry::d2::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a9077d4bf7b3d74058f061ef4c2780b1a',1,'ostk::mathematics::geometry::d2::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abbecdd12d67f8c102deaedc65a028aed',1,'ostk::mathematics::geometry::d2::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#afe72ba03919d609d2847b0b4162d083d',1,'ostk::mathematics::geometry::d2::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a9c5841e272ccd57670de80bedf7c7ebc',1,'ostk::mathematics::geometry::d2::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a0b7fa437dc93dbc1e3ab1258f85473c0',1,'ostk::mathematics::geometry::d3::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a64f215f7a371f31396531b1fb166ca5f',1,'ostk::mathematics::geometry::d3::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae08043260d062f74a3daa54ba9593964',1,'ostk::mathematics::geometry::d3::object::Cone::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1dbcaa8deafe0bb5a99a426725306b30',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a6ad34b0e40e0a1b59ba503bbacb15db5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aef0d21c794766aaaadb779dd364594d4',1,'ostk::mathematics::geometry::d3::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a9910ccb0907ba84696f5895362c8906f',1,'ostk::mathematics::geometry::d3::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a7503e1325f4900f22279659c7b56c211',1,'ostk::mathematics::geometry::d3::object::Plane::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#abf23c8836ec513308a298cc7708aeb37',1,'ostk::mathematics::geometry::d3::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac8021b04a413b2b37671eba1d04c126e',1,'ostk::mathematics::geometry::d3::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab8c48ac69bca62018cbb75dda88d38a1',1,'ostk::mathematics::geometry::d3::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a3fa7abd7265937266cb59f19f63db3bf',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3237ba10bd95161a2190915d8b6c1bdd',1,'ostk::mathematics::geometry::d3::object::Ray::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a8c015def3a784e29270361f93925e1ef',1,'ostk::mathematics::geometry::d3::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a48d995d87aaf80ffae9629d33137e50a',1,'ostk::mathematics::geometry::d3::object::Sphere::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a550754b8f5576ce2465979657325d5df',1,'ostk::mathematics::geometry::d3::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a156c810c2357c5fe14beef33cde4e8d5',1,'ostk::mathematics::geometry::d3::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd',1,'ostk::mathematics::geometry::Angle::operator!=()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619',1,'ostk::mathematics::object::Interval::operator!=()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af8c55a09c0934260c5e61574183aa7af',1,'ostk::mathematics::solver::NumericalSolver::operator!=()']]], - ['operator_28_29_661',['operator()',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html#ab6d49e7e4af3755ca4e520ae0a8cc38e',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher::operator()()'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html#afb61191258aece00aa594b569fbd4edb',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher::operator()()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex)']]], - ['operator_2a_662',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aa48ed3f10a583e3a3551e91b7286dbf7',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#af7a2de30793f13e62515d9d87b9e3bd8',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Real &aScalar) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const RotationMatrix &aRotationMatrix) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa682c5787e78e1f18a29ab6bce2cb6c2',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5de58472d18d02a2446597834fe54f40',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Vector4d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7',1,'ostk::mathematics::geometry::Angle::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a6028c92c3bd330713db8cab7bc5122e1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a1765aac15a1ece7dc16ce33e062d150b',1,'ostk::mathematics::geometry::operator*()']]], - ['operator_2a_3d_663',['operator*=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#abfeafe6bbaef1ce522e1d8948a61f7f3',1,'ostk::mathematics::geometry::d2::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5861759a9e0bcdcf453674c90d159566',1,'ostk::mathematics::geometry::d3::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792',1,'ostk::mathematics::geometry::Angle::operator*=()']]], - ['operator_2b_664',['operator+',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aace2f490a008ad90ff0b5e9e4d27ef56',1,'ostk::mathematics::geometry::d2::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6a1d39238f6b47334b4d6d5b57cd766d',1,'ostk::mathematics::geometry::d2::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3e82b2ee39985232e315e63d9cae048c',1,'ostk::mathematics::geometry::d3::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9997d9bdb4f03aaf156511762d479f84',1,'ostk::mathematics::geometry::d3::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369',1,'ostk::mathematics::geometry::Angle::operator+(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b',1,'ostk::mathematics::geometry::Angle::operator+() const']]], - ['operator_2b_3d_665',['operator+=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af6afa26e7bf88dd2e8c2d824abd12076',1,'ostk::mathematics::geometry::d2::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#af5ed721c02883767d4a2270bfe32a155',1,'ostk::mathematics::geometry::d2::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aaa5aafbae1b9357d3b15b34cf3610174',1,'ostk::mathematics::geometry::d3::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1f2e1b5d801464dd1c151b41e9e833b7',1,'ostk::mathematics::geometry::d3::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d',1,'ostk::mathematics::geometry::Angle::operator+=()']]], - ['operator_2d_666',['operator-',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1',1,'ostk::mathematics::geometry::Angle::operator-(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54',1,'ostk::mathematics::geometry::Angle::operator-() const']]], - ['operator_2d_3d_667',['operator-=',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad',1,'ostk::mathematics::geometry::Angle']]], - ['operator_2f_668',['operator/',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1',1,'ostk::mathematics::geometry::Angle::operator/()']]], - ['operator_2f_3d_669',['operator/=',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52',1,'ostk::mathematics::geometry::Angle::operator/=()']]], - ['operator_3c_3c_670',['operator<<',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#af4eef648c33103c1138186f8e2df55e8',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#a0f9a028d7abc22a5284c8d26fba4d3d6',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#ac4a11d280db705e9e72b70e303f427be',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Transformation &aTransformation)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#add09e667e701008cce5578e26853f883',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a5315286506c8a28a01474c943c8847c2',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#ae26404779f77ca73c95975806e5402d1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#afa8bc95840d3ed51eb2c9726bbd52f23',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a89b141f8b9cd2a93dbd9b584bab23d5b',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a36a57a233542af3c746ef3b589873e18',1,'ostk::mathematics::geometry::d3::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a611d50bcfddda6fe651b06d2648e60cf',1,'ostk::mathematics::geometry::operator<<()'],['../namespaceostk_1_1mathematics_1_1solver.html#a880f6ab73ddfe8eae45c0c7f4c6aaaeb',1,'ostk::mathematics::solver::operator<<()']]], - ['operator_3d_671',['operator=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aae9f76b02e5539ae231dbdf138b72c4c',1,'ostk::mathematics::geometry::d2::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6ceb4ff7945166c63292269531ecf722',1,'ostk::mathematics::geometry::d2::object::Composite::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a015d42e476cfc1d14221e6088d79137e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#af999d9844abf33d70dae582222582fac',1,'ostk::mathematics::geometry::d2::object::Polygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a02a6a83da64f8aec58808f8eb747c249',1,'ostk::mathematics::geometry::d3::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad10e87ffe83a4c78798e598ddfa54998',1,'ostk::mathematics::geometry::d3::object::Composite::operator=()']]], - ['operator_3d_3d_672',['operator==',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a6ab153de4908b154d7627d124b8f1a78',1,'ostk::mathematics::geometry::d2::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aaa0ab4bcefcb11d05ddfcdea811f7d0b',1,'ostk::mathematics::geometry::d2::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a90b8ba896201c7e6207b8deb7d24639a',1,'ostk::mathematics::geometry::d2::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a9a5ce9c1b26bbad9f208a1f3192ea068',1,'ostk::mathematics::geometry::d2::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2243a564e4033f557f26b39cfd75ade8',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a6c0965f5352f0b062163855e2ec2cf4b',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a3a9cc35629142eb792940471e190f7d6',1,'ostk::mathematics::geometry::d2::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a736eaf33b25f759729e053aadaeae0cb',1,'ostk::mathematics::geometry::d2::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e45da47629d49cbf83823682b399e54',1,'ostk::mathematics::geometry::d2::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7efea6942753f879406cf983a8e55d19',1,'ostk::mathematics::geometry::d2::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9617246a3e26d57e5ba78e57387ae05a',1,'ostk::mathematics::geometry::d2::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a97115f56b673ff7d0efcc45ff4de2566',1,'ostk::mathematics::geometry::d2::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#adb34ecf6fc09a6a3b7c2dd349d0ecc31',1,'ostk::mathematics::geometry::d3::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a70bc18b2b15c4419de64b8b0ac0ec44f',1,'ostk::mathematics::geometry::d3::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a218e8b5b2b28de0a632b102c0953f948',1,'ostk::mathematics::geometry::d3::object::Cone::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abe25b1d5a60b159cfe79475e0a1bcd4b',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a24d5de8f8d462000ad16f99cb08b6bbe',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aba1fb7d8d2c55f5622219263cb7e677b',1,'ostk::mathematics::geometry::d3::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4c81f3eb92c3248c983def441296f9fb',1,'ostk::mathematics::geometry::d3::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a52ef325acb9072394c691b2511f875e9',1,'ostk::mathematics::geometry::d3::object::Plane::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3134e01a0c43d6ad7b040f8f730b8e50',1,'ostk::mathematics::geometry::d3::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1a5f1f9e222a57f6055045d49c4dff6c',1,'ostk::mathematics::geometry::d3::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a31ea0eaea624719d90d2d5477234fbc4',1,'ostk::mathematics::geometry::d3::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a77efda8908205d41517ed65ad8a09cf9',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a361468984adc4da8b25c39047c5a8279',1,'ostk::mathematics::geometry::d3::object::Ray::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae2d84ea0ab5dc2f1bcfb066e8c7e3f62',1,'ostk::mathematics::geometry::d3::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a86fab4da986e79ea843646b859a54b7b',1,'ostk::mathematics::geometry::d3::object::Sphere::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aeb99dd25ff1c0683d9c0a058c8200e4d',1,'ostk::mathematics::geometry::d3::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a0701af3c93fa91a10f09335d03fe2f44',1,'ostk::mathematics::geometry::d3::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833',1,'ostk::mathematics::geometry::Angle::operator==()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc',1,'ostk::mathematics::object::Interval::operator==()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a751982613c3465145a9a0fc268c87467',1,'ostk::mathematics::solver::NumericalSolver::operator==()']]], - ['operator_5e_673',['operator^',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['origin_674',['Origin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a44fa9d92b862d8fb9a379440ee0e6a81',1,'ostk::mathematics::geometry::d2::object::Point::Origin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a2e0dc90fe04fb9befb79ec9874dcebc4',1,'ostk::mathematics::geometry::d3::object::Point::Origin()']]] + ['object_683',['Object',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a15a959fd5b624d6fcc6725982a8cddf8',1,'ostk::mathematics::geometry::d2::Object::Object()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#af003ad733beface98466830078a83875',1,'ostk::mathematics::geometry::d3::Object::Object()']]], + ['open_684',['Open',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0dc8428f4db393e2ae009e2a8730c8c2',1,'ostk::mathematics::object::Interval']]], + ['operator_21_3d_685',['operator!=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a4b5775a7a48175d24ff520f3686526a2',1,'ostk::mathematics::geometry::d2::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a11fcec32f83c456a485ccd5e8bcdc98f',1,'ostk::mathematics::geometry::d2::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a4b591f899c00ed44f98ce718d5d104f4',1,'ostk::mathematics::geometry::d2::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a53f5cb0e9c9b0c4750b398d1abd24762',1,'ostk::mathematics::geometry::d2::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a711811c8e62ce8f678958d09ef6913a3',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ad1ac733a4cb185285402cdffbfd8fb36',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a4591e0cef8606f3b6d4eadf6f3ffbb9f',1,'ostk::mathematics::geometry::d2::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a98a4dd2e211ceacfc9e2d9cc35703892',1,'ostk::mathematics::geometry::d2::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a9077d4bf7b3d74058f061ef4c2780b1a',1,'ostk::mathematics::geometry::d2::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#abbecdd12d67f8c102deaedc65a028aed',1,'ostk::mathematics::geometry::d2::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#afe72ba03919d609d2847b0b4162d083d',1,'ostk::mathematics::geometry::d2::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a9c5841e272ccd57670de80bedf7c7ebc',1,'ostk::mathematics::geometry::d2::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a0b7fa437dc93dbc1e3ab1258f85473c0',1,'ostk::mathematics::geometry::d3::Intersection::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a64f215f7a371f31396531b1fb166ca5f',1,'ostk::mathematics::geometry::d3::object::Composite::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#ae08043260d062f74a3daa54ba9593964',1,'ostk::mathematics::geometry::d3::object::Cone::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a1dbcaa8deafe0bb5a99a426725306b30',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a6ad34b0e40e0a1b59ba503bbacb15db5',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aef0d21c794766aaaadb779dd364594d4',1,'ostk::mathematics::geometry::d3::object::Line::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a9910ccb0907ba84696f5895362c8906f',1,'ostk::mathematics::geometry::d3::object::LineString::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a7503e1325f4900f22279659c7b56c211',1,'ostk::mathematics::geometry::d3::object::Plane::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#abf23c8836ec513308a298cc7708aeb37',1,'ostk::mathematics::geometry::d3::object::Point::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#ac8021b04a413b2b37671eba1d04c126e',1,'ostk::mathematics::geometry::d3::object::PointSet::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#ab8c48ac69bca62018cbb75dda88d38a1',1,'ostk::mathematics::geometry::d3::object::Polygon::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a3fa7abd7265937266cb59f19f63db3bf',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a3237ba10bd95161a2190915d8b6c1bdd',1,'ostk::mathematics::geometry::d3::object::Ray::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#a8c015def3a784e29270361f93925e1ef',1,'ostk::mathematics::geometry::d3::object::Segment::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a48d995d87aaf80ffae9629d33137e50a',1,'ostk::mathematics::geometry::d3::object::Sphere::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a550754b8f5576ce2465979657325d5df',1,'ostk::mathematics::geometry::d3::Object::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a5adfa3b7def412a62f25fcb4d154f160',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a9bd92ff5c1e57bdc7572b2507363bd15',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a24dd53bd3648655d4ab858d0ce0685b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a1ab7d9369961e7f7e2bc9c6afb76f234',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a156c810c2357c5fe14beef33cde4e8d5',1,'ostk::mathematics::geometry::d3::Transformation::operator!=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ae42710386b7e29dc17623d606c2f81bd',1,'ostk::mathematics::geometry::Angle::operator!=()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a0af7fe64d3e97061f44348b799654619',1,'ostk::mathematics::object::Interval::operator!=()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af8c55a09c0934260c5e61574183aa7af',1,'ostk::mathematics::solver::NumericalSolver::operator!=()']]], + ['operator_28_29_686',['operator()',['../structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher.html#ab6d49e7e4af3755ca4e520ae0a8cc38e',1,'ostk::mathematics::geometry::d2::object::PointSet::Hasher::operator()()'],['../structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher.html#afb61191258aece00aa594b569fbd4edb',1,'ostk::mathematics::geometry::d3::object::PointSet::Hasher::operator()()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a925bbc83df88a581a08426bce118d8ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a7950245c6fd96b7c75676843a63915be',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator()(const Index &aRowIndex, const Index &aColumnIndex)']]], + ['operator_2a_687',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aa48ed3f10a583e3a3551e91b7286dbf7',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#af7a2de30793f13e62515d9d87b9e3bd8',1,'ostk::mathematics::geometry::d2::Transformation::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a95aa653a242332b5d3590c81f8819bb8',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Quaternion &aQuaternion) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#af683f4d97a2b3ead7f82d5a5352ccd66',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#afe9742084b6a328cb8fab233a5485122',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*(const Real &aScalar) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3b5d9df2e34ec0a668ea63970361db7f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const RotationMatrix &aRotationMatrix) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a3f942c38013627338c2cd6ed980f434d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator*(const Vector3d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa682c5787e78e1f18a29ab6bce2cb6c2',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Transformation &aTransformation) const'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5de58472d18d02a2446597834fe54f40',1,'ostk::mathematics::geometry::d3::Transformation::operator*(const Vector4d &aVector) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a01a9520273856cb589ef31dd0a9710c7',1,'ostk::mathematics::geometry::Angle::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a6028c92c3bd330713db8cab7bc5122e1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator*()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a1765aac15a1ece7dc16ce33e062d150b',1,'ostk::mathematics::geometry::operator*()']]], + ['operator_2a_3d_688',['operator*=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#abfeafe6bbaef1ce522e1d8948a61f7f3',1,'ostk::mathematics::geometry::d2::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a4aa0b88ebd82e92d05210c0b9d5b1cc3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a5861759a9e0bcdcf453674c90d159566',1,'ostk::mathematics::geometry::d3::Transformation::operator*=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a52d09c6892551e102b46db00745d1792',1,'ostk::mathematics::geometry::Angle::operator*=()']]], + ['operator_2b_689',['operator+',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aace2f490a008ad90ff0b5e9e4d27ef56',1,'ostk::mathematics::geometry::d2::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6a1d39238f6b47334b4d6d5b57cd766d',1,'ostk::mathematics::geometry::d2::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3e82b2ee39985232e315e63d9cae048c',1,'ostk::mathematics::geometry::d3::Intersection::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a9997d9bdb4f03aaf156511762d479f84',1,'ostk::mathematics::geometry::d3::object::Composite::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a87ad253260d586f019f07b6ae7202e19',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a12ba141f8f4820c9c1e6afe51cb7a369',1,'ostk::mathematics::geometry::Angle::operator+(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac5f8554956c2af987e09227b3f80476b',1,'ostk::mathematics::geometry::Angle::operator+() const']]], + ['operator_2b_3d_690',['operator+=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#af6afa26e7bf88dd2e8c2d824abd12076',1,'ostk::mathematics::geometry::d2::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#af5ed721c02883767d4a2270bfe32a155',1,'ostk::mathematics::geometry::d2::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#aaa5aafbae1b9357d3b15b34cf3610174',1,'ostk::mathematics::geometry::d3::Intersection::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a1f2e1b5d801464dd1c151b41e9e833b7',1,'ostk::mathematics::geometry::d3::object::Composite::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#acf750e6a9664f75b70c4c1afe50eff7d',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator+=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a3802b86b410a7fbeb832b4337246157d',1,'ostk::mathematics::geometry::Angle::operator+=()']]], + ['operator_2d_691',['operator-',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a1b5c4413ac72edd05608f270b76d2cd1',1,'ostk::mathematics::geometry::Angle::operator-(const Angle &anAngle) const'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a44f10fb317a8616cbfe8f2a6acfbdf54',1,'ostk::mathematics::geometry::Angle::operator-() const']]], + ['operator_2d_3d_692',['operator-=',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a7a027ef61f229719c429a3b6125944ad',1,'ostk::mathematics::geometry::Angle']]], + ['operator_2f_693',['operator/',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a410602d95ca3038414e373f689ef47ba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#adf9b2d8e3017045706b1fbebc37dc7f1',1,'ostk::mathematics::geometry::Angle::operator/()']]], + ['operator_2f_3d_694',['operator/=',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa6ec77b7da4aa05500e6551a4797bbb3',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator/=()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ad219f85f3e1821c423afed35cdacfd52',1,'ostk::mathematics::geometry::Angle::operator/=()']]], + ['operator_3c_3c_695',['operator<<',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#af4eef648c33103c1138186f8e2df55e8',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#a0f9a028d7abc22a5284c8d26fba4d3d6',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html#ac4a11d280db705e9e72b70e303f427be',1,'ostk::mathematics::geometry::d2::operator<<(std::ostream &anOutputStream, const Transformation &aTransformation)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#add09e667e701008cce5578e26853f883',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Intersection &anIntersection)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a5315286506c8a28a01474c943c8847c2',1,'ostk::mathematics::geometry::d3::operator<<(std::ostream &anOutputStream, const Object &anObject)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a4039583c5e12d44db90af36b8420cffd',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const EulerAngle &aEulerAngle)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#ae26404779f77ca73c95975806e5402d1',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const Quaternion &aQuaternion)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#afa8bc95840d3ed51eb2c9726bbd52f23',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationMatrix &aRotationMatrix)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html#a89b141f8b9cd2a93dbd9b584bab23d5b',1,'ostk::mathematics::geometry::d3::transformation::rotation::operator<<(std::ostream &anOutputStream, const RotationVector &aRotationVector)'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html#a36a57a233542af3c746ef3b589873e18',1,'ostk::mathematics::geometry::d3::operator<<()'],['../namespaceostk_1_1mathematics_1_1geometry.html#a611d50bcfddda6fe651b06d2648e60cf',1,'ostk::mathematics::geometry::operator<<()'],['../namespaceostk_1_1mathematics_1_1solver.html#a880f6ab73ddfe8eae45c0c7f4c6aaaeb',1,'ostk::mathematics::solver::operator<<()']]], + ['operator_3d_696',['operator=',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aae9f76b02e5539ae231dbdf138b72c4c',1,'ostk::mathematics::geometry::d2::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a6ceb4ff7945166c63292269531ecf722',1,'ostk::mathematics::geometry::d2::object::Composite::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a015d42e476cfc1d14221e6088d79137e',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#af999d9844abf33d70dae582222582fac',1,'ostk::mathematics::geometry::d2::object::Polygon::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a02a6a83da64f8aec58808f8eb747c249',1,'ostk::mathematics::geometry::d3::Intersection::operator=()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#ad10e87ffe83a4c78798e598ddfa54998',1,'ostk::mathematics::geometry::d3::object::Composite::operator=()']]], + ['operator_3d_3d_697',['operator==',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a6ab153de4908b154d7627d124b8f1a78',1,'ostk::mathematics::geometry::d2::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#aaa0ab4bcefcb11d05ddfcdea811f7d0b',1,'ostk::mathematics::geometry::d2::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#a90b8ba896201c7e6207b8deb7d24639a',1,'ostk::mathematics::geometry::d2::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a9a5ce9c1b26bbad9f208a1f3192ea068',1,'ostk::mathematics::geometry::d2::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a2243a564e4033f557f26b39cfd75ade8',1,'ostk::mathematics::geometry::d2::object::MultiLineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a6c0965f5352f0b062163855e2ec2cf4b',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a3a9cc35629142eb792940471e190f7d6',1,'ostk::mathematics::geometry::d2::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a736eaf33b25f759729e053aadaeae0cb',1,'ostk::mathematics::geometry::d2::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e45da47629d49cbf83823682b399e54',1,'ostk::mathematics::geometry::d2::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a7efea6942753f879406cf983a8e55d19',1,'ostk::mathematics::geometry::d2::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a9617246a3e26d57e5ba78e57387ae05a',1,'ostk::mathematics::geometry::d2::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a97115f56b673ff7d0efcc45ff4de2566',1,'ostk::mathematics::geometry::d2::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#adb34ecf6fc09a6a3b7c2dd349d0ecc31',1,'ostk::mathematics::geometry::d3::Intersection::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a70bc18b2b15c4419de64b8b0ac0ec44f',1,'ostk::mathematics::geometry::d3::object::Composite::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a218e8b5b2b28de0a632b102c0953f948',1,'ostk::mathematics::geometry::d3::object::Cone::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#abe25b1d5a60b159cfe79475e0a1bcd4b',1,'ostk::mathematics::geometry::d3::object::Cuboid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a24d5de8f8d462000ad16f99cb08b6bbe',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#aba1fb7d8d2c55f5622219263cb7e677b',1,'ostk::mathematics::geometry::d3::object::Line::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4c81f3eb92c3248c983def441296f9fb',1,'ostk::mathematics::geometry::d3::object::LineString::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a52ef325acb9072394c691b2511f875e9',1,'ostk::mathematics::geometry::d3::object::Plane::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a3134e01a0c43d6ad7b040f8f730b8e50',1,'ostk::mathematics::geometry::d3::object::Point::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a1a5f1f9e222a57f6055045d49c4dff6c',1,'ostk::mathematics::geometry::d3::object::PointSet::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a31ea0eaea624719d90d2d5477234fbc4',1,'ostk::mathematics::geometry::d3::object::Polygon::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#a77efda8908205d41517ed65ad8a09cf9',1,'ostk::mathematics::geometry::d3::object::Pyramid::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a361468984adc4da8b25c39047c5a8279',1,'ostk::mathematics::geometry::d3::object::Ray::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ae2d84ea0ab5dc2f1bcfb066e8c7e3f62',1,'ostk::mathematics::geometry::d3::object::Segment::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a86fab4da986e79ea843646b859a54b7b',1,'ostk::mathematics::geometry::d3::object::Sphere::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#aeb99dd25ff1c0683d9c0a058c8200e4d',1,'ostk::mathematics::geometry::d3::Object::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a487434e408dd6301e624305f9708a1b2',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a1e39393c8587024630cd91d312284be4',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aebd0b0120e56487f48764ee3541c21e4',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a951bcc257b60ab3ec2f45e1b4eb0cb70',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a0701af3c93fa91a10f09335d03fe2f44',1,'ostk::mathematics::geometry::d3::Transformation::operator==()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa3dc7dc0bc06636a3e3b1d5628344833',1,'ostk::mathematics::geometry::Angle::operator==()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a9ad41bce0c1205f0786f946870cf0fdc',1,'ostk::mathematics::object::Interval::operator==()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a751982613c3465145a9a0fc268c87467',1,'ostk::mathematics::solver::NumericalSolver::operator==()']]], + ['operator_5e_698',['operator^',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b03af85a1a62e2fe18eb684c2dc1c5c',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['origin_699',['Origin',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a44fa9d92b862d8fb9a379440ee0e6a81',1,'ostk::mathematics::geometry::d2::object::Point::Origin()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a2e0dc90fe04fb9befb79ec9874dcebc4',1,'ostk::mathematics::geometry::d3::object::Point::Origin()']]] ]; diff --git a/html/search/functions_c.js b/html/search/functions_c.js index 609ef7ec..83cc94dc 100644 --- a/html/search/functions_c.js +++ b/html/search/functions_c.js @@ -1,13 +1,13 @@ var searchData= [ - ['parse_675',['Parse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a5b56dc4ce6a820188901e71d02333651',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Parse()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ace183366972c47b1f54c7b372e4ac0ff',1,'ostk::mathematics::geometry::Angle::Parse()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac57a376cb40367712a31e57b82d4bf96',1,'ostk::mathematics::object::Interval::Parse()']]], - ['pi_676',['Pi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ab52a6ac8a09b8e96ff5ce6f8c429eb25',1,'ostk::mathematics::geometry::Angle']]], - ['plane_677',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ae1c8e4e15ce5c0ec7ace2e1b61b17358',1,'ostk::mathematics::geometry::d3::object::Plane']]], - ['point_678',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a557d7508624c7644f74a358959e3a7e2',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1c108c80b33fb0252405b8a567060e28',1,'ostk::mathematics::geometry::d2::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#acbad6f7755a851df8bca64fb8bdef1b6',1,'ostk::mathematics::geometry::d3::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ad2997c8a9695cb44004985034cb622b8',1,'ostk::mathematics::geometry::d3::object::Point::Point()']]], - ['points_679',['Points',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ae8c72610b423866bc7c1bca059d3a7e3',1,'ostk::mathematics::geometry::d2::object::Line::Points()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2c137ebb5cbfe774410eb84644e5cdd4',1,'ostk::mathematics::geometry::d3::object::Line::Points()']]], - ['pointset_680',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aac4f1f9c3ecee9bce18232398a6a8344',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a652ec33b4c6493e0c191a4b6809653a2',1,'ostk::mathematics::geometry::d2::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3734219d673b6e159c6e5ac7d51f9b1b',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aabd317c62ef535b222c6facc6103faf6',1,'ostk::mathematics::geometry::d3::object::PointSet::PointSet()']]], - ['polygon_681',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0e011491a8e6fd33fa8f703529bebc76',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a4c9d7d4e3f89c926571e3f03766a0551',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a5389f3ef22d7144b5f01e37c8a221e8e',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Array< Point > &anOuterRing, const Array< Array< Point >> &anInnerRingArray=Array< Array< Point >>::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4031148e40aa64e08fe9ee5acdfa9c27',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon::Ring &anOuterRing, const Array< Polygon::Ring > &anInnerRingArray=Array< Polygon::Ring >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adc2ef152c4cfc2b2842cf9e215116ea4',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon &aPolygon)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a4a3afb176b3e70d5f174d0a7f6b57272',1,'ostk::mathematics::geometry::d3::object::Polygon::Polygon()']]], - ['pow_682',['pow',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['print_683',['print',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68feee2a993e698e796db61bc27a6167',1,'ostk::mathematics::geometry::d2::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ad3cdbabb0a5a068923e9c63e6675fa15',1,'ostk::mathematics::geometry::d2::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a292e3bf679e232f605e4726f0bfff970',1,'ostk::mathematics::geometry::d2::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac1befc9e46d84330636599f164cb2033',1,'ostk::mathematics::geometry::d2::object::MultiLineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2912fc75e812550a0734bd6fa91368b7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1b7542e4161a90a3e2af18d62f9854c6',1,'ostk::mathematics::geometry::d2::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab1d1852516a67b36a9d4c3b5f5483fa7',1,'ostk::mathematics::geometry::d2::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e6da736abac853938c0a42e50984191',1,'ostk::mathematics::geometry::d2::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a104bbc842576324e46876838e92b18c9',1,'ostk::mathematics::geometry::d2::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aaf59b52c718ca92c6b6116660077d9f9',1,'ostk::mathematics::geometry::d2::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3403dc8a6f1f18450a86a3e5868d2348',1,'ostk::mathematics::geometry::d2::Transformation::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a7d59b2b6538e28c9faa5ad94249e0d5d',1,'ostk::mathematics::geometry::d3::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4683504c6cc0933811bf909c96f5ef17',1,'ostk::mathematics::geometry::d3::object::Cone::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa60fe81325d3fa897e6bc7517c28d071',1,'ostk::mathematics::geometry::d3::object::Cuboid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7c5c1f79b1c0533073ef48e38dc5e18b',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#adbfd6a95b2edf22a2540e449d07e499c',1,'ostk::mathematics::geometry::d3::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a3f55f08a54e8341f3381f1402ace1b09',1,'ostk::mathematics::geometry::d3::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a69cc28d37f97308cd2d0a9b58d50c18f',1,'ostk::mathematics::geometry::d3::object::Plane::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9395ae58a8f65a13328bc581586955c3',1,'ostk::mathematics::geometry::d3::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a54b5df386104fa9e13d7a982c3a99589',1,'ostk::mathematics::geometry::d3::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a3a3719dc361d969338a34cce892fff94',1,'ostk::mathematics::geometry::d3::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aba0fd8b256f78bb7bb0725103287f681',1,'ostk::mathematics::geometry::d3::object::Pyramid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#af5e5dea5fe393ea9a76fd3b2638f9446',1,'ostk::mathematics::geometry::d3::object::Ray::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa5283e30e7ddb452b048bd54f841c63e',1,'ostk::mathematics::geometry::d3::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae7a968c5f386c5f9019389e6e3fca138',1,'ostk::mathematics::geometry::d3::object::Sphere::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a5063e1f902e1b08d36f6b6cecab0bd95',1,'ostk::mathematics::geometry::d3::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a848420f246834b6ee2272144439e5cbf',1,'ostk::mathematics::geometry::d3::Transformation::print()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad228bac87a6b39aeecc275e894178722',1,'ostk::mathematics::solver::NumericalSolver::print()']]], - ['pyramid_684',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#adddec5b182cdca50f62190d899179460',1,'ostk::mathematics::geometry::d3::object::Pyramid']]] + ['parse_700',['Parse',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a5b56dc4ce6a820188901e71d02333651',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Parse()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ace183366972c47b1f54c7b372e4ac0ff',1,'ostk::mathematics::geometry::Angle::Parse()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#ac57a376cb40367712a31e57b82d4bf96',1,'ostk::mathematics::object::Interval::Parse()']]], + ['pi_701',['Pi',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ab52a6ac8a09b8e96ff5ce6f8c429eb25',1,'ostk::mathematics::geometry::Angle']]], + ['plane_702',['Plane',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#ae1c8e4e15ce5c0ec7ace2e1b61b17358',1,'ostk::mathematics::geometry::d3::object::Plane']]], + ['point_703',['Point',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a557d7508624c7644f74a358959e3a7e2',1,'ostk::mathematics::geometry::d2::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1c108c80b33fb0252405b8a567060e28',1,'ostk::mathematics::geometry::d2::object::Point::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#acbad6f7755a851df8bca64fb8bdef1b6',1,'ostk::mathematics::geometry::d3::Intersection::Point()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#ad2997c8a9695cb44004985034cb622b8',1,'ostk::mathematics::geometry::d3::object::Point::Point()']]], + ['points_704',['Points',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ae8c72610b423866bc7c1bca059d3a7e3',1,'ostk::mathematics::geometry::d2::object::Line::Points()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#a2c137ebb5cbfe774410eb84644e5cdd4',1,'ostk::mathematics::geometry::d3::object::Line::Points()']]], + ['pointset_705',['PointSet',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#aac4f1f9c3ecee9bce18232398a6a8344',1,'ostk::mathematics::geometry::d2::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a652ec33b4c6493e0c191a4b6809653a2',1,'ostk::mathematics::geometry::d2::object::PointSet::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a3734219d673b6e159c6e5ac7d51f9b1b',1,'ostk::mathematics::geometry::d3::Intersection::PointSet()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#aabd317c62ef535b222c6facc6103faf6',1,'ostk::mathematics::geometry::d3::object::PointSet::PointSet()']]], + ['polygon_706',['Polygon',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a0e011491a8e6fd33fa8f703529bebc76',1,'ostk::mathematics::geometry::d2::Intersection::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a4c9d7d4e3f89c926571e3f03766a0551',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::Polygon()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a5389f3ef22d7144b5f01e37c8a221e8e',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Array< Point > &anOuterRing, const Array< Array< Point >> &anInnerRingArray=Array< Array< Point >>::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4031148e40aa64e08fe9ee5acdfa9c27',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon::Ring &anOuterRing, const Array< Polygon::Ring > &anInnerRingArray=Array< Polygon::Ring >::Empty())'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adc2ef152c4cfc2b2842cf9e215116ea4',1,'ostk::mathematics::geometry::d2::object::Polygon::Polygon(const Polygon &aPolygon)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a4a3afb176b3e70d5f174d0a7f6b57272',1,'ostk::mathematics::geometry::d3::object::Polygon::Polygon()']]], + ['pow_707',['pow',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a8cc3e9ff6728b4857648cf8ffdcc1bc1',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['print_708',['print',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a68feee2a993e698e796db61bc27a6167',1,'ostk::mathematics::geometry::d2::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line.html#ad3cdbabb0a5a068923e9c63e6675fa15',1,'ostk::mathematics::geometry::d2::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#a292e3bf679e232f605e4726f0bfff970',1,'ostk::mathematics::geometry::d2::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#ac1befc9e46d84330636599f164cb2033',1,'ostk::mathematics::geometry::d2::object::MultiLineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#a2912fc75e812550a0734bd6fa91368b7',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point.html#a1b7542e4161a90a3e2af18d62f9854c6',1,'ostk::mathematics::geometry::d2::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#ab1d1852516a67b36a9d4c3b5f5483fa7',1,'ostk::mathematics::geometry::d2::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e6da736abac853938c0a42e50984191',1,'ostk::mathematics::geometry::d2::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#a104bbc842576324e46876838e92b18c9',1,'ostk::mathematics::geometry::d2::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#aaf59b52c718ca92c6b6116660077d9f9',1,'ostk::mathematics::geometry::d2::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a3403dc8a6f1f18450a86a3e5868d2348',1,'ostk::mathematics::geometry::d2::Transformation::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a7d59b2b6538e28c9faa5ad94249e0d5d',1,'ostk::mathematics::geometry::d3::object::Composite::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cone.html#a4683504c6cc0933811bf909c96f5ef17',1,'ostk::mathematics::geometry::d3::object::Cone::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#aa60fe81325d3fa897e6bc7517c28d071',1,'ostk::mathematics::geometry::d3::object::Cuboid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid.html#a7c5c1f79b1c0533073ef48e38dc5e18b',1,'ostk::mathematics::geometry::d3::object::Ellipsoid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line.html#adbfd6a95b2edf22a2540e449d07e499c',1,'ostk::mathematics::geometry::d3::object::Line::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a3f55f08a54e8341f3381f1402ace1b09',1,'ostk::mathematics::geometry::d3::object::LineString::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane.html#a69cc28d37f97308cd2d0a9b58d50c18f',1,'ostk::mathematics::geometry::d3::object::Plane::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point.html#a9395ae58a8f65a13328bc581586955c3',1,'ostk::mathematics::geometry::d3::object::Point::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a54b5df386104fa9e13d7a982c3a99589',1,'ostk::mathematics::geometry::d3::object::PointSet::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a3a3719dc361d969338a34cce892fff94',1,'ostk::mathematics::geometry::d3::object::Polygon::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#aba0fd8b256f78bb7bb0725103287f681',1,'ostk::mathematics::geometry::d3::object::Pyramid::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#af5e5dea5fe393ea9a76fd3b2638f9446',1,'ostk::mathematics::geometry::d3::object::Ray::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#aa5283e30e7ddb452b048bd54f841c63e',1,'ostk::mathematics::geometry::d3::object::Segment::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#ae7a968c5f386c5f9019389e6e3fca138',1,'ostk::mathematics::geometry::d3::object::Sphere::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a5063e1f902e1b08d36f6b6cecab0bd95',1,'ostk::mathematics::geometry::d3::Object::print()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a848420f246834b6ee2272144439e5cbf',1,'ostk::mathematics::geometry::d3::Transformation::print()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad228bac87a6b39aeecc275e894178722',1,'ostk::mathematics::solver::NumericalSolver::print()']]], + ['pyramid_709',['Pyramid',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid.html#adddec5b182cdca50f62190d899179460',1,'ostk::mathematics::geometry::d3::object::Pyramid']]] ]; diff --git a/html/search/functions_d.js b/html/search/functions_d.js index 2cf1fd25..b590b5db 100644 --- a/html/search/functions_d.js +++ b/html/search/functions_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['quaternion_685',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector4d &aVector, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector3d &aVectorPart, const Real &aScalarPart)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a08706245c522cf0a4b101efdc66ab802',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ae2257efa00cf6358d7135f4fb67f42c0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Quaternion()']]] + ['quaternion_710',['Quaternion',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a046912d1e2a21205e51d070b186630f6',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a473fe143aff59c8d0ef54b7e73138853',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Real &aFirstComponent, const Real &aSecondComponent, const Real &aThirdComponent, const Real &aFourthComponent, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ad3ca378d47be35fa0bf91e9755dd5096',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector4d &aVector, const Quaternion::Format &aFormat)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a7b05d9472dad47ee5c1bd8f4dd464261',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::Quaternion(const Vector3d &aVectorPart, const Real &aScalarPart)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a08706245c522cf0a4b101efdc66ab802',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::Quaternion()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#ae2257efa00cf6358d7135f4fb67f42c0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::Quaternion()']]] ]; diff --git a/html/search/functions_e.js b/html/search/functions_e.js index 92e3bbc6..08114d5e 100644 --- a/html/search/functions_e.js +++ b/html/search/functions_e.js @@ -1,16 +1,16 @@ var searchData= [ - ['radians_686',['Radians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac8d7459ae201e96eabd5e5d86eff5cb0',1,'ostk::mathematics::geometry::Angle']]], - ['ray_687',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a5853d8e020fb534c1c44a6f2350a45fc',1,'ostk::mathematics::geometry::d3::Intersection::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a0d244c15c77e18801be99d79a100420a',1,'ostk::mathematics::geometry::d3::object::Ray::Ray()']]], - ['rectify_688',['rectify',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['revolutions_689',['Revolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a14eb58729720306e1d9def33d93278f6',1,'ostk::mathematics::geometry::Angle']]], - ['rotatevector_690',['rotateVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['rotation_691',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aae0d29a9d8b14e1234dddf22c072ff53',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa12d31e920d91e59080771f26242b0c2',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationVector &aRotationVector)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6302652ab44a2a9d5ee08645e7ed107a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationMatrix &aRotationMatrix)']]], - ['rotationaround_692',['RotationAround',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a970c932524b54aa74373a1a3d50f51af',1,'ostk::mathematics::geometry::d2::Transformation::RotationAround()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a3966d6c0dcf466528932566907b9c7b4',1,'ostk::mathematics::geometry::d3::Transformation::RotationAround()']]], - ['rotationmatrix_693',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a6622a7bdc0b5a4a05b1924d8efc4b7d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Matrix3d &aMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Real &aFirstCoefficient, const Real &aSecondCoefficient, const Real &aThirdCoefficient, const Real &aFourthCoefficient, const Real &aFifthCoefficient, const Real &aSixthCoefficient, const Real &aSeventhCoefficient, const Real &aEighthCoefficient, const Real &aNinthCoefficient)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a11b732b431882d3e29d63b5b350b88bc',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationMatrix()']]], - ['rotationvector_694',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aee9309aec1e4543df08f57d40a0e51ed',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#af11a91008ad9a5e8682437777efcfb0d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector()']]], - ['rows_695',['Rows',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a803abf578ca73618baf5d92358a1fef5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['rx_696',['RX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ad6019cbe46a2b47ad26470f996214bb0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['ry_697',['RY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a580d873ccc82cafaa3e18bedfe54a0f2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], - ['rz_698',['RZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4056e0c5112b76e58df8afbf359cefa6',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]] + ['radians_711',['Radians',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#ac8d7459ae201e96eabd5e5d86eff5cb0',1,'ostk::mathematics::geometry::Angle']]], + ['ray_712',['Ray',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a5853d8e020fb534c1c44a6f2350a45fc',1,'ostk::mathematics::geometry::d3::Intersection::Ray()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray.html#a0d244c15c77e18801be99d79a100420a',1,'ostk::mathematics::geometry::d3::object::Ray::Ray()']]], + ['rectify_713',['rectify',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab4698e830342864f4debb6cb5d4c66bd',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::rectify()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a02150f4e7ec88996f75eaae63b215cfb',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::rectify()']]], + ['revolutions_714',['Revolutions',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a14eb58729720306e1d9def33d93278f6',1,'ostk::mathematics::geometry::Angle']]], + ['rotatevector_715',['rotateVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2f204333466437f149ebf1ec186b4c40',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['rotation_716',['Rotation',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#aae0d29a9d8b14e1234dddf22c072ff53',1,'ostk::mathematics::geometry::d2::Transformation::Rotation()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#aa12d31e920d91e59080771f26242b0c2',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationVector &aRotationVector)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a6302652ab44a2a9d5ee08645e7ed107a',1,'ostk::mathematics::geometry::d3::Transformation::Rotation(const RotationMatrix &aRotationMatrix)']]], + ['rotationaround_717',['RotationAround',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#a970c932524b54aa74373a1a3d50f51af',1,'ostk::mathematics::geometry::d2::Transformation::RotationAround()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#a3966d6c0dcf466528932566907b9c7b4',1,'ostk::mathematics::geometry::d3::Transformation::RotationAround()']]], + ['rotationmatrix_718',['RotationMatrix',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ad52bbd103ee414308394cd4c9e9848c9',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a6622a7bdc0b5a4a05b1924d8efc4b7d7',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationMatrix()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a74d44755a8c72da68f52106af2bcfdea',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Matrix3d &aMatrix)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#afadb0c9335620b1504fe72e81e816a0e',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationMatrix(const Real &aFirstCoefficient, const Real &aSecondCoefficient, const Real &aThirdCoefficient, const Real &aFourthCoefficient, const Real &aFifthCoefficient, const Real &aSixthCoefficient, const Real &aSeventhCoefficient, const Real &aEighthCoefficient, const Real &aNinthCoefficient)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a11b732b431882d3e29d63b5b350b88bc',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationMatrix()']]], + ['rotationvector_719',['RotationVector',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#ac8579cff213d96389fcb8daa84d81063',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aee9309aec1e4543df08f57d40a0e51ed',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#af11a91008ad9a5e8682437777efcfb0d',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::RotationVector()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#a85786a4e81f7107c8367ed0ae783c79f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector(const Vector3d &anAxis, const Angle &anAngle)'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aca6953257290fbef4b31d1ae9ce91c8f',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::RotationVector(const Vector3d &anAxis, const Angle::Unit &anAngleUnit)']]], + ['rows_720',['Rows',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a803abf578ca73618baf5d92358a1fef5',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['rx_721',['RX',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#ad6019cbe46a2b47ad26470f996214bb0',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['ry_722',['RY',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a580d873ccc82cafaa3e18bedfe54a0f2',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]], + ['rz_723',['RZ',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#a4056e0c5112b76e58df8afbf359cefa6',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix']]] ]; diff --git a/html/search/functions_f.js b/html/search/functions_f.js index 1e2a4bba..541a0651 100644 --- a/html/search/functions_f.js +++ b/html/search/functions_f.js @@ -1,19 +1,20 @@ var searchData= [ - ['s_699',['s',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['segment_700',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad326132c2af6ff427d658d6fdcc726be',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#aa04a6a68ea74f4702d1d98baa78b050d',1,'ostk::mathematics::geometry::d2::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ac5180c75994c3f3f1d824307a600874f',1,'ostk::mathematics::geometry::d2::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a79cfcb916d8b86acfc012a1e81452a5c',1,'ostk::mathematics::geometry::d3::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4a92c1b91c16ae49fe38a3bf347586c0',1,'ostk::mathematics::geometry::d3::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ab79700bcf0eb146f1fc37d3cffc44fb4',1,'ostk::mathematics::geometry::d3::object::Segment::Segment()']]], - ['setlowerbound_701',['setLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060',1,'ostk::mathematics::object::Interval']]], - ['settype_702',['setType',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201',1,'ostk::mathematics::object::Interval']]], - ['setupperbound_703',['setUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3',1,'ostk::mathematics::object::Interval']]], - ['shortestrotation_704',['ShortestRotation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a428dd39d288a6b42d9566733e038fb96',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['slerp_705',['SLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a0f9b33ebd521725a1fd852e68cf3bfba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], - ['sphere_706',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a44cf858e4351d1890cc1116bb85f9850',1,'ostk::mathematics::geometry::d3::object::Sphere']]], - ['spheregtevectorfrompoint_707',['SphereGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a2373bb69e26976644af9d80cc0921e3e',1,'ostk::mathematics::geometry::d3::object']]], - ['spheregtevectorfromvector3d_708',['SphereGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae919c4084c1540b6b56fc219efdcc30a',1,'ostk::mathematics::geometry::d3::object']]], - ['spherepointfromgtevector_709',['SpherePointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a31af6093bf793c50cfaa72b62da029e3',1,'ostk::mathematics::geometry::d3::object']]], - ['stringfromlogtype_710',['StringFromLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7cee34ba53141a87ef6b43c8109b3444',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stringfromsteppertype_711',['StringFromStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a2c4600d661dbfbc01f5cd4c3380440c7',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stringfromtype_712',['StringFromType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7b00ce84dad2ae6d6bc09ca964dd4e28',1,'ostk::mathematics::geometry::d2::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ab96e3a181ecfd0079fa589839fe963a5',1,'ostk::mathematics::geometry::d2::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad4acfac77266ddeaeabbc89150f480c2',1,'ostk::mathematics::geometry::d3::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#abc82b6b7508d4a3986bb445e6913e610',1,'ostk::mathematics::geometry::d3::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a906c45e8ea21c1d762015a491afa2254',1,'ostk::mathematics::object::Interval::StringFromType()']]], - ['stringfromunit_713',['StringFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa8a1a9c33c0f6bd09dabd9580436fa9c',1,'ostk::mathematics::geometry::Angle']]], - ['symbolfromunit_714',['SymbolFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aef349823dc4fc1bd9aae2f3893c9a248',1,'ostk::mathematics::geometry::Angle']]] + ['s_724',['s',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#aa59ce9764110f86f725a3797bf834764',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['segment_725',['Segment',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#ad326132c2af6ff427d658d6fdcc726be',1,'ostk::mathematics::geometry::d2::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#aa04a6a68ea74f4702d1d98baa78b050d',1,'ostk::mathematics::geometry::d2::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment.html#ac5180c75994c3f3f1d824307a600874f',1,'ostk::mathematics::geometry::d2::object::Segment::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a79cfcb916d8b86acfc012a1e81452a5c',1,'ostk::mathematics::geometry::d3::Intersection::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a4a92c1b91c16ae49fe38a3bf347586c0',1,'ostk::mathematics::geometry::d3::object::LineString::Segment()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment.html#ab79700bcf0eb146f1fc37d3cffc44fb4',1,'ostk::mathematics::geometry::d3::object::Segment::Segment()']]], + ['setlowerbound_726',['setLowerBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a190b44671c94ecef7725747127bb6060',1,'ostk::mathematics::object::Interval']]], + ['settype_727',['setType',['../classostk_1_1mathematics_1_1object_1_1_interval.html#ad0010cca002a86b15a2dc9e4f5335201',1,'ostk::mathematics::object::Interval']]], + ['setupperbound_728',['setUpperBound',['../classostk_1_1mathematics_1_1object_1_1_interval.html#a42cfebf36ddd48dde7e0673f62716eb3',1,'ostk::mathematics::object::Interval']]], + ['shortestrotation_729',['ShortestRotation',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a428dd39d288a6b42d9566733e038fb96',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['slerp_730',['SLERP',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a0f9b33ebd521725a1fd852e68cf3bfba',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion']]], + ['sphere_731',['Sphere',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere.html#a44cf858e4351d1890cc1116bb85f9850',1,'ostk::mathematics::geometry::d3::object::Sphere']]], + ['spheregtevectorfrompoint_732',['SphereGteVectorFromPoint',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a2373bb69e26976644af9d80cc0921e3e',1,'ostk::mathematics::geometry::d3::object']]], + ['spheregtevectorfromvector3d_733',['SphereGteVectorFromVector3d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae919c4084c1540b6b56fc219efdcc30a',1,'ostk::mathematics::geometry::d3::object']]], + ['spherepointfromgtevector_734',['SpherePointFromGteVector',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#a31af6093bf793c50cfaa72b62da029e3',1,'ostk::mathematics::geometry::d3::object']]], + ['stringfromaxissequence_735',['StringFromAxisSequence',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#af8605f8fa6810bdf2043cdb8b4b2f2a2',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle']]], + ['stringfromlogtype_736',['StringFromLogType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7cee34ba53141a87ef6b43c8109b3444',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stringfromsteppertype_737',['StringFromStepperType',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a2c4600d661dbfbc01f5cd4c3380440c7',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stringfromtype_738',['StringFromType',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a7b00ce84dad2ae6d6bc09ca964dd4e28',1,'ostk::mathematics::geometry::d2::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#ab96e3a181ecfd0079fa589839fe963a5',1,'ostk::mathematics::geometry::d2::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#ad4acfac77266ddeaeabbc89150f480c2',1,'ostk::mathematics::geometry::d3::Intersection::StringFromType()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#abc82b6b7508d4a3986bb445e6913e610',1,'ostk::mathematics::geometry::d3::Transformation::StringFromType()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a906c45e8ea21c1d762015a491afa2254',1,'ostk::mathematics::object::Interval::StringFromType()']]], + ['stringfromunit_739',['StringFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aa8a1a9c33c0f6bd09dabd9580436fa9c',1,'ostk::mathematics::geometry::Angle']]], + ['symbolfromunit_740',['SymbolFromUnit',['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#aef349823dc4fc1bd9aae2f3893c9a248',1,'ostk::mathematics::geometry::Angle']]] ]; diff --git a/html/search/namespaces_0.js b/html/search/namespaces_0.js index 84738670..9d6f6368 100644 --- a/html/search/namespaces_0.js +++ b/html/search/namespaces_0.js @@ -1,14 +1,14 @@ var searchData= [ - ['curvefitting_421',['curvefitting',['../namespaceostk_1_1mathematics_1_1curvefitting.html',1,'ostk::mathematics']]], - ['d2_422',['d2',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html',1,'ostk::mathematics::geometry']]], - ['d3_423',['d3',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html',1,'ostk::mathematics::geometry']]], - ['geometry_424',['geometry',['../namespaceostk_1_1mathematics_1_1geometry.html',1,'ostk::mathematics']]], - ['interpolator_425',['interpolator',['../namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html',1,'ostk::mathematics::curvefitting']]], - ['mathematics_426',['mathematics',['../namespaceostk_1_1mathematics.html',1,'ostk']]], - ['object_427',['object',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html',1,'ostk::mathematics::geometry::d2::object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html',1,'ostk::mathematics::geometry::d3::object'],['../namespaceostk_1_1mathematics_1_1object.html',1,'ostk::mathematics::object']]], - ['ostk_428',['ostk',['../namespaceostk.html',1,'']]], - ['rotation_429',['rotation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html',1,'ostk::mathematics::geometry::d3::transformation']]], - ['solver_430',['solver',['../namespaceostk_1_1mathematics_1_1solver.html',1,'ostk::mathematics']]], - ['transformation_431',['transformation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation.html',1,'ostk::mathematics::geometry::d3']]] + ['curvefitting_438',['curvefitting',['../namespaceostk_1_1mathematics_1_1curvefitting.html',1,'ostk::mathematics']]], + ['d2_439',['d2',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2.html',1,'ostk::mathematics::geometry']]], + ['d3_440',['d3',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3.html',1,'ostk::mathematics::geometry']]], + ['geometry_441',['geometry',['../namespaceostk_1_1mathematics_1_1geometry.html',1,'ostk::mathematics']]], + ['interpolator_442',['interpolator',['../namespaceostk_1_1mathematics_1_1curvefitting_1_1interpolator.html',1,'ostk::mathematics::curvefitting']]], + ['mathematics_443',['mathematics',['../namespaceostk_1_1mathematics.html',1,'ostk']]], + ['object_444',['object',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html',1,'ostk::mathematics::geometry::d2::object'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html',1,'ostk::mathematics::geometry::d3::object'],['../namespaceostk_1_1mathematics_1_1object.html',1,'ostk::mathematics::object']]], + ['ostk_445',['ostk',['../namespaceostk.html',1,'']]], + ['rotation_446',['rotation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.html',1,'ostk::mathematics::geometry::d3::transformation']]], + ['solver_447',['solver',['../namespaceostk_1_1mathematics_1_1solver.html',1,'ostk::mathematics']]], + ['transformation_448',['transformation',['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation.html',1,'ostk::mathematics::geometry::d3']]] ]; diff --git a/html/search/pages_0.js b/html/search/pages_0.js index 13545b91..80813a55 100644 --- a/html/search/pages_0.js +++ b/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['contributing_835',['Contributing',['../md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]] + ['contributing_871',['Contributing',['../md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]] ]; diff --git a/html/search/pages_1.js b/html/search/pages_1.js index bd67e8dc..5d9a33d3 100644 --- a/html/search/pages_1.js +++ b/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['open_20space_20toolkit_20â–¸_20mathematics_836',['Open Space Toolkit â–¸ Mathematics',['../index.html',1,'']]] + ['open_20space_20toolkit_20â–¸_20mathematics_872',['Open Space Toolkit â–¸ Mathematics',['../index.html',1,'']]] ]; diff --git a/html/search/pages_2.js b/html/search/pages_2.js index f1d39292..572df87a 100644 --- a/html/search/pages_2.js +++ b/html/search/pages_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['tutorial_837',['Tutorial',['../md_docs__tutorial.html',1,'']]] + ['tutorial_873',['Tutorial',['../md_docs__tutorial.html',1,'']]] ]; diff --git a/html/search/related_0.js b/html/search/related_0.js index cc4d96fb..2f696fde 100644 --- a/html/search/related_0.js +++ b/html/search/related_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['operator_2a_827',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9',1,'ostk::mathematics::geometry::Angle::operator*()']]], - ['operator_3c_3c_828',['operator<<',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d2::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d2::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d2::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d3::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d3::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d3::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed',1,'ostk::mathematics::geometry::Angle::operator<<()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b',1,'ostk::mathematics::object::Interval::operator<<()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a28e4d7a66856d0bedb035589eb5e70f7',1,'ostk::mathematics::solver::NumericalSolver::operator<<()']]] + ['operator_2a_863',['operator*',['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#a2806bc2f5b9d299c075c51740cfa48ea',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator*()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#af699984b24759466957ecddaa7e61fc9',1,'ostk::mathematics::geometry::Angle::operator*()']]], + ['operator_3c_3c_864',['operator<<',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d2::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d2::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d2::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_intersection.html#a8ff783039001be6a871338148f4f2919',1,'ostk::mathematics::geometry::d3::Intersection::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_object.html#a418df9bf4a73078f3d494edef1743f8d',1,'ostk::mathematics::geometry::d3::Object::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.html#a88d18669eb768c7f71a92df68c886202',1,'ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.html#ab9414dc117f260055d0a1a565eb93708',1,'ostk::mathematics::geometry::d3::transformation::rotation::Quaternion::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.html#aa9ed0897a6219331deeb7750017a0df9',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.html#aa66ba2fd706a441ee39d06857842ecfe',1,'ostk::mathematics::geometry::d3::transformation::rotation::RotationVector::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation.html#afb2829e106dc4aeab1c706d1eaa357e8',1,'ostk::mathematics::geometry::d3::Transformation::operator<<()'],['../classostk_1_1mathematics_1_1geometry_1_1_angle.html#a0846b77ee3281e8a559197c3c3208eed',1,'ostk::mathematics::geometry::Angle::operator<<()'],['../classostk_1_1mathematics_1_1object_1_1_interval.html#a3aa32afa8cb5d85eeb45540b0bf5657b',1,'ostk::mathematics::object::Interval::operator<<()'],['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a28e4d7a66856d0bedb035589eb5e70f7',1,'ostk::mathematics::solver::NumericalSolver::operator<<()']]] ]; diff --git a/html/search/searchdata.js b/html/search/searchdata.js index 68596177..45e824a8 100644 --- a/html/search/searchdata.js +++ b/html/search/searchdata.js @@ -7,8 +7,8 @@ var indexSectionsWithContent = 4: "abcdeghilmnopqrstuvxyz~", 5: "alrst", 6: "cdemprsv", - 7: "flstu", - 8: "abcdehilnoprstuwx", + 7: "aflstu", + 8: "abcdehilnoprstuwxz", 9: "o", 10: "de", 11: "cot" diff --git a/html/search/typedefs_0.js b/html/search/typedefs_0.js index ec75305d..2c9c9fe6 100644 --- a/html/search/typedefs_0.js +++ b/html/search/typedefs_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['constiterator_746',['ConstIterator',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a34efd57a99c61f2e4e63fd6444dae04f',1,'ostk::mathematics::geometry::d2::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#acacd5fbb50b8d1b38b2d90b9139cbfa9',1,'ostk::mathematics::geometry::d2::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a56904ee7e27c37e2c3a1c94359ec01c9',1,'ostk::mathematics::geometry::d2::object::MultiLineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac8c8663dfd3465fdc37f369adc826488',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a82c1f98e0313394b616bf3e09b8dfb91',1,'ostk::mathematics::geometry::d2::object::PointSet::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a3fb7f38a564e36224fb4753be74836ff',1,'ostk::mathematics::geometry::d3::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5bc4dc999137d0087978e3a1df1d8f7b',1,'ostk::mathematics::geometry::d3::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a257f4e16cbaf7a172b99449b9b9130a0',1,'ostk::mathematics::geometry::d3::object::PointSet::ConstIterator()']]], - ['container_747',['Container',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a210d9e23e5160ce058c2d9af547bd649',1,'ostk::mathematics::geometry::d2::object::PointSet::Container()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a313907ba2105a4ba75badb42c2277dc0',1,'ostk::mathematics::geometry::d3::object::PointSet::Container()']]] + ['constiterator_778',['ConstIterator',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_composite.html#a34efd57a99c61f2e4e63fd6444dae04f',1,'ostk::mathematics::geometry::d2::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_line_string.html#acacd5fbb50b8d1b38b2d90b9139cbfa9',1,'ostk::mathematics::geometry::d2::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_line_string.html#a56904ee7e27c37e2c3a1c94359ec01c9',1,'ostk::mathematics::geometry::d2::object::MultiLineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_multi_polygon.html#ac8c8663dfd3465fdc37f369adc826488',1,'ostk::mathematics::geometry::d2::object::MultiPolygon::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a82c1f98e0313394b616bf3e09b8dfb91',1,'ostk::mathematics::geometry::d2::object::PointSet::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_composite.html#a3fb7f38a564e36224fb4753be74836ff',1,'ostk::mathematics::geometry::d3::object::Composite::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_line_string.html#a5bc4dc999137d0087978e3a1df1d8f7b',1,'ostk::mathematics::geometry::d3::object::LineString::ConstIterator()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a257f4e16cbaf7a172b99449b9b9130a0',1,'ostk::mathematics::geometry::d3::object::PointSet::ConstIterator()']]], + ['container_779',['Container',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set.html#a210d9e23e5160ce058c2d9af547bd649',1,'ostk::mathematics::geometry::d2::object::PointSet::Container()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set.html#a313907ba2105a4ba75badb42c2277dc0',1,'ostk::mathematics::geometry::d3::object::PointSet::Container()']]] ]; diff --git a/html/search/typedefs_1.js b/html/search/typedefs_1.js index 1db8167b..72247925 100644 --- a/html/search/typedefs_1.js +++ b/html/search/typedefs_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['dense_5fstepper_5ftype_5f5_748',['dense_stepper_type_5',['../namespaceostk_1_1mathematics_1_1solver.html#a9e0e29898fea269d43fccf27c4fedd60',1,'ostk::mathematics::solver']]] + ['dense_5fstepper_5ftype_5f5_780',['dense_stepper_type_5',['../namespaceostk_1_1mathematics_1_1solver.html#a9e0e29898fea269d43fccf27c4fedd60',1,'ostk::mathematics::solver']]] ]; diff --git a/html/search/typedefs_2.js b/html/search/typedefs_2.js index f21fb6b1..4bd1ee49 100644 --- a/html/search/typedefs_2.js +++ b/html/search/typedefs_2.js @@ -1,6 +1,6 @@ var searchData= [ - ['edge_749',['Edge',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#afe8fc2aa12ac96c61c7eb213a1be60b5',1,'ostk::mathematics::geometry::d2::object::Polygon::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a2caa3ede4a8f8684fc8b62a8cdce0a57',1,'ostk::mathematics::geometry::d3::object::Cuboid::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a58c843dbce8d1d9eca6203b027477e11',1,'ostk::mathematics::geometry::d3::object::Polygon::Edge()']]], - ['error_5fstepper_5ftype_5f54_750',['error_stepper_type_54',['../namespaceostk_1_1mathematics_1_1solver.html#aff57be115a1ef18c0a53de6e79b00023',1,'ostk::mathematics::solver']]], - ['error_5fstepper_5ftype_5f78_751',['error_stepper_type_78',['../namespaceostk_1_1mathematics_1_1solver.html#a446382cbb767b2c1a4413b9f6f4fee34',1,'ostk::mathematics::solver']]] + ['edge_781',['Edge',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#afe8fc2aa12ac96c61c7eb213a1be60b5',1,'ostk::mathematics::geometry::d2::object::Polygon::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#a2caa3ede4a8f8684fc8b62a8cdce0a57',1,'ostk::mathematics::geometry::d3::object::Cuboid::Edge()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a58c843dbce8d1d9eca6203b027477e11',1,'ostk::mathematics::geometry::d3::object::Polygon::Edge()']]], + ['error_5fstepper_5ftype_5f54_782',['error_stepper_type_54',['../namespaceostk_1_1mathematics_1_1solver.html#aff57be115a1ef18c0a53de6e79b00023',1,'ostk::mathematics::solver']]], + ['error_5fstepper_5ftype_5f78_783',['error_stepper_type_78',['../namespaceostk_1_1mathematics_1_1solver.html#a446382cbb767b2c1a4413b9f6f4fee34',1,'ostk::mathematics::solver']]] ]; diff --git a/html/search/typedefs_3.js b/html/search/typedefs_3.js index 8bde74ea..7baf2d1d 100644 --- a/html/search/typedefs_3.js +++ b/html/search/typedefs_3.js @@ -1,11 +1,11 @@ var searchData= [ - ['matrix2d_752',['Matrix2d',['../namespaceostk_1_1mathematics_1_1object.html#a641962167e941239dfe860ff39dbf0e1',1,'ostk::mathematics::object']]], - ['matrix2i_753',['Matrix2i',['../namespaceostk_1_1mathematics_1_1object.html#a212c24ca74a37794559bcaa69549137e',1,'ostk::mathematics::object']]], - ['matrix3d_754',['Matrix3d',['../namespaceostk_1_1mathematics_1_1object.html#a9f8f6a9f4bd331fb6bc0c66a1aca5e30',1,'ostk::mathematics::object']]], - ['matrix3i_755',['Matrix3i',['../namespaceostk_1_1mathematics_1_1object.html#a0da6ed3d3407ebd2c38b982398b90e14',1,'ostk::mathematics::object']]], - ['matrix4d_756',['Matrix4d',['../namespaceostk_1_1mathematics_1_1object.html#adadb22c2eddff1e58abea07ad5cd2b78',1,'ostk::mathematics::object']]], - ['matrix4i_757',['Matrix4i',['../namespaceostk_1_1mathematics_1_1object.html#a2fa26d8f4a7f3ac9ac4a0c97dc547f8c',1,'ostk::mathematics::object']]], - ['matrixxd_758',['MatrixXd',['../namespaceostk_1_1mathematics_1_1object.html#a8be483f9d27b70e9009978332171b614',1,'ostk::mathematics::object']]], - ['matrixxi_759',['MatrixXi',['../namespaceostk_1_1mathematics_1_1object.html#a3fccc42715b83350a30545c3b45ba35f',1,'ostk::mathematics::object']]] + ['matrix2d_784',['Matrix2d',['../namespaceostk_1_1mathematics_1_1object.html#a641962167e941239dfe860ff39dbf0e1',1,'ostk::mathematics::object']]], + ['matrix2i_785',['Matrix2i',['../namespaceostk_1_1mathematics_1_1object.html#a212c24ca74a37794559bcaa69549137e',1,'ostk::mathematics::object']]], + ['matrix3d_786',['Matrix3d',['../namespaceostk_1_1mathematics_1_1object.html#a9f8f6a9f4bd331fb6bc0c66a1aca5e30',1,'ostk::mathematics::object']]], + ['matrix3i_787',['Matrix3i',['../namespaceostk_1_1mathematics_1_1object.html#a0da6ed3d3407ebd2c38b982398b90e14',1,'ostk::mathematics::object']]], + ['matrix4d_788',['Matrix4d',['../namespaceostk_1_1mathematics_1_1object.html#adadb22c2eddff1e58abea07ad5cd2b78',1,'ostk::mathematics::object']]], + ['matrix4i_789',['Matrix4i',['../namespaceostk_1_1mathematics_1_1object.html#a2fa26d8f4a7f3ac9ac4a0c97dc547f8c',1,'ostk::mathematics::object']]], + ['matrixxd_790',['MatrixXd',['../namespaceostk_1_1mathematics_1_1object.html#a8be483f9d27b70e9009978332171b614',1,'ostk::mathematics::object']]], + ['matrixxi_791',['MatrixXi',['../namespaceostk_1_1mathematics_1_1object.html#a3fccc42715b83350a30545c3b45ba35f',1,'ostk::mathematics::object']]] ]; diff --git a/html/search/typedefs_4.js b/html/search/typedefs_4.js index ef2535d8..fbd92bd6 100644 --- a/html/search/typedefs_4.js +++ b/html/search/typedefs_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['polygon2d_760',['Polygon2d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html#ac1ef77832033c8e89498cf87b6e0e08e',1,'ostk::mathematics::geometry::d2::object::Polygon2d()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae4c84293a1f85b2e2c0d2e8aa5f281c0',1,'ostk::mathematics::geometry::d3::object::Polygon2d()']]] + ['polygon2d_792',['Polygon2d',['../namespaceostk_1_1mathematics_1_1geometry_1_1d2_1_1object.html#ac1ef77832033c8e89498cf87b6e0e08e',1,'ostk::mathematics::geometry::d2::object::Polygon2d()'],['../namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1object.html#ae4c84293a1f85b2e2c0d2e8aa5f281c0',1,'ostk::mathematics::geometry::d3::object::Polygon2d()']]] ]; diff --git a/html/search/typedefs_5.js b/html/search/typedefs_5.js index e86ebfa1..c18970f9 100644 --- a/html/search/typedefs_5.js +++ b/html/search/typedefs_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['ring_761',['Ring',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e1a66ca47ea2cd18df9898d2d7ab014',1,'ostk::mathematics::geometry::d2::object::Polygon::Ring()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0def0d0862a7b5a429699d9e49b09edf',1,'ostk::mathematics::geometry::d3::object::Polygon::Ring()']]], - ['rowvectorxd_762',['RowVectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a9be86062a33aac0443deff367090b0a2',1,'ostk::mathematics::object']]] + ['ring_793',['Ring',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#a4e1a66ca47ea2cd18df9898d2d7ab014',1,'ostk::mathematics::geometry::d2::object::Polygon::Ring()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a0def0d0862a7b5a429699d9e49b09edf',1,'ostk::mathematics::geometry::d3::object::Polygon::Ring()']]], + ['rowvectorxd_794',['RowVectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a9be86062a33aac0443deff367090b0a2',1,'ostk::mathematics::object']]] ]; diff --git a/html/search/typedefs_6.js b/html/search/typedefs_6.js index 7e079b17..9859e9cd 100644 --- a/html/search/typedefs_6.js +++ b/html/search/typedefs_6.js @@ -1,7 +1,7 @@ var searchData= [ - ['solution_763',['Solution',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aef6d06e4478e44fbe3354dbe8f80b94d',1,'ostk::mathematics::solver::NumericalSolver']]], - ['statevector_764',['StateVector',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a321c69ab0db9e09939b690580685a4b9',1,'ostk::mathematics::solver::NumericalSolver']]], - ['stepper_5ftype_5f4_765',['stepper_type_4',['../namespaceostk_1_1mathematics_1_1solver.html#a239397c5452cb7026b6b7bd5909c49ea',1,'ostk::mathematics::solver']]], - ['systemofequationswrapper_766',['SystemOfEquationsWrapper',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af087a68c505e3da6f7ebfd0cfb1d2ef5',1,'ostk::mathematics::solver::NumericalSolver']]] + ['solution_795',['Solution',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#aef6d06e4478e44fbe3354dbe8f80b94d',1,'ostk::mathematics::solver::NumericalSolver']]], + ['statevector_796',['StateVector',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a321c69ab0db9e09939b690580685a4b9',1,'ostk::mathematics::solver::NumericalSolver']]], + ['stepper_5ftype_5f4_797',['stepper_type_4',['../namespaceostk_1_1mathematics_1_1solver.html#a239397c5452cb7026b6b7bd5909c49ea',1,'ostk::mathematics::solver']]], + ['systemofequationswrapper_798',['SystemOfEquationsWrapper',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#af087a68c505e3da6f7ebfd0cfb1d2ef5',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/typedefs_7.js b/html/search/typedefs_7.js index acd0ec84..d0bb38b2 100644 --- a/html/search/typedefs_7.js +++ b/html/search/typedefs_7.js @@ -1,13 +1,13 @@ var searchData= [ - ['vector2d_767',['Vector2d',['../namespaceostk_1_1mathematics_1_1object.html#ac86e8f85187dc85c1f935627d56c1beb',1,'ostk::mathematics::object']]], - ['vector2i_768',['Vector2i',['../namespaceostk_1_1mathematics_1_1object.html#ad80cd7b98ff80674edeb802fc9cda7df',1,'ostk::mathematics::object']]], - ['vector3d_769',['Vector3d',['../namespaceostk_1_1mathematics_1_1object.html#a69d9a055814e9440af219eff448c6c23',1,'ostk::mathematics::object']]], - ['vector3i_770',['Vector3i',['../namespaceostk_1_1mathematics_1_1object.html#ac4d313022be5530ea8ff4587b1738177',1,'ostk::mathematics::object']]], - ['vector4d_771',['Vector4d',['../namespaceostk_1_1mathematics_1_1object.html#a4a69dcd1bf9592d64b93139e22f15beb',1,'ostk::mathematics::object']]], - ['vector4i_772',['Vector4i',['../namespaceostk_1_1mathematics_1_1object.html#a3eb95cd6c5c7d6642071579eadd72e6f',1,'ostk::mathematics::object']]], - ['vector6d_773',['Vector6d',['../namespaceostk_1_1mathematics_1_1object.html#a709e40375d597c36635def856021a648',1,'ostk::mathematics::object']]], - ['vectorxd_774',['VectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a7353155bb00668655919bf5698f74c84',1,'ostk::mathematics::object']]], - ['vectorxi_775',['VectorXi',['../namespaceostk_1_1mathematics_1_1object.html#a2b9807c143e8b3bf0dba3aeab50baa57',1,'ostk::mathematics::object']]], - ['vertex_776',['Vertex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adf15f8325e848f3c4e310169aa8e0657',1,'ostk::mathematics::geometry::d2::object::Polygon::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ad7320e905fa787d1ccdadefd58ceac7b',1,'ostk::mathematics::geometry::d3::object::Cuboid::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a33d84704d7e18430f2a86399103eb84d',1,'ostk::mathematics::geometry::d3::object::Polygon::Vertex()']]] + ['vector2d_799',['Vector2d',['../namespaceostk_1_1mathematics_1_1object.html#ac86e8f85187dc85c1f935627d56c1beb',1,'ostk::mathematics::object']]], + ['vector2i_800',['Vector2i',['../namespaceostk_1_1mathematics_1_1object.html#ad80cd7b98ff80674edeb802fc9cda7df',1,'ostk::mathematics::object']]], + ['vector3d_801',['Vector3d',['../namespaceostk_1_1mathematics_1_1object.html#a69d9a055814e9440af219eff448c6c23',1,'ostk::mathematics::object']]], + ['vector3i_802',['Vector3i',['../namespaceostk_1_1mathematics_1_1object.html#ac4d313022be5530ea8ff4587b1738177',1,'ostk::mathematics::object']]], + ['vector4d_803',['Vector4d',['../namespaceostk_1_1mathematics_1_1object.html#a4a69dcd1bf9592d64b93139e22f15beb',1,'ostk::mathematics::object']]], + ['vector4i_804',['Vector4i',['../namespaceostk_1_1mathematics_1_1object.html#a3eb95cd6c5c7d6642071579eadd72e6f',1,'ostk::mathematics::object']]], + ['vector6d_805',['Vector6d',['../namespaceostk_1_1mathematics_1_1object.html#a709e40375d597c36635def856021a648',1,'ostk::mathematics::object']]], + ['vectorxd_806',['VectorXd',['../namespaceostk_1_1mathematics_1_1object.html#a7353155bb00668655919bf5698f74c84',1,'ostk::mathematics::object']]], + ['vectorxi_807',['VectorXi',['../namespaceostk_1_1mathematics_1_1object.html#a2b9807c143e8b3bf0dba3aeab50baa57',1,'ostk::mathematics::object']]], + ['vertex_808',['Vertex',['../classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon.html#adf15f8325e848f3c4e310169aa8e0657',1,'ostk::mathematics::geometry::d2::object::Polygon::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid.html#ad7320e905fa787d1ccdadefd58ceac7b',1,'ostk::mathematics::geometry::d3::object::Cuboid::Vertex()'],['../classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon.html#a33d84704d7e18430f2a86399103eb84d',1,'ostk::mathematics::geometry::d3::object::Polygon::Vertex()']]] ]; diff --git a/html/search/variables_0.js b/html/search/variables_0.js index 15d0d858..4c206c55 100644 --- a/html/search/variables_0.js +++ b/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['absolutetolerance_5f_741',['absoluteTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae0fbf398e8fee698ba27d6675cd11217',1,'ostk::mathematics::solver::NumericalSolver']]] + ['absolutetolerance_5f_773',['absoluteTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ae0fbf398e8fee698ba27d6675cd11217',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/variables_1.js b/html/search/variables_1.js index cc42227f..0d6a1789 100644 --- a/html/search/variables_1.js +++ b/html/search/variables_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['logtype_5f_742',['logType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7e2b0144bf211d31e61aa932ee900ba1',1,'ostk::mathematics::solver::NumericalSolver']]] + ['logtype_5f_774',['logType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a7e2b0144bf211d31e61aa932ee900ba1',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/variables_2.js b/html/search/variables_2.js index 5c9d2e1a..df9c6c4a 100644 --- a/html/search/variables_2.js +++ b/html/search/variables_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['relativetolerance_5f_743',['relativeTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a45eb77bb99f110923f802b93556747f0',1,'ostk::mathematics::solver::NumericalSolver']]] + ['relativetolerance_5f_775',['relativeTolerance_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a45eb77bb99f110923f802b93556747f0',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/variables_3.js b/html/search/variables_3.js index 10e1c51f..ca9dd131 100644 --- a/html/search/variables_3.js +++ b/html/search/variables_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['steppertype_5f_744',['stepperType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad99c1d09276752b4cf3bb1291c54e138',1,'ostk::mathematics::solver::NumericalSolver']]] + ['steppertype_5f_776',['stepperType_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#ad99c1d09276752b4cf3bb1291c54e138',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/html/search/variables_4.js b/html/search/variables_4.js index 2833f3f2..3f060f04 100644 --- a/html/search/variables_4.js +++ b/html/search/variables_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['timestep_5f_745',['timeStep_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a5f05521e24c29047c899ddffa410b614',1,'ostk::mathematics::solver::NumericalSolver']]] + ['timestep_5f_777',['timeStep_',['../classostk_1_1mathematics_1_1solver_1_1_numerical_solver.html#a5f05521e24c29047c899ddffa410b614',1,'ostk::mathematics::solver::NumericalSolver']]] ]; diff --git a/latex/_euler_angle_8cpp.tex b/latex/_euler_angle_8cpp.tex new file mode 100644 index 00000000..763c04e7 --- /dev/null +++ b/latex/_euler_angle_8cpp.tex @@ -0,0 +1,28 @@ +\hypertarget{_euler_angle_8cpp}{}\doxysection{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.cpp File Reference} +\label{_euler_angle_8cpp}\index{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.cpp@{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.cpp}} +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Error.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Utility.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Quaternion.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Matrix.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Vector.\+hpp$>$}\newline +\doxysubsection*{Namespaces} +\begin{DoxyCompactItemize} +\item + \mbox{\hyperlink{namespaceostk}{ostk}} +\begin{DoxyCompactList}\small\item\em Apache License 2.\+0. \end{DoxyCompactList}\item + \mbox{\hyperlink{namespaceostk_1_1mathematics}{ostk\+::mathematics}} +\item + \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry}{ostk\+::mathematics\+::geometry}} +\item + \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3}{ostk\+::mathematics\+::geometry\+::d3}} +\item + \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation}{ostk\+::mathematics\+::geometry\+::d3\+::transformation}} +\item + \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation}} +\end{DoxyCompactItemize} +\doxysubsection*{Functions} +\begin{DoxyCompactItemize} +\item +std\+::ostream \& \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a4039583c5e12d44db90af36b8420cffd}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$<$$<$}} (std\+::ostream \&an\+Output\+Stream, const Euler\+Angle \&a\+Euler\+Angle) +\end{DoxyCompactItemize} diff --git a/latex/_euler_angle_8hpp.tex b/latex/_euler_angle_8hpp.tex index f2f21fb1..da3d3e66 100644 --- a/latex/_euler_angle_8hpp.tex +++ b/latex/_euler_angle_8hpp.tex @@ -1,5 +1,15 @@ \hypertarget{_euler_angle_8hpp}{}\doxysection{include/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.hpp File Reference} \label{_euler_angle_8hpp}\index{include/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.hpp@{include/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/EulerAngle.hpp}} +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Type/\+Integer.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Type/\+Real.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Type/\+String.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/\+Angle.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Object/\+Vector.\+hpp$>$}\newline +\doxysubsection*{Classes} +\begin{DoxyCompactItemize} +\item +class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle}} +\begin{DoxyCompactList}\small\item\em Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} (intrinsic rotation) \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Namespaces} \begin{DoxyCompactItemize} \item diff --git a/latex/_quaternion_8cpp.tex b/latex/_quaternion_8cpp.tex index 4fe8a1bc..5f3f4ebf 100644 --- a/latex/_quaternion_8cpp.tex +++ b/latex/_quaternion_8cpp.tex @@ -2,6 +2,7 @@ \label{_quaternion_8cpp}\index{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/Quaternion.cpp@{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/Quaternion.cpp}} {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Error.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Utility.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Quaternion.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Matrix.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Vector.\+hpp$>$}\newline diff --git a/latex/_rotation_matrix_8cpp.tex b/latex/_rotation_matrix_8cpp.tex index b02103b5..955ab3d6 100644 --- a/latex/_rotation_matrix_8cpp.tex +++ b/latex/_rotation_matrix_8cpp.tex @@ -2,6 +2,7 @@ \label{_rotation_matrix_8cpp}\index{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/RotationMatrix.cpp@{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/RotationMatrix.cpp}} {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Error.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Utility.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Quaternion.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Matrix.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Vector.\+hpp$>$}\newline diff --git a/latex/_rotation_vector_8cpp.tex b/latex/_rotation_vector_8cpp.tex index 02571268..54b47221 100644 --- a/latex/_rotation_vector_8cpp.tex +++ b/latex/_rotation_vector_8cpp.tex @@ -2,6 +2,7 @@ \label{_rotation_vector_8cpp}\index{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/RotationVector.cpp@{src/OpenSpaceToolkit/Mathematics/Geometry/3D/Transformation/Rotation/RotationVector.cpp}} {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Error.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Core/\+Utility.\+hpp$>$}\newline +{\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Euler\+Angle.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Quaternion.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Matrix.\+hpp$>$}\newline {\ttfamily \#include $<$Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\+Rotation\+Vector.\+hpp$>$}\newline diff --git a/latex/_rotation_vector_8hpp.tex b/latex/_rotation_vector_8hpp.tex index 204e784b..bb1e5148 100644 --- a/latex/_rotation_vector_8hpp.tex +++ b/latex/_rotation_vector_8hpp.tex @@ -8,7 +8,7 @@ \begin{DoxyCompactItemize} \item class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector}} -\begin{DoxyCompactList}\small\item\em Rotation vector. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Rotation Vector. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Namespaces} \begin{DoxyCompactItemize} \item diff --git a/latex/annotated.tex b/latex/annotated.tex index 212a22c5..9a305189 100644 --- a/latex/annotated.tex +++ b/latex/annotated.tex @@ -8,6 +8,7 @@ \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline}{ostk\+::mathematics\+::curvefitting\+::interpolator\+::\+Cubic\+Spline}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline}{Cubic\+Spline}} }{\pageref{classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Cuboid}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid}{Cuboid}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Ellipsoid}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid}{Ellipsoid}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid}}{} +\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle}} \\*Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} (intrinsic rotation) }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}}{} \item\contentsline{section}{\mbox{\hyperlink{structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Point\+Set\+::\+Hasher}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point}{Point}} hasher }{\pageref{structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher}}{} \item\contentsline{section}{\mbox{\hyperlink{structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Point\+Set\+::\+Hasher}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}{Point}} hasher }{\pageref{structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1curvefitting_1_1_interpolator}{ostk\+::mathematics\+::curvefitting\+::\+Interpolator}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1curvefitting_1_1_interpolator}{Interpolator}} (abstract class) }{\pageref{classostk_1_1mathematics_1_1curvefitting_1_1_interpolator}}{} @@ -28,17 +29,17 @@ \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Plane}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane}{Plane}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Point}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point}{Point}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Point}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}{Point}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}}{} -\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Point\+Set}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}{Point}} set }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Point\+Set}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point}{Point}} set }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set}}{} +\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Point\+Set}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point}{Point}} set }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Polygon}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon}{Polygon}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Polygon}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon}{Polygon}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Pyramid}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid}{Pyramid}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Ray}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray}{Ray}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Matrix}} \\*Rotation matrix }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}}{} -\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector}} \\*Rotation vector }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}}{} -\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Segment}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}{Segment}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}}{} +\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector}} \\*Rotation Vector }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Segment}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment}{Segment}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment}}{} +\item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::\+Segment}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}{Segment}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::\+Sphere}} \\*\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere}{Sphere}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation}{ostk\+::mathematics\+::geometry\+::d3\+::\+Transformation}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation}}{} \item\contentsline{section}{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation}{ostk\+::mathematics\+::geometry\+::d2\+::\+Transformation}} }{\pageref{classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation}}{} diff --git a/latex/classostk_1_1mathematics_1_1geometry_1_1_angle.tex b/latex/classostk_1_1mathematics_1_1geometry_1_1_angle.tex index a3ab30f7..3a34d11e 100644 --- a/latex/classostk_1_1mathematics_1_1geometry_1_1_angle.tex +++ b/latex/classostk_1_1mathematics_1_1geometry_1_1_angle.tex @@ -55,6 +55,10 @@ \item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a17449f940c75bc182a9eaa069ae59342}{is\+Zero}} () const \item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a80267bbfcf53ac84f70e8c64c0ae4162}{is\+Negative}} () const +\begin{DoxyCompactList}\small\item\em Check if angle is negative. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a93759a5dc36449aaa68d749d270fa736}{is\+Near}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Tolerance) const +\begin{DoxyCompactList}\small\item\em Check if angles are near within an angular tolerance. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_aaf5a6fca6315e78ec77c6b4bbc3dd5c9}{get\+Unit}} () const \item Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a5a4a660668c35df6cc2ad47e02727b7e}{in}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&a\+Unit) const @@ -301,6 +305,54 @@ \doxysubsubsection{\texorpdfstring{isDefined()}{isDefined()}} {\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::\+Angle\+::is\+Defined (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1_angle_a93759a5dc36449aaa68d749d270fa736}\label{classostk_1_1mathematics_1_1geometry_1_1_angle_a93759a5dc36449aaa68d749d270fa736}} +\index{ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}!isNear@{isNear}} +\index{isNear@{isNear}!ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}} +\doxysubsubsection{\texorpdfstring{isNear()}{isNear()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::\+Angle\+::is\+Near (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{an\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Tolerance }\end{DoxyParamCaption}) const} + + + +Check if angles are near within an angular tolerance. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a8e6ae32f87c8dd9dbb5b13f0403bb93b}{Angle::Zero}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a93759a5dc36449aaa68d749d270fa736}{isNear}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(2.0)} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em an\+Angle} & An angle \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Tolerance} & A tolerance \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +True if angles are near +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1_angle_a80267bbfcf53ac84f70e8c64c0ae4162}\label{classostk_1_1mathematics_1_1geometry_1_1_angle_a80267bbfcf53ac84f70e8c64c0ae4162}} +\index{ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}!isNegative@{isNegative}} +\index{isNegative@{isNegative}!ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}} +\doxysubsubsection{\texorpdfstring{isNegative()}{isNegative()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::\+Angle\+::is\+Negative (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Check if angle is negative. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a8e6ae32f87c8dd9dbb5b13f0403bb93b}{Angle::Zero}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a80267bbfcf53ac84f70e8c64c0ae4162}{isNegative}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +True if angle is negative +\end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1_angle_a17449f940c75bc182a9eaa069ae59342}\label{classostk_1_1mathematics_1_1geometry_1_1_angle_a17449f940c75bc182a9eaa069ae59342}} \index{ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}!isZero@{isZero}} \index{isZero@{isZero}!ostk::mathematics::geometry::Angle@{ostk::mathematics::geometry::Angle}} diff --git a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.tex b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.tex new file mode 100644 index 00000000..436e37bc --- /dev/null +++ b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle.tex @@ -0,0 +1,698 @@ +\hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{}\doxysection{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::Euler\+Angle Class Reference} +\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} + + +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} (intrinsic rotation) + + + + +{\ttfamily \#include $<$Euler\+Angle.\+hpp$>$} + +\doxysubsection*{Public Types} +\begin{DoxyCompactItemize} +\item +enum \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Axis\+Sequence}} \{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360}{Axis\+Sequence\+::\+Undefined}}, +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be}{Axis\+Sequence\+::\+X\+YZ}}, +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3}{Axis\+Sequence\+::\+Z\+XY}}, +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{Axis\+Sequence\+::\+Z\+YX}} + \} +\end{DoxyCompactItemize} +\doxysubsection*{Public Member Functions} +\begin{DoxyCompactItemize} +\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a7d88d303ded4e39e598cdf566796cc9e}{Euler\+Angle}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+First\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Second\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Third\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles and axis sequence. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_aef0ee3faab6cf338e6c3fef716160378}{Euler\+Angle}} (const Vector3d \&a\+Vector, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&an\+Angle\+Unit, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from vector of angles and axis sequence. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a487434e408dd6301e624305f9708a1b2}{operator==}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&a\+Euler\+Angle) const +\begin{DoxyCompactList}\small\item\em Equal to operator. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5adfa3b7def412a62f25fcb4d154f160}{operator!=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&a\+Euler\+Angle) const +\begin{DoxyCompactList}\small\item\em Not equal to operator. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5140298e4d18f9b63fe1791e2785938c}{is\+Defined}} () const +\begin{DoxyCompactList}\small\item\em Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is defined. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a75a6bd4f088b43ba2f9e7a9a1a963e64}{is\+Unitary}} () const +\begin{DoxyCompactList}\small\item\em Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is unitary. \end{DoxyCompactList}\item +bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ab25e5b93b6cff6716c08d5b9de4ab2c5}{is\+Near}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&a\+Euler\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angular\+Tolerance) const +\begin{DoxyCompactList}\small\item\em Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is equal to another Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} within a given angular tolerance. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6a2ec66eea87c4645cc7815c82d09d0e}{get\+Phi}} () const +\begin{DoxyCompactList}\small\item\em Get first angle of rotation (phi) \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a13a35f51cad01171184a1feb3910b68b}{get\+Theta}} () const +\begin{DoxyCompactList}\small\item\em Get second angle of rotation (theta) \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a21bb162e148332ca5c36fe4ec1d9de58}{get\+Psi}} () const +\begin{DoxyCompactList}\small\item\em Get third angle of rotation (psi) \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Axis\+Sequence}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a959afa9de94bff84008813662da769e0}{get\+Axis\+Sequence}} () const +\begin{DoxyCompactList}\small\item\em Get axis sequence. \end{DoxyCompactList}\item +Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a511d16a1d248592a98f6fd3345bd7547}{to\+Vector}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&an\+Angle\+Unit) const +\begin{DoxyCompactList}\small\item\em Return vector containing the three angles. \end{DoxyCompactList}\item +String \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6ef0461c00dd105f6c38fe5a2ee22c94}{to\+String}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&an\+Angle\+Unit=\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8}{Angle\+::\+Unit\+::\+Degree}}) const +\begin{DoxyCompactList}\small\item\em Return string form of Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{[}phi; theta; psi\mbox{]}. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Static Public Member Functions} +\begin{DoxyCompactItemize} +\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a65f9ff57748fe200180b4c7ffee03dd5}{Undefined}} () +\begin{DoxyCompactList}\small\item\em Construct undefined Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{Unit}} () +\begin{DoxyCompactList}\small\item\em Construct unitary Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad67a6f747c305d3528a7d9639ce14bf4}{X\+YZ}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+First\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Second\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Third\+Angle) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following X\+YZ sequence. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5c480a99e25a582539a3d23bbc1cfaad}{Z\+XY}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+First\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Second\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Third\+Angle) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following Z\+XY sequence. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5a32a18b2e11e5cce47df3f651e22fe8}{Z\+YX}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+First\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Second\+Angle, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Third\+Angle) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following Z\+YX sequence. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a046912d1e2a21205e51d070b186630f6}{Quaternion}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{rotation\+::\+Quaternion}} \&a\+Quaternion, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from Rotation Matrix. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac8579cff213d96389fcb8daa84d81063}{Rotation\+Vector}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{rotation\+::\+Rotation\+Vector}} \&a\+Rotation\+Vector, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad52bbd103ee414308394cd4c9e9848c9}{Rotation\+Matrix}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{rotation\+::\+Rotation\+Matrix}} \&a\+Rotation\+Matrix, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from Rotation Vector. \end{DoxyCompactList}\item +static String \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_af8605f8fa6810bdf2043cdb8b4b2f2a2}{String\+From\+Axis\+Sequence}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&an\+Axis\+Sequence) +\begin{DoxyCompactList}\small\item\em Construct a string representation of an axis sequence. \end{DoxyCompactList}\end{DoxyCompactItemize} +\doxysubsection*{Friends} +\begin{DoxyCompactItemize} +\item +std\+::ostream \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a88d18669eb768c7f71a92df68c886202}{operator$<$$<$}} (std\+::ostream \&an\+Output\+Stream, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&a\+Euler\+Angle) +\begin{DoxyCompactList}\small\item\em Output stream operator. \end{DoxyCompactList}\end{DoxyCompactItemize} + + +\doxysubsection{Detailed Description} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} (intrinsic rotation) + +\begin{DoxyVerb} Implementation from "Fundamentals of Spacecraft Attitude Determination and Control", + F. Landis Markley and John L. Crassidis, Springer +\end{DoxyVerb} + + +\href{https://en.wikipedia.org/wiki/Euler_angles}{\texttt{ https\+://en.\+wikipedia.\+org/wiki/\+Euler\+\_\+angles}} \href{https://en.wikipedia.org/wiki/Euler_angles\#Conventions_by_intrinsic_rotations}{\texttt{ https\+://en.\+wikipedia.\+org/wiki/\+Euler\+\_\+angles\#\+Conventions\+\_\+by\+\_\+intrinsic\+\_\+rotations}} + +\doxysubsection{Member Enumeration Documentation} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!AxisSequence@{AxisSequence}} +\index{AxisSequence@{AxisSequence}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{AxisSequence}{AxisSequence}} +{\footnotesize\ttfamily enum \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Axis\+Sequence}}\hspace{0.3cm}{\ttfamily [strong]}} + +\begin{DoxyEnumFields}{Enumerator} +\raisebox{\heightof{T}}[0pt][0pt]{\index{Undefined@{Undefined}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}}\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!Undefined@{Undefined}}}\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168caec0fc0100c4fc1ce4eea230c3dc10360}} +Undefined&Undefined sequence. \\ +\hline + +\raisebox{\heightof{T}}[0pt][0pt]{\index{XYZ@{XYZ}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}}\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!XYZ@{XYZ}}}\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168cae65075d550f9b5bf9992fa1d71a131be}} +X\+YZ&X -\/$>$ Y -\/$>$ Z sequence. \\ +\hline + +\raisebox{\heightof{T}}[0pt][0pt]{\index{ZXY@{ZXY}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}}\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!ZXY@{ZXY}}}\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca07bb28478030fc8b86da84000c9860d3}} +Z\+XY&Z -\/$>$ X -\/$>$ Y sequence. \\ +\hline + +\raisebox{\heightof{T}}[0pt][0pt]{\index{ZYX@{ZYX}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}}\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!ZYX@{ZYX}}}\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}} +Z\+YX&Z -\/$>$ Y -\/$>$ X sequence. \\ +\hline + +\end{DoxyEnumFields} + + +\doxysubsection{Constructor \& Destructor Documentation} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a7d88d303ded4e39e598cdf566796cc9e}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a7d88d303ded4e39e598cdf566796cc9e}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!EulerAngle@{EulerAngle}} +\index{EulerAngle@{EulerAngle}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{EulerAngle()}{EulerAngle()}\hspace{0.1cm}{\footnotesize\ttfamily [1/2]}} +{\footnotesize\ttfamily ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Euler\+Angle (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+First\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Second\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Third\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles and axis sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a7d88d303ded4e39e598cdf566796cc9e}{EulerAngle}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(2.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(3.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}}} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+First\+Angle} & A first angle (phi) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Second\+Angle} & A second angle (theta) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Third\+Angle} & A third angle (psi) \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_aef0ee3faab6cf338e6c3fef716160378}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_aef0ee3faab6cf338e6c3fef716160378}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!EulerAngle@{EulerAngle}} +\index{EulerAngle@{EulerAngle}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{EulerAngle()}{EulerAngle()}\hspace{0.1cm}{\footnotesize\ttfamily [2/2]}} +{\footnotesize\ttfamily ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Euler\+Angle (\begin{DoxyParamCaption}\item[{const Vector3d \&}]{a\+Vector, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&}]{an\+Angle\+Unit, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from vector of angles and axis sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a7d88d303ded4e39e598cdf566796cc9e}{EulerAngle}}(} +\DoxyCodeLine{ \{1.0, 0.0, 0.0\},} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8}{Angle::Unit::Degree}},} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}}} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Vector} & A vector of angles \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Angle\+Unit} & An angle unit \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} + + +\doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a959afa9de94bff84008813662da769e0}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a959afa9de94bff84008813662da769e0}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!getAxisSequence@{getAxisSequence}} +\index{getAxisSequence@{getAxisSequence}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{getAxisSequence()}{getAxisSequence()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::get\+Axis\+Sequence (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Get axis sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a959afa9de94bff84008813662da769e0}{getAxisSequence}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Axis sequence (e.\+g, Z\+YX) +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6a2ec66eea87c4645cc7815c82d09d0e}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6a2ec66eea87c4645cc7815c82d09d0e}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!getPhi@{getPhi}} +\index{getPhi@{getPhi}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{getPhi()}{getPhi()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::get\+Phi (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Get first angle of rotation (phi) + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6a2ec66eea87c4645cc7815c82d09d0e}{getPhi}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +First angle of rotation +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a21bb162e148332ca5c36fe4ec1d9de58}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a21bb162e148332ca5c36fe4ec1d9de58}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!getPsi@{getPsi}} +\index{getPsi@{getPsi}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{getPsi()}{getPsi()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::get\+Psi (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Get third angle of rotation (psi) + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a21bb162e148332ca5c36fe4ec1d9de58}{getPsi}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Third angle of rotation +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a13a35f51cad01171184a1feb3910b68b}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a13a35f51cad01171184a1feb3910b68b}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!getTheta@{getTheta}} +\index{getTheta@{getTheta}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{getTheta()}{getTheta()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::get\+Theta (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Get second angle of rotation (theta) + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a13a35f51cad01171184a1feb3910b68b}{getTheta}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Second angle of rotation +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5140298e4d18f9b63fe1791e2785938c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5140298e4d18f9b63fe1791e2785938c}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!isDefined@{isDefined}} +\index{isDefined@{isDefined}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{isDefined()}{isDefined()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::is\+Defined (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is defined. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5140298e4d18f9b63fe1791e2785938c}{isDefined}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +True if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is defined +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ab25e5b93b6cff6716c08d5b9de4ab2c5}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ab25e5b93b6cff6716c08d5b9de4ab2c5}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!isNear@{isNear}} +\index{isNear@{isNear}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{isNear()}{isNear()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::is\+Near (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&}]{a\+Euler\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{an\+Angular\+Tolerance }\end{DoxyParamCaption}) const} + + + +Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is equal to another Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} within a given angular tolerance. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ab25e5b93b6cff6716c08d5b9de4ab2c5}{isNear}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}(),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1e-\/6)} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Angular\+Tolerance} & An angular tolerance \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +True if equal within given angular tolerance +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a75a6bd4f088b43ba2f9e7a9a1a963e64}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a75a6bd4f088b43ba2f9e7a9a1a963e64}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!isUnitary@{isUnitary}} +\index{isUnitary@{isUnitary}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{isUnitary()}{isUnitary()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::is\+Unitary (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Check if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is unitary. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a75a6bd4f088b43ba2f9e7a9a1a963e64}{isUnitary}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +True if Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} is unitary +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5adfa3b7def412a62f25fcb4d154f160}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5adfa3b7def412a62f25fcb4d154f160}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!operator"!=@{operator"!=}} +\index{operator"!=@{operator"!=}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{operator"!=()}{operator!=()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::operator!= (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption}) const} + + + +Not equal to operator. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}() != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}();} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +True if Euler Angles are not equal +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a487434e408dd6301e624305f9708a1b2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a487434e408dd6301e624305f9708a1b2}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!operator==@{operator==}} +\index{operator==@{operator==}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{operator==()}{operator==()}} +{\footnotesize\ttfamily bool ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::operator== (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption}) const} + + + +Equal to operator. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}() == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}();} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +True if Euler Angles are equal +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a046912d1e2a21205e51d070b186630f6}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a046912d1e2a21205e51d070b186630f6}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!Quaternion@{Quaternion}} +\index{Quaternion@{Quaternion}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{Quaternion()}{Quaternion()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Quaternion (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{rotation\+::\+Quaternion}} \&}]{a\+Quaternion, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from Rotation Matrix. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad52bbd103ee414308394cd4c9e9848c9}{EulerAngle::RotationMatrix}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}(),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}}} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad52bbd103ee414308394cd4c9e9848c9}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad52bbd103ee414308394cd4c9e9848c9}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!RotationMatrix@{RotationMatrix}} +\index{RotationMatrix@{RotationMatrix}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{RotationMatrix()}{RotationMatrix()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Rotation\+Matrix (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{rotation\+::\+Rotation\+Matrix}} \&}]{a\+Rotation\+Matrix, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from Rotation Vector. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac8579cff213d96389fcb8daa84d81063}{EulerAngle::RotationVector}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}(),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}}} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac8579cff213d96389fcb8daa84d81063}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac8579cff213d96389fcb8daa84d81063}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!RotationVector@{RotationVector}} +\index{RotationVector@{RotationVector}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{RotationVector()}{RotationVector()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Rotation\+Vector (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{rotation\+::\+Rotation\+Vector}} \&}]{a\+Rotation\+Vector, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a046912d1e2a21205e51d070b186630f6}{EulerAngle::Quaternion}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}(),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}}} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_af8605f8fa6810bdf2043cdb8b4b2f2a2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_af8605f8fa6810bdf2043cdb8b4b2f2a2}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!StringFromAxisSequence@{StringFromAxisSequence}} +\index{StringFromAxisSequence@{StringFromAxisSequence}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{StringFromAxisSequence()}{StringFromAxisSequence()}} +{\footnotesize\ttfamily String ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+String\+From\+Axis\+Sequence (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168c}{Euler\+Angle\+::\+Axis\+Sequence}} \&}]{an\+Axis\+Sequence }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct a string representation of an axis sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_af8605f8fa6810bdf2043cdb8b4b2f2a2}{EulerAngle::StringFromAxisSequence}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ac0be9aa2bd8691e11c6b2838709c168ca6811254e01b3550bdb2dc46f204730dc}{EulerAngle::AxisSequence::ZYX}});} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em an\+Axis\+Sequence} & An axis sequence \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +String representation of axis sequence +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6ef0461c00dd105f6c38fe5a2ee22c94}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6ef0461c00dd105f6c38fe5a2ee22c94}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!toString@{toString}} +\index{toString@{toString}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{toString()}{toString()}} +{\footnotesize\ttfamily String ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::to\+String (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&}]{an\+Angle\+Unit = {\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8}{Angle\+::\+Unit\+::\+Degree}}} }\end{DoxyParamCaption}) const} + + + +Return string form of Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{[}phi; theta; psi\mbox{]}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a6ef0461c00dd105f6c38fe5a2ee22c94}{toString}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8}{Angle::Unit::Degree}});} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em (optional)} & an\+Angle\+Unit An angle unit \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +String from of Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a511d16a1d248592a98f6fd3345bd7547}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a511d16a1d248592a98f6fd3345bd7547}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!toVector@{toVector}} +\index{toVector@{toVector}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{toVector()}{toVector()}} +{\footnotesize\ttfamily Vector3d ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::to\+Vector (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&}]{an\+Angle\+Unit }\end{DoxyParamCaption}) const} + + + +Return vector containing the three angles. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a511d16a1d248592a98f6fd3345bd7547}{toVector}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a6669c4dc00cb161446821b3529ca07d8}{Angle::Unit::Degree}});} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em an\+Angle\+Unit} & An angle unit \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Vector containing the three angles +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a65f9ff57748fe200180b4c7ffee03dd5}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a65f9ff57748fe200180b4c7ffee03dd5}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!Undefined@{Undefined}} +\index{Undefined@{Undefined}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{Undefined()}{Undefined()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Undefined (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct undefined Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a65f9ff57748fe200180b4c7ffee03dd5}{EulerAngle::Undefined}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Undefined Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!Unit@{Unit}} +\index{Unit@{Unit}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{Unit()}{Unit()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Unit (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct unitary Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Unitary Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad67a6f747c305d3528a7d9639ce14bf4}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad67a6f747c305d3528a7d9639ce14bf4}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!XYZ@{XYZ}} +\index{XYZ@{XYZ}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{XYZ()}{XYZ()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+X\+YZ (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+First\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Second\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Third\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following X\+YZ sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_ad67a6f747c305d3528a7d9639ce14bf4}{EulerAngle::XYZ}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(2.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(3.0)} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+First\+Angle} & A first angle (phi) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Second\+Angle} & A second angle (theta) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Third\+Angle} & A third angle (psi) \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5c480a99e25a582539a3d23bbc1cfaad}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5c480a99e25a582539a3d23bbc1cfaad}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!ZXY@{ZXY}} +\index{ZXY@{ZXY}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{ZXY()}{ZXY()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Z\+XY (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+First\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Second\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Third\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following Z\+XY sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5c480a99e25a582539a3d23bbc1cfaad}{EulerAngle::ZXY}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(2.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(3.0)} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+First\+Angle} & A first angle (phi) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Second\+Angle} & A second angle (theta) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Third\+Angle} & A third angle (psi) \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5a32a18b2e11e5cce47df3f651e22fe8}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5a32a18b2e11e5cce47df3f651e22fe8}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!ZYX@{ZYX}} +\index{ZYX@{ZYX}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{ZYX()}{ZYX()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Euler\+Angle\+::\+Z\+YX (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+First\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Second\+Angle, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{a\+Third\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} from angles following Z\+YX sequence. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a5a32a18b2e11e5cce47df3f651e22fe8}{EulerAngle::ZYX}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(1.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(2.0),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(3.0)} +\DoxyCodeLine{);} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+First\+Angle} & A first angle (phi) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Second\+Angle} & A second angle (theta) \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Third\+Angle} & A third angle (psi) \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} +\end{DoxyReturn} + + +\doxysubsection{Friends And Related Function Documentation} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a88d18669eb768c7f71a92df68c886202}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a88d18669eb768c7f71a92df68c886202}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}!operator$<$$<$@{operator$<$$<$}} +\index{operator$<$$<$@{operator$<$$<$}!ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle@{ostk::mathematics::geometry::d3::transformation::rotation::EulerAngle}} +\doxysubsubsection{\texorpdfstring{operator$<$$<$}{operator<<}} +{\footnotesize\ttfamily std\+::ostream\& operator$<$$<$ (\begin{DoxyParamCaption}\item[{std\+::ostream \&}]{an\+Output\+Stream, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [friend]}} + + + +Output stream operator. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}();} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Output stream reference +\end{DoxyReturn} + + +The documentation for this class was generated from the following files\+:\begin{DoxyCompactItemize} +\item +include/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_euler_angle_8hpp}{Euler\+Angle.\+hpp}}\item +src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_euler_angle_8cpp}{Euler\+Angle.\+cpp}}\end{DoxyCompactItemize} diff --git a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.tex b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.tex index b299af31..e76277f7 100644 --- a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.tex +++ b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion.tex @@ -29,26 +29,30 @@ \begin{DoxyCompactList}\small\item\em Equal to operator. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9bd92ff5c1e57bdc7572b2507363bd15}{operator!=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const \begin{DoxyCompactList}\small\item\em Not equal to operator. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a87ad253260d586f019f07b6ae7202e19}{operator+}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const +\begin{DoxyCompactList}\small\item\em Addition operator. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a95aa653a242332b5d3590c81f8819bb8}{operator$\ast$}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const +\begin{DoxyCompactList}\small\item\em Multiplication operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af683f4d97a2b3ead7f82d5a5352ccd66}{operator$\ast$}} (const Vector3d \&a\+Vector) const -\begin{DoxyCompactList}\small\item\em Addition operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Multiplication operator (vector) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afe9742084b6a328cb8fab233a5485122}{operator$\ast$}} (const Real \&a\+Scalar) const \begin{DoxyCompactList}\small\item\em Multiplication operator (scalar) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a410602d95ca3038414e373f689ef47ba}{operator/}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const -\begin{DoxyCompactList}\small\item\em Division operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Division operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a7b03af85a1a62e2fe18eb684c2dc1c5c}{operator$^\wedge$}} (const Real \&a\+Scalar) const -\begin{DoxyCompactList}\small\item\em Power operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Power operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_acf750e6a9664f75b70c4c1afe50eff7d}{operator+=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) -\begin{DoxyCompactList}\small\item\em Addition assignment operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Addition assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a4aa0b88ebd82e92d05210c0b9d5b1cc3}{operator$\ast$=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) -\begin{DoxyCompactList}\small\item\em Multiplication assignment operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Multiplication assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aa6ec77b7da4aa05500e6551a4797bbb3}{operator/=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) -\begin{DoxyCompactList}\small\item\em Division assignment operator (quaternion) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Division assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a25d3f5bd7307918ea70b3b21f80a3001}{is\+Defined}} () const -\begin{DoxyCompactList}\small\item\em Check if quaternion is defined. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is defined. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aea4706c3cc65b5a8e7250a042cb1edaa}{is\+Unitary}} () const -\begin{DoxyCompactList}\small\item\em Check if quaternion is unitary, i.\+e. its norm is equal to 1.\+0. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is unitary (i.\+e., its norm is equal to 1.\+0) \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afab79d88d91c8fc0a6b888a91f0e52bd}{is\+Near}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angular\+Tolerance) const -\begin{DoxyCompactList}\small\item\em Check if quaternion is near a given quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is near another \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adfdffa7d538271cddf839224bcb4e738}{x}} () const \begin{DoxyCompactList}\small\item\em Get first component of vector part. \end{DoxyCompactList}\item Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a10f6aba9001c60d4e106a7989520c03a}{y}} () const @@ -61,53 +65,63 @@ \begin{DoxyCompactList}\small\item\em Get vector part. \end{DoxyCompactList}\item Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af25340ddd9f641d4e3b588b0fa110669}{get\+Scalar\+Part}} () const \begin{DoxyCompactList}\small\item\em Get scalar part. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a76d45236d97aca97432d5e6604cf6acf}{to\+Normalized}} () const +\begin{DoxyCompactList}\small\item\em Calculate normalized \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_abd6b6809b6be6bff26bf99a4c2afbcdb}{to\+Conjugate}} () const +\begin{DoxyCompactList}\small\item\em Calculate conjugate of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a57e55414171904bd5126707ec5b1cb1b}{to\+Inverse}} () const +\begin{DoxyCompactList}\small\item\em Calculate inverse of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a1e858e5dbaf5ac0b3385e76320cc449f}{exp}} () const -\begin{DoxyCompactList}\small\item\em Get normalized quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Calculate exponential of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ad0889624c3960610d94c44c2675fe2d7}{log}} () const -\begin{DoxyCompactList}\small\item\em Get logarithm. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Calculate logarithm of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a8cc3e9ff6728b4857648cf8ffdcc1bc1}{pow}} (const Real \&a\+Value) const -\begin{DoxyCompactList}\small\item\em Get power. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Calculate power of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item +Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adac286e89986a4dc8cd2791c96bcb979}{norm}} () const +\begin{DoxyCompactList}\small\item\em Calculate norm of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3f4cbf44fdc4f0ef7a054ec12a08e9ca}{cross\+Multiply}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const -\begin{DoxyCompactList}\small\item\em Get quaternion norm. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Multiply \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using cross multiplication. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a50c95b29f1d658560a0005ee47d40e3a}{dot\+Multiply}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const -\begin{DoxyCompactList}\small\item\em Multiply quaternion using dot multiplication. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Multiply \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using dot multiplication. \end{DoxyCompactList}\item Real \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adbc57819c76d4b481fc84bb20667b796}{dot\+Product}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const -\begin{DoxyCompactList}\small\item\em Calculate quaternion dot product. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Calculate \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} dot product. \end{DoxyCompactList}\item Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2f204333466437f149ebf1ec186b4c40}{rotate\+Vector}} (const Vector3d \&a\+Vector) const -\begin{DoxyCompactList}\small\item\em Rotate vector using quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Rotate vector using \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item Vector4d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ac23b62bf5637ca0a7a533434641effb3}{to\+Vector}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfc}{Quaternion\+::\+Format}} \&a\+Format=\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion\+::\+Format\+::\+X\+Y\+ZS}}) const -\begin{DoxyCompactList}\small\item\em Convert quaternion to its vector representation. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Convert \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} to its vector representation. \end{DoxyCompactList}\item String \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2aa46fa76d7a9fcbad21db53e7061f45}{to\+String}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfc}{Quaternion\+::\+Format}} \&a\+Format) const -\begin{DoxyCompactList}\small\item\em Convert quaternion to its string representation. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Convert \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} to its string representation. \end{DoxyCompactList}\item String \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_abcc5bbb2b290710f39d2111f155ea8e3}{to\+String}} (const Integer \&a\+Precision=Integer\+::\+Undefined(), const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfc}{Quaternion\+::\+Format}} \&a\+Format=\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion\+::\+Format\+::\+X\+Y\+ZS}}) const \item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a724528ea23c64ba56a077d2a9aeb5529}{normalize}} () -\begin{DoxyCompactList}\small\item\em Normalize quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Normalize \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a593e8387b883d1950674e3e4db8f685a}{conjugate}} () -\begin{DoxyCompactList}\small\item\em Conjugate quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Conjugate \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a08f5634f4f48c927635fe781843260fb}{inverse}} () -\begin{DoxyCompactList}\small\item\em Inverse quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Inverse \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab4698e830342864f4debb6cb5d4c66bd}{rectify}} () -\begin{DoxyCompactList}\small\item\em Rectify quaternion (enforce positive scalar part) \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Rectify \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} (enforce positive scalar part) \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a012834daa1dcccf7a85d69f84b265dfb}{angular\+Difference\+With}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) const -\begin{DoxyCompactList}\small\item\em Get angular difference with quaternion. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Compute angular difference with \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9828e84f2f4b0837912d2a38459e052f}{Undefined}} () -\begin{DoxyCompactList}\small\item\em Constructs an undefined quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct undefined \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Unit}} () -\begin{DoxyCompactList}\small\item\em Constructs a unit quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct unitary \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{X\+Y\+ZS}} (const Real \&a\+First\+Component, const Real \&a\+Second\+Component, const Real \&a\+Third\+Component, const Real \&a\+Fourth\+Component) -\begin{DoxyCompactList}\small\item\em Constructs a quaternion using the vector-\/scalar format. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using the vector-\/scalar format. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aee9309aec1e4543df08f57d40a0e51ed}{Rotation\+Vector}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{rotation\+::\+Rotation\+Vector}} \&a\+Rotation\+Vector) -\begin{DoxyCompactList}\small\item\em Constructs a quaternion from a rotation vector. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from rotation vector. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a6622a7bdc0b5a4a05b1924d8efc4b7d7}{Rotation\+Matrix}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{rotation\+::\+Rotation\+Matrix}} \&a\+Rotation\+Matrix) -\begin{DoxyCompactList}\small\item\em Constructs a rquaternion from a rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from Rotation Matrix. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2d7a76dced15258282988935a8161cbe}{Euler\+Angle}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&a\+Euler\+Angle) +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a5b56dc4ce6a820188901e71d02333651}{Parse}} (const String \&a\+String, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfc}{Quaternion\+::\+Format}} \&a\+Format=\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion\+::\+Format\+::\+X\+Y\+ZS}}) -\begin{DoxyCompactList}\small\item\em Constructs a quaternion from a string. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from string. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a428dd39d288a6b42d9566733e038fb96}{Shortest\+Rotation}} (const Vector3d \&a\+First\+Vector, const Vector3d \&a\+Second\+Vector) -\begin{DoxyCompactList}\small\item\em Constructs a quaternion describing the shortest rotation between two vectors. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} describing the shortest rotation between two vectors. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a106daf1df7b2ee91f1ef3fb0338c8c1a}{L\+E\+RP}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+First\+Quaternion, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Second\+Quaternion, const Real \&a\+Ratio) \begin{DoxyCompactList}\small\item\em Linear interpolator method. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a896500b99a8ab9cf38bc7f402001d41b}{N\+L\+E\+RP}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+First\+Quaternion, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Second\+Quaternion, const Real \&a\+Ratio) @@ -171,7 +185,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \{ 0.0, 0.0, 0.0, 0.1, \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion::Format::XYZS}} \} ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}(0.0, 0.0, 0.0, 0.1, \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion::Format::XYZS}}) ;} \end{DoxyCode} @@ -185,7 +199,7 @@ \hline \mbox{\texttt{ in}} & {\em a\+Fourth\+Component} & A fourth component \\ \hline -\mbox{\texttt{ in}} & {\em a\+Format} & A quaternion format \\ +\mbox{\texttt{ in}} & {\em a\+Format} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} format \\ \hline \end{DoxyParams} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ad3ca378d47be35fa0bf91e9755dd5096}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ad3ca378d47be35fa0bf91e9755dd5096}} @@ -200,7 +214,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \{ \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a4a69dcd1bf9592d64b93139e22f15beb}{Vector4d}}(0.0, 0.0, 0.0, 0.1), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion::Format::XYZS}} \} ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}(\{0.0, 0.0, 0.0, 0.1\}, \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a69f1621be80ba171c61830a76d481bfca11c51ecd5dc6f86ba3c1ae79e21482f5}{Quaternion::Format::XYZS}}) ;} \end{DoxyCode} @@ -208,7 +222,7 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em a\+Vector} & A 4D vector \\ \hline -\mbox{\texttt{ in}} & {\em a\+Format} & A quaternion format \\ +\mbox{\texttt{ in}} & {\em a\+Format} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} format \\ \hline \end{DoxyParams} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a7b05d9472dad47ee5c1bd8f4dd464261}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a7b05d9472dad47ee5c1bd8f4dd464261}} @@ -223,7 +237,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \{ \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 0.0), 1.0 \} ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}(\{0.0, 0.0, 0.0\}, 1.0);} \end{DoxyCode} @@ -245,18 +259,17 @@ -Get angular difference with quaternion. +Compute angular difference with \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a012834daa1dcccf7a85d69f84b265dfb}{angularDifferenceWith}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0,} -\DoxyCodeLine{0.0, 1.0)) ; \textcolor{comment}{// 0.0 [rad]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a012834daa1dcccf7a85d69f84b265dfb}{angularDifferenceWith}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -270,18 +283,16 @@ -Conjugate quaternion. +Conjugate \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118) ; \textcolor{comment}{// [0.0,}} -\DoxyCodeLine{0.0, 0.70710678118, 0.70710678118] quaternion.conjugate() ; \textcolor{comment}{// [0.0, 0.0, -\/0.70710678118,}} -\DoxyCodeLine{0.70710678118]} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a593e8387b883d1950674e3e4db8f685a}{conjugate}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3f4cbf44fdc4f0ef7a054ec12a08e9ca}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3f4cbf44fdc4f0ef7a054ec12a08e9ca}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!crossMultiply@{crossMultiply}} @@ -291,29 +302,19 @@ -Get quaternion norm. +Multiply \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using cross multiplication. \begin{DoxyCode}{0} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, -\/0.70710678118, 0.70710678118).norm() ; \textcolor{comment}{// 1.0}} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @\textcolor{keywordflow}{return} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} norm} -\DoxyCodeLine{} -\DoxyCodeLine{Real norm() \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Multiply quaternion \textcolor{keyword}{using} cross multiplication} -\DoxyCodeLine{ } -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_2 = ...} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_3 = q\_1.crossMultiply(q\_2)} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} +\DoxyCodeLine{Quaternion q\_2 = ...} +\DoxyCodeLine{Quaternion q\_3 = q\_1.crossMultiply(q\_2)} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -327,7 +328,7 @@ -Multiply quaternion using dot multiplication. +Multiply \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using dot multiplication. \begin{DoxyCode}{0} @@ -339,7 +340,7 @@ \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -353,7 +354,7 @@ -Calculate quaternion dot product. +Calculate \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} dot product. \begin{DoxyCode}{0} @@ -365,7 +366,31 @@ \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2d7a76dced15258282988935a8161cbe}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2d7a76dced15258282988935a8161cbe}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!EulerAngle@{EulerAngle}} +\index{EulerAngle@{EulerAngle}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{EulerAngle()}{EulerAngle()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::\+Euler\+Angle (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2d7a76dced15258282988935a8161cbe}{Quaternion::EulerAngle}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}());} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}}} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -379,49 +404,17 @@ -Get normalized quaternion. +Calculate exponential of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.000000000000001).toNormalized() ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @\textcolor{keywordflow}{return} Normalized quaternion} -\DoxyCodeLine{} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} toNormalized() \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Get \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a593e8387b883d1950674e3e4db8f685a}{conjugate}} quaternion} -\DoxyCodeLine{ } -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).toConjugate() ; \textcolor{comment}{// [0.0, 0.0,}} -\DoxyCodeLine{ -\/0.70710678118, 0.70710678118]} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @\textcolor{keywordflow}{return} Conjugate quaternion} -\DoxyCodeLine{} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} toConjugate() \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Get \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a08f5634f4f48c927635fe781843260fb}{inverse}} quaternion} -\DoxyCodeLine{ } -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).toInverse() ; \textcolor{comment}{// [0.0, 0.0,}} -\DoxyCodeLine{ -\/0.70710678118, 0.70710678118]} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @\textcolor{keywordflow}{return} Inverse quaternion} -\DoxyCodeLine{} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} toInverse() \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Get exponential} -\DoxyCodeLine{ } -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_2 = q\_1.exp() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} +\DoxyCodeLine{Quaternion q\_2 = q\_1.exp();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Exponential +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af25340ddd9f641d4e3b588b0fa110669}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af25340ddd9f641d4e3b588b0fa110669}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!getScalarPart@{getScalarPart}} @@ -435,12 +428,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).getScalarPart() ; \textcolor{comment}{// 1.0}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af25340ddd9f641d4e3b588b0fa110669}{getScalarPart}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Scalar part +Real \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3c12f3cb5522ec354d8f2e369135430c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3c12f3cb5522ec354d8f2e369135430c}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!getVectorPart@{getVectorPart}} @@ -454,12 +447,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).getVectorPart() ; \textcolor{comment}{// [0.0, 0.0, 0.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a3c12f3cb5522ec354d8f2e369135430c}{getVectorPart}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Vector part +Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a08f5634f4f48c927635fe781843260fb}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a08f5634f4f48c927635fe781843260fb}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!inverse@{inverse}} @@ -469,18 +462,16 @@ -Inverse quaternion. +Inverse \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118) ; \textcolor{comment}{// [0.0,}} -\DoxyCodeLine{0.0, 0.70710678118, 0.70710678118] quaternion.inverse() ; \textcolor{comment}{// [0.0, 0.0, -\/0.70710678118,}} -\DoxyCodeLine{0.70710678118]} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a08f5634f4f48c927635fe781843260fb}{inverse}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a25d3f5bd7307918ea70b3b21f80a3001}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a25d3f5bd7307918ea70b3b21f80a3001}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!isDefined@{isDefined}} @@ -490,16 +481,16 @@ -Check if quaternion is defined. +Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is defined. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a25d3f5bd7307918ea70b3b21f80a3001}{isDefined}}() ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a25d3f5bd7307918ea70b3b21f80a3001}{isDefined}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -True if quaternion is defined +True if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is defined \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afab79d88d91c8fc0a6b888a91f0e52bd}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afab79d88d91c8fc0a6b888a91f0e52bd}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!isNear@{isNear}} @@ -509,24 +500,26 @@ -Check if quaternion is near a given quaternion. +Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is near another \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afab79d88d91c8fc0a6b888a91f0e52bd}{isNear}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0 + 1e-\/19),} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_ac8d7459ae201e96eabd5e5d86eff5cb0}{Angle::Radians}}(1e-\/6)) ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afab79d88d91c8fc0a6b888a91f0e52bd}{isNear}}(} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0 + 1e-\/19),} +\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_ac8d7459ae201e96eabd5e5d86eff5cb0}{Angle::Radians}}(1e-\/6)} +\DoxyCodeLine{);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \mbox{\texttt{ in}} & {\em an\+Angular\+Tolerance} & An angular tolerance \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -True if quaternions are near each other +True if Quaternions are near each other \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aea4706c3cc65b5a8e7250a042cb1edaa}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aea4706c3cc65b5a8e7250a042cb1edaa}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!isUnitary@{isUnitary}} @@ -536,16 +529,16 @@ -Check if quaternion is unitary, i.\+e. its norm is equal to 1.\+0. +Check if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is unitary (i.\+e., its norm is equal to 1.\+0) \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aea4706c3cc65b5a8e7250a042cb1edaa}{isUnitary}}() ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aea4706c3cc65b5a8e7250a042cb1edaa}{isUnitary}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -True if quaternion is unitary +True if \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} is unitary \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a106daf1df7b2ee91f1ef3fb0338c8c1a}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a106daf1df7b2ee91f1ef3fb0338c8c1a}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!LERP@{LERP}} @@ -561,15 +554,15 @@ \begin{DoxyCode}{0} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} \DoxyCodeLine{Quaternion q\_2 = ...} -\DoxyCodeLine{Quaternion q = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}.LERP(q\_1, q\_2, 0.5)} +\DoxyCodeLine{Quaternion::LERP(q\_1, q\_2, 0.5);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first quaternion \\ +\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline -\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \mbox{\texttt{ in}} & {\em a\+Ratio} & An interpolator ratio \\ \hline @@ -585,17 +578,17 @@ -Get logarithm. +Calculate logarithm of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} -\DoxyCodeLine{Quaternion q\_2 = q\_1.log() ;} +\DoxyCodeLine{Quaternion q\_2 = q\_1.log();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Logarithm +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a896500b99a8ab9cf38bc7f402001d41b}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a896500b99a8ab9cf38bc7f402001d41b}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!NLERP@{NLERP}} @@ -611,15 +604,15 @@ \begin{DoxyCode}{0} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} \DoxyCodeLine{Quaternion q\_2 = ...} -\DoxyCodeLine{Quaternion q = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}.NLERP(q\_1, q\_2, 0.5)} +\DoxyCodeLine{Quaternion::NLERP(q\_1, q\_2, 0.5);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first quaternion \\ +\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline -\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \mbox{\texttt{ in}} & {\em a\+Ratio} & An interpolator ratio \\ \hline @@ -627,6 +620,25 @@ \begin{DoxyReturn}{Returns} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adac286e89986a4dc8cd2791c96bcb979}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adac286e89986a4dc8cd2791c96bcb979}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!norm@{norm}} +\index{norm@{norm}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{norm()}{norm()}} +{\footnotesize\ttfamily Real ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::norm (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Calculate norm of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, -\/0.70710678118, 0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adac286e89986a4dc8cd2791c96bcb979}{norm}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} norm +\end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a724528ea23c64ba56a077d2a9aeb5529}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a724528ea23c64ba56a077d2a9aeb5529}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!normalize@{normalize}} \index{normalize@{normalize}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} @@ -635,17 +647,16 @@ -Normalize quaternion. +Normalize \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.000000000000001) ; \textcolor{comment}{// [0.0, 0.0,}} -\DoxyCodeLine{0.0, 1.000000000000001] quaternion.normalize() ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.000000000000001).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a724528ea23c64ba56a077d2a9aeb5529}{normalize}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9bd92ff5c1e57bdc7572b2507363bd15}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9bd92ff5c1e57bdc7572b2507363bd15}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator"!=@{operator"!=}} @@ -659,29 +670,58 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(1.0, 0.0, 0.0, 0.0) ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}() != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}();} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -True if quaternions are not equal +True if Quaternions are not equal +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a95aa653a242332b5d3590c81f8819bb8}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a95aa653a242332b5d3590c81f8819bb8}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator$\ast$@{operator$\ast$}} +\index{operator$\ast$@{operator$\ast$}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}\hspace{0.1cm}{\footnotesize\ttfamily [1/3]}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::operator$\ast$ (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&}]{a\+Quaternion }\end{DoxyParamCaption}) const} + + + +Multiplication operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_B\_A = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_C\_B = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_C\_A = q\_C\_B * q\_B\_A ;} +\end{DoxyCode} + + +\begin{DoxyNote}{Note} +This operator uses cross multiplication +\end{DoxyNote} + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afe9742084b6a328cb8fab233a5485122}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_afe9742084b6a328cb8fab233a5485122}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator$\ast$@{operator$\ast$}} \index{operator$\ast$@{operator$\ast$}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} -\doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}\hspace{0.1cm}{\footnotesize\ttfamily [1/2]}} +\doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}\hspace{0.1cm}{\footnotesize\ttfamily [2/3]}} {\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::operator$\ast$ (\begin{DoxyParamCaption}\item[{const Real \&}]{a\+Scalar }\end{DoxyParamCaption}) const} Multiplication operator (scalar) -Example\+: + \begin{DoxyCode}{0} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ... ;} \DoxyCodeLine{Real scalar = ... ;} @@ -700,47 +740,18 @@ \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af683f4d97a2b3ead7f82d5a5352ccd66}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af683f4d97a2b3ead7f82d5a5352ccd66}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator$\ast$@{operator$\ast$}} \index{operator$\ast$@{operator$\ast$}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} -\doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}\hspace{0.1cm}{\footnotesize\ttfamily [2/2]}} +\doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}\hspace{0.1cm}{\footnotesize\ttfamily [3/3]}} {\footnotesize\ttfamily Vector3d ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::operator$\ast$ (\begin{DoxyParamCaption}\item[{const Vector3d \&}]{a\+Vector }\end{DoxyParamCaption}) const} -Addition operator (quaternion) +Multiplication operator (vector) \begin{DoxyCode}{0} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_2 = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_3 = q\_1 + q\_2 ;} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @param [in] aQuaternion A quaternion} -\DoxyCodeLine{ @\textcolor{keywordflow}{return} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}} -\DoxyCodeLine{} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} operator+(\textcolor{keyword}{const} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}\& aQuaternion) \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Multiplication operator (quaternion)} -\DoxyCodeLine{ } -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_B\_A = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_C\_B = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_C\_A = q\_C\_B * q\_B\_A ;} -\DoxyCodeLine{ @encode} -\DoxyCodeLine{ } -\DoxyCodeLine{ @note This \textcolor{keyword}{operator} uses cross multiplication} -\DoxyCodeLine{ } -\DoxyCodeLine{ @param [in] aQuaternion A quaternion} -\DoxyCodeLine{ @\textcolor{keywordflow}{return} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}} -\DoxyCodeLine{} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_af683f4d97a2b3ead7f82d5a5352ccd66}{operator*}}(\textcolor{keyword}{const} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}\& aQuaternion) \textcolor{keyword}{const};} -\DoxyCodeLine{} -\DoxyCodeLine{ @brief Multiplication operator (vector)} -\DoxyCodeLine{ } -\DoxyCodeLine{ Example:} -\DoxyCodeLine{ @code} -\DoxyCodeLine{ \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_B\_A = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_A = ... ;} -\DoxyCodeLine{ \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_B = q\_B\_A * v\_A ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_B\_A = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_A = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_B = q\_B\_A * v\_A ;} \end{DoxyCode} @@ -763,18 +774,44 @@ -Multiplication assignment operator (quaternion) +Multiplication assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \begin{DoxyNote}{Note} This operator uses cross multiplication \end{DoxyNote} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a87ad253260d586f019f07b6ae7202e19}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a87ad253260d586f019f07b6ae7202e19}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator+@{operator+}} +\index{operator+@{operator+}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{operator+()}{operator+()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::operator+ (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&}]{a\+Quaternion }\end{DoxyParamCaption}) const} + + + +Addition operator. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_2 = ... ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_3 = q\_1 + q\_2 ;} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_acf750e6a9664f75b70c4c1afe50eff7d}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_acf750e6a9664f75b70c4c1afe50eff7d}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator+=@{operator+=}} @@ -784,15 +821,15 @@ -Addition assignment operator (quaternion) +Addition assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a410602d95ca3038414e373f689ef47ba}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a410602d95ca3038414e373f689ef47ba}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator/@{operator/}} @@ -802,7 +839,7 @@ -Division operator (quaternion) +Division operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \begin{DoxyCode}{0} @@ -817,7 +854,7 @@ \end{DoxyNote} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -831,18 +868,18 @@ -Division assignment operator (quaternion) +Division assignment operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \begin{DoxyNote}{Note} This is equivalent to multiplying with the inverse \end{DoxyNote} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a1e39393c8587024630cd91d312284be4}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a1e39393c8587024630cd91d312284be4}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator==@{operator==}} @@ -856,17 +893,17 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}() == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}()} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -True if quaternions are equal +True if Quaternions are equal \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a7b03af85a1a62e2fe18eb684c2dc1c5c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a7b03af85a1a62e2fe18eb684c2dc1c5c}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!operator$^\wedge$@{operator$^\wedge$}} @@ -876,7 +913,7 @@ -Power operator (quaternion) +Power operator (\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}) \begin{DoxyCode}{0} @@ -902,11 +939,11 @@ -Constructs a quaternion from a string. +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from string. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a5b56dc4ce6a820188901e71d02333651}{Quaternion::Parse}}(\textcolor{stringliteral}{"[0.0, 0.0, 0.0, 1.0]"}) ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a5b56dc4ce6a820188901e71d02333651}{Quaternion::Parse}}(\textcolor{stringliteral}{"[0.0, 0.0, 0.0, 1.0]"});} \end{DoxyCode} @@ -914,7 +951,7 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em a\+String} & A string \\ \hline -\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A quaternion format \\ +\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} format \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -928,7 +965,7 @@ -Get power. +Calculate power of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} @@ -944,7 +981,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Power +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab4698e830342864f4debb6cb5d4c66bd}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab4698e830342864f4debb6cb5d4c66bd}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!rectify@{rectify}} @@ -954,18 +991,16 @@ -Rectify quaternion (enforce positive scalar part) +Rectify \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} (enforce positive scalar part) \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, -\/0.70710678118, -\/0.70710678118) ; \textcolor{comment}{//}} -\DoxyCodeLine{[0.0, 0.0, -\/0.70710678118, -\/0.70710678118] quaternion.rectify() ; \textcolor{comment}{// [0.0, 0.0,}} -\DoxyCodeLine{0.70710678118, 0.70710678118]} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, -\/0.70710678118, -\/0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab4698e830342864f4debb6cb5d4c66bd}{rectify}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Reference to quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2f204333466437f149ebf1ec186b4c40}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a2f204333466437f149ebf1ec186b4c40}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!rotateVector@{rotateVector}} @@ -975,19 +1010,18 @@ -Rotate vector using quaternion. +Rotate vector using \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q = ...} -\DoxyCodeLine{Vector3d v\_1 = ...} -\DoxyCodeLine{Vector3d v\_2 = q.rotateVector(v\_1)} +\DoxyCodeLine{\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_1 = ...} +\DoxyCodeLine{Vector3d v\_2 = q.rotateVector(v\_1);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1001,17 +1035,17 @@ -Constructs a rquaternion from a rotation matrix. +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a6622a7bdc0b5a4a05b1924d8efc4b7d7}{Quaternion::RotationMatrix}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}()) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a6622a7bdc0b5a4a05b1924d8efc4b7d7}{Quaternion::RotationMatrix}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1028,18 +1062,17 @@ -Constructs a quaternion from a rotation vector. +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} from rotation vector. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aee9309aec1e4543df08f57d40a0e51ed}{Quaternion::RotationVector}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aee9309aec1e4543df08f57d40a0e51ed}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0),} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(0.0))) ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_aee9309aec1e4543df08f57d40a0e51ed}{Quaternion::RotationVector}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1055,12 +1088,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).s() ; \textcolor{comment}{// \&1.0}} +\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).s();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Scalar part +Real \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a428dd39d288a6b42d9566733e038fb96}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a428dd39d288a6b42d9566733e038fb96}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!ShortestRotation@{ShortestRotation}} @@ -1070,13 +1103,11 @@ -Constructs a quaternion describing the shortest rotation between two vectors. +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} describing the shortest rotation between two vectors. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}} v\_1 = ...} -\DoxyCodeLine{Vector3d v\_2 = ...} -\DoxyCodeLine{Quaternion q = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}.ShortestRotation(v\_1, v\_2)} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a428dd39d288a6b42d9566733e038fb96}{Quaternion::ShortestRotation}}(\{1.0, 0.0, 0.0\}, \{0.0, 1.0, 0.0\});} \end{DoxyCode} @@ -1104,19 +1135,76 @@ \begin{DoxyCode}{0} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ...} \DoxyCodeLine{Quaternion q\_2 = ...} -\DoxyCodeLine{Quaternion q = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}}.SLERP(q\_1, q\_2, 0.5)} +\DoxyCodeLine{Quaternion::SLERP(q\_1, q\_2, 0.5);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first quaternion \\ +\mbox{\texttt{ in}} & {\em a\+First\+Quaternion} & A first \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline -\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Second\+Quaternion} & A second \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \mbox{\texttt{ in}} & {\em a\+Ratio} & An interpolator ratio \\ \hline \end{DoxyParams} +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_abd6b6809b6be6bff26bf99a4c2afbcdb}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_abd6b6809b6be6bff26bf99a4c2afbcdb}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!toConjugate@{toConjugate}} +\index{toConjugate@{toConjugate}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{toConjugate()}{toConjugate()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::to\+Conjugate (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Calculate conjugate of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_abd6b6809b6be6bff26bf99a4c2afbcdb}{toConjugate}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a57e55414171904bd5126707ec5b1cb1b}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a57e55414171904bd5126707ec5b1cb1b}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!toInverse@{toInverse}} +\index{toInverse@{toInverse}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{toInverse()}{toInverse()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::to\+Inverse (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Calculate inverse of \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.70710678118, 0.70710678118).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a57e55414171904bd5126707ec5b1cb1b}{toInverse}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a76d45236d97aca97432d5e6604cf6acf}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a76d45236d97aca97432d5e6604cf6acf}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!toNormalized@{toNormalized}} +\index{toNormalized@{toNormalized}!ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}} +\doxysubsubsection{\texorpdfstring{toNormalized()}{toNormalized()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Quaternion\+::to\+Normalized (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption}) const} + + + +Calculate normalized \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.000000000000001).\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a76d45236d97aca97432d5e6604cf6acf}{toNormalized}}();} +\end{DoxyCode} + + \begin{DoxyReturn}{Returns} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} @@ -1134,19 +1222,19 @@ -Convert quaternion to its string representation. +Convert \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} to its string representation. \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toString() ; \textcolor{comment}{// "[0.0, 0.0, 0.0, 1.0]"}} +\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toString();} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em (optional)} & a\+Precision A quaternion precision \\ +\mbox{\texttt{ in}} & {\em (optional)} & a\+Precision A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} precision \\ \hline -\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A quaternion format \\ +\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} format \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1160,17 +1248,17 @@ -Convert quaternion to its vector representation. +Convert \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} to its vector representation. \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toVector() ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).toVector();} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A quaternion format \\ +\mbox{\texttt{ in}} & {\em (optional)} & a\+Format A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} format \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1184,16 +1272,16 @@ -Constructs an undefined quaternion. +Construct undefined \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9828e84f2f4b0837912d2a38459e052f}{Quaternion::Undefined}}() ; \textcolor{comment}{// Undefined}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a9828e84f2f4b0837912d2a38459e052f}{Quaternion::Undefined}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Undefined quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!Unit@{Unit}} @@ -1203,16 +1291,16 @@ -Constructs a unit quaternion. +Construct unitary \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}() ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Unit quaternion +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adfdffa7d538271cddf839224bcb4e738}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adfdffa7d538271cddf839224bcb4e738}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!x@{x}} @@ -1226,12 +1314,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).x() ; \textcolor{comment}{// \&0.0}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_adfdffa7d538271cddf839224bcb4e738}{x}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -First component of vector part +Real \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!XYZS@{XYZS}} @@ -1241,11 +1329,11 @@ -Constructs a quaternion using the vector-\/scalar format. +Construct \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} using the vector-\/scalar format. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} quaternion = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) ; \textcolor{comment}{// [0.0, 0.0, 0.0, 1.0]}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0);} \end{DoxyCode} @@ -1275,12 +1363,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).y() ; \textcolor{comment}{// \&0.0}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a10f6aba9001c60d4e106a7989520c03a}{y}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Second component of vector part +Real \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab2c7e95b006839e078c0517a320636cf}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab2c7e95b006839e078c0517a320636cf}} \index{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion@{ostk::mathematics::geometry::d3::transformation::rotation::Quaternion}!z@{z}} @@ -1294,12 +1382,12 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{Quaternion::XYSZ(0.0, 0.0, 0.0, 1.0).z() ; \textcolor{comment}{// \&0.0}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab2c7e95b006839e078c0517a320636cf}{z}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Third component of vector part +Real \end{DoxyReturn} @@ -1314,7 +1402,7 @@ Multiplication operator (scalar) -Example\+: + \begin{DoxyCode}{0} \DoxyCodeLine{Real scalar = ... ;} \DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_a473fe143aff59c8d0ef54b7e73138853}{Quaternion}} q\_1 = ... ;} @@ -1326,7 +1414,7 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em a\+Scalar} & A scalar \\ \hline -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -1344,7 +1432,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) ;} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0);} \end{DoxyCode} @@ -1352,11 +1440,11 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} diff --git a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.tex b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.tex index 5943680b..4102832f 100644 --- a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.tex +++ b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix.tex @@ -29,40 +29,42 @@ double \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a7950245c6fd96b7c75676843a63915be}{operator()}} (const Index \&a\+Row\+Index, const Index \&a\+Column\+Index) \begin{DoxyCompactList}\small\item\em Index function operator. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ae17d3b16182ce6110a87534fd5aff6b4}{is\+Defined}} () const -\begin{DoxyCompactList}\small\item\em Check if rotation matrix is defined. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Check if Rotation Matrix is defined. \end{DoxyCompactList}\item const Matrix3d \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a4e911a9772e1740533c371d9c89cefb8}{access\+Matrix}} () const -\begin{DoxyCompactList}\small\item\em Access underlying rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Access underlying 3D Matrix. \end{DoxyCompactList}\item Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a8f62d9ae197f5f94e168a612be0a9bb1}{get\+Row\+At}} (const Index \&a\+Row\+Index) const \begin{DoxyCompactList}\small\item\em Get row at index. \end{DoxyCompactList}\item Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2abb637de6747ef51067aaf00237d9bf}{get\+Column\+At}} (const Index \&a\+Column\+Index) const \begin{DoxyCompactList}\small\item\em Get column at index. \end{DoxyCompactList}\item Matrix3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2cea2567403768437e4074720996bea2}{get\+Matrix}} () const -\begin{DoxyCompactList}\small\item\em Get underlying rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Get underlying 3D Matrix. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ae0b991e0539d9767a4a2bb366b073ded}{to\+Transposed}} () const -\begin{DoxyCompactList}\small\item\em Get transposed rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Calculate transposed Rotation Matrix. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_adc3e15a05d4efeed5bf2cb3eaf2c7237}{transpose}} () -\begin{DoxyCompactList}\small\item\em Transpose rotation matrix. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Transpose Rotation Matrix. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}{Undefined}} () -\begin{DoxyCompactList}\small\item\em Constructs an undefined rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct an undefined Rotation Matrix. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{Unit}} () -\begin{DoxyCompactList}\small\item\em Constructs a unit rotation matrix. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct unitary Rotation Matrix. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ad6019cbe46a2b47ad26470f996214bb0}{RX}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Rotation\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix representing a rotation around the X-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix representing a rotation around the X-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a580d873ccc82cafaa3e18bedfe54a0f2}{RY}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Rotation\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix representing a rotation around the Y-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix representing a rotation around the Y-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a4056e0c5112b76e58df8afbf359cefa6}{RZ}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&a\+Rotation\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix representing a rotation around the Z-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix representing a rotation around the Z-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a803abf578ca73618baf5d92358a1fef5}{Rows}} (const Vector3d \&a\+First\+Row, const Vector3d \&a\+Second\+Row, const Vector3d \&a\+Third\+Row) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix from row vectors. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix from row vectors. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a255df0da5d9ec95a9842ed312a67beb2}{Columns}} (const Vector3d \&a\+First\+Column, const Vector3d \&a\+Second\+Column, const Vector3d \&a\+Third\+Column) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix from column vectors. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix from column vectors. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a08706245c522cf0a4b101efdc66ab802}{Quaternion}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{rotation\+::\+Quaternion}} \&a\+Quaternion) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix from a quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_af11a91008ad9a5e8682437777efcfb0d}{Rotation\+Vector}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{rotation\+::\+Rotation\+Vector}} \&a\+Rotation\+Vector) -\begin{DoxyCompactList}\small\item\em Constructs a rotation matrix from a rotation vector. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix from Rotation Vector. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a17e0c181b02dd8857a0414331ac54bac}{Euler\+Angle}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&a\+Euler\+Angle) +\begin{DoxyCompactList}\small\item\em Construct Rotation Matrix from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Friends} \begin{DoxyCompactItemize} \item @@ -133,10 +135,10 @@ -Access underlying rotation matrix. +Access underlying 3D Matrix. \begin{DoxyReturn}{Returns} -Reference to underlying rotation matrix +Matrix reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a255df0da5d9ec95a9842ed312a67beb2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a255df0da5d9ec95a9842ed312a67beb2}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!Columns@{Columns}} @@ -146,12 +148,11 @@ -Constructs a rotation matrix from column vectors. +Construct Rotation Matrix from column vectors. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a255df0da5d9ec95a9842ed312a67beb2}{RotationMatrix::Columns}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0),} -\DoxyCodeLine{\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0), \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a255df0da5d9ec95a9842ed312a67beb2}{RotationMatrix::Columns}}(\{1.0, 0.0, 0.0\}, \{1.0, 0.0, 0.0\}, \{1.0, 0.0, 0.0\});} \end{DoxyCode} @@ -167,6 +168,30 @@ \begin{DoxyReturn}{Returns} Rotation matrix \end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a17e0c181b02dd8857a0414331ac54bac}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a17e0c181b02dd8857a0414331ac54bac}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!EulerAngle@{EulerAngle}} +\index{EulerAngle@{EulerAngle}!ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}} +\doxysubsubsection{\texorpdfstring{EulerAngle()}{EulerAngle()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Matrix\+::\+Euler\+Angle (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Rotation Matrix from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a17e0c181b02dd8857a0414331ac54bac}{RotationMatrix::EulerAngle}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}());} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Rotation matrix +\end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2abb637de6747ef51067aaf00237d9bf}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2abb637de6747ef51067aaf00237d9bf}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!getColumnAt@{getColumnAt}} \index{getColumnAt@{getColumnAt}!ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}} @@ -183,7 +208,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Column at index +Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2cea2567403768437e4074720996bea2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a2cea2567403768437e4074720996bea2}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!getMatrix@{getMatrix}} @@ -193,10 +218,10 @@ -Get underlying rotation matrix. +Get underlying 3D Matrix. \begin{DoxyReturn}{Returns} -Underlying rotation matrix +Matrix \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a8f62d9ae197f5f94e168a612be0a9bb1}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a8f62d9ae197f5f94e168a612be0a9bb1}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!getRowAt@{getRowAt}} @@ -214,7 +239,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Row at index +Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ae17d3b16182ce6110a87534fd5aff6b4}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ae17d3b16182ce6110a87534fd5aff6b4}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!isDefined@{isDefined}} @@ -224,16 +249,16 @@ -Check if rotation matrix is defined. +Check if Rotation Matrix is defined. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)).isDefined() ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)).isDefined();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -True if rotation matrix is defined +True if Rotation Matrix is defined \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a24dd53bd3648655d4ab858d0ce0685b2}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a24dd53bd3648655d4ab858d0ce0685b2}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!operator"!=@{operator"!=}} @@ -247,13 +272,13 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -271,7 +296,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}();} \DoxyCodeLine{rotationMatrix(0, 0) = 0.0 ;} \end{DoxyCode} @@ -298,8 +323,8 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}() ;} -\DoxyCodeLine{\textcolor{keywordtype}{double} value\_00 = rotationMatrix(0, 0) ; \textcolor{comment}{// 1.0}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}();} +\DoxyCodeLine{\textcolor{keywordtype}{double} value\_00 = rotationMatrix(0, 0); \textcolor{comment}{// 1.0}} \end{DoxyCode} @@ -333,7 +358,7 @@ \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -377,13 +402,13 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...);} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -397,18 +422,17 @@ -Constructs a rotation matrix from a quaternion. +Construct Rotation Matrix from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a08706245c522cf0a4b101efdc66ab802}{RotationMatrix::Quaternion}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0,} -\DoxyCodeLine{0.0, 1.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a08706245c522cf0a4b101efdc66ab802}{RotationMatrix::Quaternion}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -422,18 +446,17 @@ -Constructs a rotation matrix from a rotation vector. +Construct Rotation Matrix from Rotation Vector. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_af11a91008ad9a5e8682437777efcfb0d}{RotationMatrix::RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0),} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_af11a91008ad9a5e8682437777efcfb0d}{RotationMatrix::RotationVector}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} @@ -447,12 +470,11 @@ -Constructs a rotation matrix from row vectors. +Construct Rotation Matrix from row vectors. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a803abf578ca73618baf5d92358a1fef5}{RotationMatrix::Rows}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0), \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0,} -\DoxyCodeLine{0.0, 0.0), \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a803abf578ca73618baf5d92358a1fef5}{RotationMatrix::Rows}}(\{1.0, 0.0, 0.0\}, \{1.0, 0.0, 0.0\}, \{1.0, 0.0, 0.0\});} \end{DoxyCode} @@ -476,11 +498,11 @@ -Constructs a rotation matrix representing a rotation around the X-\/axis. +Construct Rotation Matrix representing a rotation around the X-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ad6019cbe46a2b47ad26470f996214bb0}{RotationMatrix::RX}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_ad6019cbe46a2b47ad26470f996214bb0}{RotationMatrix::RX}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0));} \end{DoxyCode} @@ -500,11 +522,11 @@ -Constructs a rotation matrix representing a rotation around the Y-\/axis. +Construct Rotation Matrix representing a rotation around the Y-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a580d873ccc82cafaa3e18bedfe54a0f2}{RotationMatrix::RY}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a580d873ccc82cafaa3e18bedfe54a0f2}{RotationMatrix::RY}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0));} \end{DoxyCode} @@ -524,11 +546,11 @@ -Constructs a rotation matrix representing a rotation around the Z-\/axis. +Construct Rotation Matrix representing a rotation around the Z-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a4056e0c5112b76e58df8afbf359cefa6}{RotationMatrix::RZ}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a4056e0c5112b76e58df8afbf359cefa6}{RotationMatrix::RZ}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(30.0));} \end{DoxyCode} @@ -548,16 +570,16 @@ -Get transposed rotation matrix. +Calculate transposed Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...).toTransposed() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...).toTransposed();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Transposed rotation matrix +Rotation Matrix \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_adc3e15a05d4efeed5bf2cb3eaf2c7237}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_adc3e15a05d4efeed5bf2cb3eaf2c7237}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!transpose@{transpose}} @@ -567,13 +589,18 @@ -Transpose rotation matrix. +Transpose Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...).transpose() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...).transpose();} \end{DoxyCode} - \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}} + + +\begin{DoxyReturn}{Returns} +Rotation Matrix reference +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!Undefined@{Undefined}} \index{Undefined@{Undefined}!ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}} \doxysubsubsection{\texorpdfstring{Undefined()}{Undefined()}} @@ -581,16 +608,16 @@ -Constructs an undefined rotation matrix. +Construct an undefined Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}{RotationMatrix::Undefined}}() ; \textcolor{comment}{// Undefined}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_aeae6917c12ec1afe40af8d15bcd1ed0c}{RotationMatrix::Undefined}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Undefined rotation matrix +Rotation Matrix \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix@{ostk::mathematics::geometry::d3::transformation::rotation::RotationMatrix}!Unit@{Unit}} @@ -600,16 +627,16 @@ -Constructs a unit rotation matrix. +Construct unitary Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}} rotationMatrix = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Unit rotation matrix +Rotation Matrix \end{DoxyReturn} @@ -626,7 +653,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...) ;} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a74d44755a8c72da68f52106af2bcfdea}{RotationMatrix}}(...);} \end{DoxyCode} @@ -634,11 +661,11 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} diff --git a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.tex b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.tex index 16b755d7..9fe98efd 100644 --- a/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.tex +++ b/latex/classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector.tex @@ -2,7 +2,7 @@ \label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}\index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} -Rotation vector. +Rotation Vector. @@ -14,35 +14,41 @@ \item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{Rotation\+Vector}} (const Vector3d \&an\+Axis, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angle) \begin{DoxyCompactList}\small\item\em Constructor. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_aca6953257290fbef4b31d1ae9ce91c8f}{Rotation\+Vector}} (const Vector3d \&an\+Axis, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&an\+Angle\+Unit) +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector from vector and angle unit The norm of the vector defines the rotation angle. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a951bcc257b60ab3ec2f45e1b4eb0cb70}{operator==}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \&a\+Rotation\+Vector) const \begin{DoxyCompactList}\small\item\em Equal to operator. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a1ab7d9369961e7f7e2bc9c6afb76f234}{operator!=}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \&a\+Rotation\+Vector) const \begin{DoxyCompactList}\small\item\em Not equal to operator. \end{DoxyCompactList}\item bool \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a7eb8f0bba73e0e36fa7a6f1bbd88da2d}{is\+Defined}} () const -\begin{DoxyCompactList}\small\item\em Check if rotation vector is defined. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Check if Rotation Vector is defined. \end{DoxyCompactList}\item Vector3d \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a177b242ce75f1631de02e15e50804958}{get\+Axis}} () const \begin{DoxyCompactList}\small\item\em Get rotation axis. \end{DoxyCompactList}\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac9544a31482220e580b6ad383c888bb5}{get\+Angle}} () const \begin{DoxyCompactList}\small\item\em Get rotation angle. \end{DoxyCompactList}\item String \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a9ce94326aaddb6e9e967acc388b39f44}{to\+String}} (const Integer \&a\+Precision=Integer\+::\+Undefined()) const -\begin{DoxyCompactList}\small\item\em Convert rotation vector to its string representation. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Convert Rotation Vector to string representation. \end{DoxyCompactList}\item +\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \& \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a02150f4e7ec88996f75eaae63b215cfb}{rectify}} () +\begin{DoxyCompactList}\small\item\em Rectify Rotation Vector (enforce positive angle) \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Static Public Member Functions} \begin{DoxyCompactItemize} \item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac296ba2d49497a1d7a5b1d1aa1628294}{Undefined}} () -\begin{DoxyCompactList}\small\item\em Constructs an undefined rotation vector. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct an undefined Rotation Vector. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{Unit}} () -\begin{DoxyCompactList}\small\item\em Constructs a unit rotation vector. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct a unitary Rotation Vector. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{X}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation vector around X-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector around X-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a30ecbac5afd7470bc9cb68079997fc0c}{Y}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation vector around Y-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector around Y-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a4985f992a53c3d1412a06b2ebedd4bca}{Z}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&an\+Angle) -\begin{DoxyCompactList}\small\item\em Constructs a rotation vector around Z-\/axis. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector around Z-\/axis. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ae2257efa00cf6358d7135f4fb67f42c0}{Quaternion}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{rotation\+::\+Quaternion}} \&a\+Quaternion) -\begin{DoxyCompactList}\small\item\em Constructs a rotation vector from a quaternion. \end{DoxyCompactList}\item +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a11b732b431882d3e29d63b5b350b88bc}{Rotation\+Matrix}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{rotation\+::\+Rotation\+Matrix}} \&a\+Rotation\+Matrix) -\begin{DoxyCompactList}\small\item\em Constructs a rotation vector from a rotation matrix. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector from Rotation Matrix. \end{DoxyCompactList}\item +static \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_acfff1d3bbd3dc4b5998bed27cca91e7d}{Euler\+Angle}} (const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&a\+Euler\+Angle) +\begin{DoxyCompactList}\small\item\em Construct Rotation Vector from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Friends} \begin{DoxyCompactItemize} \item @@ -51,7 +57,7 @@ \doxysubsection{Detailed Description} -Rotation vector. +Rotation Vector. –angle\+\_\+representation\#\+Rotation\+\_\+vector @@ -59,7 +65,7 @@ \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!RotationVector@{RotationVector}} \index{RotationVector@{RotationVector}!ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} -\doxysubsubsection{\texorpdfstring{RotationVector()}{RotationVector()}} +\doxysubsubsection{\texorpdfstring{RotationVector()}{RotationVector()}\hspace{0.1cm}{\footnotesize\ttfamily [1/2]}} {\footnotesize\ttfamily ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector\+::\+Rotation\+Vector (\begin{DoxyParamCaption}\item[{const Vector3d \&}]{an\+Axis, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \&}]{an\+Angle }\end{DoxyParamCaption})} @@ -67,15 +73,68 @@ Constructor. +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\{1.0, 0.0, 0.0\}, \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0));} +\end{DoxyCode} + + + \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Axis} & A rotation axis \\ \hline \mbox{\texttt{ in}} & {\em an\+Angle} & A rotation angle \\ \hline \end{DoxyParams} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_aca6953257290fbef4b31d1ae9ce91c8f}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_aca6953257290fbef4b31d1ae9ce91c8f}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!RotationVector@{RotationVector}} +\index{RotationVector@{RotationVector}!ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} +\doxysubsubsection{\texorpdfstring{RotationVector()}{RotationVector()}\hspace{0.1cm}{\footnotesize\ttfamily [2/2]}} +{\footnotesize\ttfamily ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector\+::\+Rotation\+Vector (\begin{DoxyParamCaption}\item[{const Vector3d \&}]{an\+Axis, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371}{Angle\+::\+Unit}} \&}]{an\+Angle\+Unit }\end{DoxyParamCaption})} + + + +Construct Rotation Vector from vector and angle unit The norm of the vector defines the rotation angle. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\{1.0, 0.0, 0.0\}, \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_a9c6a3ae1411b75a6c0cac397a6ace371a50c62e3ca8d8ec8732a7f968a3bf2c7c}{Angle::Unit::Radian}});} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Vector} & A vector \\ +\hline +\mbox{\texttt{ in}} & {\em an\+Angle\+Unit} & An angle unit \\ +\hline +\end{DoxyParams} \doxysubsection{Member Function Documentation} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_acfff1d3bbd3dc4b5998bed27cca91e7d}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_acfff1d3bbd3dc4b5998bed27cca91e7d}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!EulerAngle@{EulerAngle}} +\index{EulerAngle@{EulerAngle}!ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} +\doxysubsubsection{\texorpdfstring{EulerAngle()}{EulerAngle()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector\+::\+Euler\+Angle (\begin{DoxyParamCaption}\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{rotation\+::\+Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [static]}} + + + +Construct Rotation Vector from Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}}. + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_acfff1d3bbd3dc4b5998bed27cca91e7d}{RotationVector::EulerAngle}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}());} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Rotation Vector +\end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac9544a31482220e580b6ad383c888bb5}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac9544a31482220e580b6ad383c888bb5}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!getAngle@{getAngle}} \index{getAngle@{getAngle}!ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} @@ -86,6 +145,12 @@ Get rotation angle. + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac9544a31482220e580b6ad383c888bb5}{getAngle}}();} +\end{DoxyCode} + + \begin{DoxyReturn}{Returns} Rotation angle \end{DoxyReturn} @@ -99,6 +164,12 @@ Get rotation axis. + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a177b242ce75f1631de02e15e50804958}{getAxis}}();} +\end{DoxyCode} + + \begin{DoxyReturn}{Returns} Rotation axis \end{DoxyReturn} @@ -110,16 +181,16 @@ -Check if rotation vector is defined. +Check if Rotation Vector is defined. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)).isDefined() ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a7eb8f0bba73e0e36fa7a6f1bbd88da2d}{isDefined}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -True if rotation vector is defined +True if Rotation Vector is defined \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a1ab7d9369961e7f7e2bc9c6afb76f234}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a1ab7d9369961e7f7e2bc9c6afb76f234}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!operator"!=@{operator"!=}} @@ -133,18 +204,17 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) !=} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(1.0, 0.0, 0.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}() != \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}();} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -True if rotation vectors are not equal +True if Rotation Vectors are not equal \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a951bcc257b60ab3ec2f45e1b4eb0cb70}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a951bcc257b60ab3ec2f45e1b4eb0cb70}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!operator==@{operator==}} @@ -158,18 +228,17 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ==} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ; \textcolor{comment}{// True}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}() == \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}();} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -True if rotation vectors are equal +True if Rotation Vectors are equal \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ae2257efa00cf6358d7135f4fb67f42c0}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ae2257efa00cf6358d7135f4fb67f42c0}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!Quaternion@{Quaternion}} @@ -179,12 +248,11 @@ -Constructs a rotation vector from a quaternion. +Construct Rotation Vector from \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ae2257efa00cf6358d7135f4fb67f42c0}{RotationVector::Quaternion}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0,} -\DoxyCodeLine{0.0, 1.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ae2257efa00cf6358d7135f4fb67f42c0}{RotationVector::Quaternion}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_affb9e0b77d6b66dfcfdccb17ec10d1bf}{Quaternion::Unit}}());} \end{DoxyCode} @@ -194,7 +262,26 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Rotation vector +Rotation Vector +\end{DoxyReturn} +\mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a02150f4e7ec88996f75eaae63b215cfb}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a02150f4e7ec88996f75eaae63b215cfb}} +\index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!rectify@{rectify}} +\index{rectify@{rectify}!ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}} +\doxysubsubsection{\texorpdfstring{rectify()}{rectify()}} +{\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \& ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::\+Rotation\+Vector\+::rectify (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})} + + + +Rectify Rotation Vector (enforce positive angle) + + +\begin{DoxyCode}{0} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a02150f4e7ec88996f75eaae63b215cfb}{rectify}}();} +\end{DoxyCode} + + +\begin{DoxyReturn}{Returns} +Rotation Vector reference \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a11b732b431882d3e29d63b5b350b88bc}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a11b732b431882d3e29d63b5b350b88bc}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!RotationMatrix@{RotationMatrix}} @@ -204,21 +291,21 @@ -Constructs a rotation vector from a rotation matrix. +Construct Rotation Vector from Rotation Matrix. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a11b732b431882d3e29d63b5b350b88bc}{RotationVector::RotationMatrix}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}()) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a11b732b431882d3e29d63b5b350b88bc}{RotationVector::RotationMatrix}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix_a54cce35b27cb061a457bf0011f1312ba}{RotationMatrix::Unit}}());} \end{DoxyCode} \begin{DoxyParams}[1]{Parameters} -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Rotation vector +Rotation Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a9ce94326aaddb6e9e967acc388b39f44}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a9ce94326aaddb6e9e967acc388b39f44}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!toString@{toString}} @@ -228,12 +315,11 @@ -Convert rotation vector to its string representation. +Convert Rotation Vector to string representation. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)).toString() ; \textcolor{comment}{// "[0.0,}} -\DoxyCodeLine{0.0, 1.0] : 90.0 [deg]\textcolor{stringliteral}{"}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}().\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a9ce94326aaddb6e9e967acc388b39f44}{toString}}();} \end{DoxyCode} @@ -253,16 +339,16 @@ -Constructs an undefined rotation vector. +Construct an undefined Rotation Vector. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac296ba2d49497a1d7a5b1d1aa1628294}{RotationVector::Undefined}}() ; \textcolor{comment}{// Undefined}} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ac296ba2d49497a1d7a5b1d1aa1628294}{RotationVector::Undefined}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Undefined rotation vector +Undefined Rotation Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!Unit@{Unit}} @@ -272,16 +358,16 @@ -Constructs a unit rotation vector. +Construct a unitary Rotation Vector. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}() ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}();} \end{DoxyCode} \begin{DoxyReturn}{Returns} -Unit rotation vector +Unitary Rotation Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!X@{X}} @@ -291,11 +377,11 @@ -Constructs a rotation vector around X-\/axis. +Construct Rotation Vector around X-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0));} \end{DoxyCode} @@ -305,7 +391,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Rotation vector +Rotation Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a30ecbac5afd7470bc9cb68079997fc0c}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a30ecbac5afd7470bc9cb68079997fc0c}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!Y@{Y}} @@ -315,11 +401,11 @@ -Constructs a rotation vector around Y-\/axis. +Construct Rotation Vector around Y-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0));} \end{DoxyCode} @@ -329,7 +415,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Rotation vector +Rotation Vector \end{DoxyReturn} \mbox{\Hypertarget{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a4985f992a53c3d1412a06b2ebedd4bca}\label{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a4985f992a53c3d1412a06b2ebedd4bca}} \index{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector@{ostk::mathematics::geometry::d3::transformation::rotation::RotationVector}!Z@{Z}} @@ -339,11 +425,11 @@ -Constructs a rotation vector around Z-\/axis. +Construct Rotation Vector around Z-\/axis. \begin{DoxyCode}{0} -\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}} rotationVector = \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0)) ;} +\DoxyCodeLine{\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_ad5a563a069f6665a086b2ba5fc20ea76}{RotationVector::X}}(\mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(45.0));} \end{DoxyCode} @@ -353,7 +439,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -Rotation vector +Rotation Vector \end{DoxyReturn} @@ -370,7 +456,7 @@ \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a85786a4e81f7107c8367ed0ae783c79f}{RotationVector}}(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ;} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}();} \end{DoxyCode} @@ -378,11 +464,11 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Reference to output stream \end{DoxyReturn} diff --git a/latex/classostk_1_1mathematics_1_1solver_1_1_numerical_solver.tex b/latex/classostk_1_1mathematics_1_1solver_1_1_numerical_solver.tex index aa13422a..4fcd8897 100644 --- a/latex/classostk_1_1mathematics_1_1solver_1_1_numerical_solver.tex +++ b/latex/classostk_1_1mathematics_1_1solver_1_1_numerical_solver.tex @@ -624,7 +624,7 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} diff --git a/latex/dir_1db2ca725bce6a597a50db1f9271e018.tex b/latex/dir_1db2ca725bce6a597a50db1f9271e018.tex index 7a698274..f431f653 100644 --- a/latex/dir_1db2ca725bce6a597a50db1f9271e018.tex +++ b/latex/dir_1db2ca725bce6a597a50db1f9271e018.tex @@ -3,6 +3,8 @@ \doxysubsection*{Files} \begin{DoxyCompactItemize} \item +file \mbox{\hyperlink{_euler_angle_8cpp}{Euler\+Angle.\+cpp}} +\item file \mbox{\hyperlink{_quaternion_8cpp}{Quaternion.\+cpp}} \item file \mbox{\hyperlink{_rotation_matrix_8cpp}{Rotation\+Matrix.\+cpp}} diff --git a/latex/files.tex b/latex/files.tex index 3a97f63a..6e8a1d3b 100644 --- a/latex/files.tex +++ b/latex/files.tex @@ -77,6 +77,7 @@ \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Object/\mbox{\hyperlink{_ray_8cpp}{Ray.\+cpp}} }{\pageref{_ray_8cpp}}{} \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Object/\mbox{\hyperlink{3_d_2_object_2_segment_8cpp}{Segment.\+cpp}} }{\pageref{3_d_2_object_2_segment_8cpp}}{} \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Object/\mbox{\hyperlink{_sphere_8cpp}{Sphere.\+cpp}} }{\pageref{_sphere_8cpp}}{} +\item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_euler_angle_8cpp}{Euler\+Angle.\+cpp}} }{\pageref{_euler_angle_8cpp}}{} \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_quaternion_8cpp}{Quaternion.\+cpp}} }{\pageref{_quaternion_8cpp}}{} \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_rotation_matrix_8cpp}{Rotation\+Matrix.\+cpp}} }{\pageref{_rotation_matrix_8cpp}}{} \item\contentsline{section}{src/\+Open\+Space\+Toolkit/\+Mathematics/\+Geometry/3\+D/\+Transformation/\+Rotation/\mbox{\hyperlink{_rotation_vector_8cpp}{Rotation\+Vector.\+cpp}} }{\pageref{_rotation_vector_8cpp}}{} diff --git a/latex/hierarchy.tex b/latex/hierarchy.tex index 88d3661e..69ffd40d 100644 --- a/latex/hierarchy.tex +++ b/latex/hierarchy.tex @@ -1,6 +1,7 @@ \doxysection{Class Hierarchy} This inheritance list is sorted roughly, but not completely, alphabetically\+:\begin{DoxyCompactList} \item \contentsline{section}{ostk\+::mathematics\+::geometry\+::Angle}{\pageref{classostk_1_1mathematics_1_1geometry_1_1_angle}}{} +\item \contentsline{section}{ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::Euler\+Angle}{\pageref{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}}{} \item \contentsline{section}{ostk\+::mathematics\+::geometry\+::d2\+::object\+::Point\+Set\+::Hasher}{\pageref{structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher}}{} \item \contentsline{section}{ostk\+::mathematics\+::geometry\+::d3\+::object\+::Point\+Set\+::Hasher}{\pageref{structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher}}{} \item \contentsline{section}{ostk\+::mathematics\+::curvefitting\+::Interpolator}{\pageref{classostk_1_1mathematics_1_1curvefitting_1_1_interpolator}}{} diff --git a/latex/namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.tex b/latex/namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.tex index fbe3fbec..cfd4553a 100644 --- a/latex/namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.tex +++ b/latex/namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation.tex @@ -3,15 +3,19 @@ \doxysubsection*{Classes} \begin{DoxyCompactItemize} \item +class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} +\begin{DoxyCompactList}\small\item\em Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} (intrinsic rotation) \end{DoxyCompactList}\item class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \begin{DoxyCompactList}\small\item\em \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}}. \end{DoxyCompactList}\item class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \begin{DoxyCompactList}\small\item\em Rotation matrix. \end{DoxyCompactList}\item class \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} -\begin{DoxyCompactList}\small\item\em Rotation vector. \end{DoxyCompactList}\end{DoxyCompactItemize} +\begin{DoxyCompactList}\small\item\em Rotation Vector. \end{DoxyCompactList}\end{DoxyCompactItemize} \doxysubsection*{Functions} \begin{DoxyCompactItemize} \item +std\+::ostream \& \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a4039583c5e12d44db90af36b8420cffd}{operator$<$$<$}} (std\+::ostream \&an\+Output\+Stream, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&a\+Euler\+Angle) +\item \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a6028c92c3bd330713db8cab7bc5122e1}{operator$\ast$}} (const Real \&a\+Scalar, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) \item std\+::ostream \& \mbox{\hyperlink{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_ae26404779f77ca73c95975806e5402d1}{operator$<$$<$}} (std\+::ostream \&an\+Output\+Stream, const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&a\+Quaternion) @@ -29,7 +33,7 @@ \doxysubsubsection{\texorpdfstring{operator$\ast$()}{operator*()}} {\footnotesize\ttfamily \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$\ast$ (\begin{DoxyParamCaption}\item[{const Real \&}]{a\+Scalar, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&}]{a\+Quaternion }\end{DoxyParamCaption})} -Example\+: + \begin{DoxyCode}{0} \DoxyCodeLine{Real scalar = ... ;} \DoxyCodeLine{Quaternion q\_1 = ... ;} @@ -41,21 +45,43 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em a\+Scalar} & A scalar \\ \hline -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \end{DoxyReturn} +\mbox{\Hypertarget{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a4039583c5e12d44db90af36b8420cffd}\label{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a4039583c5e12d44db90af36b8420cffd}} +\index{ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}!operator$<$$<$@{operator$<$$<$}} +\index{operator$<$$<$@{operator$<$$<$}!ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}} +\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [1/4]}} +{\footnotesize\ttfamily std\+::ostream\& ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$<$$<$ (\begin{DoxyParamCaption}\item[{std\+::ostream \&}]{an\+Output\+Stream, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle}{Euler\+Angle}} \&}]{a\+Euler\+Angle }\end{DoxyParamCaption})} + + +\begin{DoxyCode}{0} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle_a970d830a551e4596701281e2cf0a1899}{EulerAngle::Unit}}();} +\end{DoxyCode} + + + +\begin{DoxyParams}[1]{Parameters} +\mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ +\hline +\mbox{\texttt{ in}} & {\em a\+Euler\+Angle} & A Euler \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle}{Angle}} \\ +\hline +\end{DoxyParams} +\begin{DoxyReturn}{Returns} +Output stream reference +\end{DoxyReturn} \mbox{\Hypertarget{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_ae26404779f77ca73c95975806e5402d1}\label{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_ae26404779f77ca73c95975806e5402d1}} \index{ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}!operator$<$$<$@{operator$<$$<$}} \index{operator$<$$<$@{operator$<$$<$}!ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}} -\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [1/3]}} +\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [2/4]}} {\footnotesize\ttfamily std\+::ostream\& ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$<$$<$ (\begin{DoxyParamCaption}\item[{std\+::ostream \&}]{an\+Output\+Stream, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \&}]{a\+Quaternion }\end{DoxyParamCaption})} \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0) ;} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion_ab065862f2a77807e42f6feaadc0637e2}{Quaternion::XYZS}}(0.0, 0.0, 0.0, 1.0);} \end{DoxyCode} @@ -63,21 +89,21 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Quaternion} & A quaternion \\ +\mbox{\texttt{ in}} & {\em a\+Quaternion} & A \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_quaternion}{Quaternion}} \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} \mbox{\Hypertarget{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_afa8bc95840d3ed51eb2c9726bbd52f23}\label{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_afa8bc95840d3ed51eb2c9726bbd52f23}} \index{ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}!operator$<$$<$@{operator$<$$<$}} \index{operator$<$$<$@{operator$<$$<$}!ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}} -\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [2/3]}} +\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [3/4]}} {\footnotesize\ttfamily std\+::ostream\& ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$<$$<$ (\begin{DoxyParamCaption}\item[{std\+::ostream \&}]{an\+Output\+Stream, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix}{Rotation\+Matrix}} \&}]{a\+Rotation\+Matrix }\end{DoxyParamCaption})} \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << RotationMatrix(...) ;} +\DoxyCodeLine{std::cout << RotationMatrix(...);} \end{DoxyCode} @@ -85,21 +111,21 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A rotation matrix \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Matrix} & A Rotation Matrix \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} \mbox{\Hypertarget{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a89b141f8b9cd2a93dbd9b584bab23d5b}\label{namespaceostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_a89b141f8b9cd2a93dbd9b584bab23d5b}} \index{ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}!operator$<$$<$@{operator$<$$<$}} \index{operator$<$$<$@{operator$<$$<$}!ostk::mathematics::geometry::d3::transformation::rotation@{ostk::mathematics::geometry::d3::transformation::rotation}} -\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [3/3]}} +\doxysubsubsection{\texorpdfstring{operator$<$$<$()}{operator<<()}\hspace{0.1cm}{\footnotesize\ttfamily [4/4]}} {\footnotesize\ttfamily std\+::ostream\& ostk\+::mathematics\+::geometry\+::d3\+::transformation\+::rotation\+::operator$<$$<$ (\begin{DoxyParamCaption}\item[{std\+::ostream \&}]{an\+Output\+Stream, }\item[{const \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector}{Rotation\+Vector}} \&}]{a\+Rotation\+Vector }\end{DoxyParamCaption})} \begin{DoxyCode}{0} -\DoxyCodeLine{std::cout << RotationVector(\mbox{\hyperlink{namespaceostk_1_1mathematics_1_1object_a69d9a055814e9440af219eff448c6c23}{Vector3d}}(0.0, 0.0, 1.0), \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1_angle_adf219273c9f6215c4a47a5530e0a3aa3}{Angle::Degrees}}(90.0)) ;} +\DoxyCodeLine{std::cout << \mbox{\hyperlink{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector_a31c276c930ed9d5ff4cb406be6a48f7e}{RotationVector::Unit}}();} \end{DoxyCode} @@ -107,9 +133,9 @@ \begin{DoxyParams}[1]{Parameters} \mbox{\texttt{ in}} & {\em an\+Output\+Stream} & An output stream \\ \hline -\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A rotation vector \\ +\mbox{\texttt{ in}} & {\em a\+Rotation\+Vector} & A Rotation Vector \\ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Reference to output stream \end{DoxyReturn} diff --git a/latex/namespaceostk_1_1mathematics_1_1solver.tex b/latex/namespaceostk_1_1mathematics_1_1solver.tex index 04cd3bd3..e01b08fd 100644 --- a/latex/namespaceostk_1_1mathematics_1_1solver.tex +++ b/latex/namespaceostk_1_1mathematics_1_1solver.tex @@ -65,5 +65,5 @@ \hline \end{DoxyParams} \begin{DoxyReturn}{Returns} -A reference to output stream +Output stream reference \end{DoxyReturn} diff --git a/latex/refman.tex b/latex/refman.tex index 34202491..7610d288 100644 --- a/latex/refman.tex +++ b/latex/refman.tex @@ -158,7 +158,7 @@ \begin{titlepage} \vspace*{7cm} \begin{center}% -{\Large Open\+Space\+Toolkit\+Mathematics \\[1ex]\large 3.\+0.\+2 }\\ +{\Large Open\+Space\+Toolkit\+Mathematics \\[1ex]\large 3.\+1.\+0 }\\ \vspace*{1cm} {\large Generated by Doxygen 1.8.17}\\ \end{center} @@ -212,6 +212,7 @@ \chapter{Class Documentation} \input{classostk_1_1mathematics_1_1curvefitting_1_1interpolator_1_1_cubic_spline} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_cuboid} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ellipsoid} +\input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_euler_angle} \input{structostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set_1_1_hasher} \input{structostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set_1_1_hasher} \input{classostk_1_1mathematics_1_1curvefitting_1_1_interpolator} @@ -232,8 +233,8 @@ \chapter{Class Documentation} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_plane} \input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point} -\input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set} \input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_point_set} +\input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_point_set} \input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_polygon} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_polygon} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_pyramid} @@ -241,8 +242,8 @@ \chapter{Class Documentation} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_ray} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_matrix} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1transformation_1_1rotation_1_1_rotation_vector} -\input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_segment} +\input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1object_1_1_segment} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1object_1_1_sphere} \input{classostk_1_1mathematics_1_1geometry_1_1d3_1_1_transformation} \input{classostk_1_1mathematics_1_1geometry_1_1d2_1_1_transformation} @@ -326,6 +327,7 @@ \chapter{File Documentation} \input{_pyramid_8cpp} \input{_ray_8cpp} \input{_sphere_8cpp} +\input{_euler_angle_8cpp} \input{_quaternion_8cpp} \input{_rotation_matrix_8cpp} \input{_rotation_vector_8cpp}