28 CPose3D p1(0, 0, 0, 10.0_deg, 30.0_deg, -20.0_deg);
29 p1.getAsQuaternion(q1);
31 CPose3D p2(0, 0, 0, 30.0_deg, -20.0_deg, 10.0_deg);
32 p2.getAsQuaternion(q2);
39 cout <<
"q1 = " << q1 << endl;
40 cout <<
"q1 as CPose3D = " <<
CPose3D(q1, 0, 0, 0) << endl;
42 cout <<
"q2 = " << q2 << endl;
43 cout <<
"q2 as CPose3D = " <<
CPose3D(q2, 0, 0, 0) << endl;
45 cout <<
"q3 = q1 * q2 = " << q3 << endl;
46 cout <<
"q3 as CPose3D = " <<
CPose3D(q3, 0, 0, 0) << endl;
48 cout << endl <<
"Should be equal to p3 = p1 (+) p2 = " << p3 << endl;
55 cout <<
"Dump with iterators: ";
70 catch (
const std::exception& e)
77 printf(
"Another exception!!");
void TestQuaternionsIterators()
CQuaternion< double > CQuaternionDouble
A quaternion of data type "double".
This base provides a set of functions for maths stuff.
void crossProduct(const CQuaternion &q1, const CQuaternion &q2)
Calculate the "cross" product (or "composed rotation") of two quaternion: this = q1 x q2 After the op...
A class used to store a 3D pose as a translation (x,y,z) and a quaternion (qr,qx,qy,qz).
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
A quaternion, which can represent a 3D rotation as pair , with a real part "r" and a 3D vector ...