|
manif-geom-cpp
|
#include <Eigen/Core>#include <iostream>#include <math.h>Go to the source code of this file.
Classes | |
| class | SO2< T > |
| Class representing a member of the \(SO(2)\) manifold, or a 2D rotation. More... | |
Typedefs | |
| typedef SO2< double > | SO2d |
Functions | |
| template<typename T > | |
| SO2< T > | operator* (const double &l, const SO2< T > &r) |
| Scale a rotation by a scalar. | |
| template<typename T > | |
| SO2< T > | operator* (const SO2< T > &l, const double &r) |
| Scale a rotation by a scalar. | |
| template<typename T > | |
| std::ostream & | operator<< (std::ostream &os, const SO2< T > &q) |
| Render the rotation in a stream. | |
Scale a rotation by a scalar.
Under the hood, this converts the rotation into a tangent-space vector, scales the vector, then converts the scaled vector back to a rotation.
Scale a rotation by a scalar.
Under the hood, this converts the rotation into a tangent-space vector, scales the vector, then converts the scaled vector back to a rotation.
|
inline |
Render the rotation in a stream.