MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/math/CQuaternion.h>
11 #include <mrpt/poses/CPose3D.h>
12 #include <mrpt/poses/CPose3DQuat.h>
13 #include <iostream>
14 
15 using namespace mrpt;
16 using namespace mrpt::poses;
17 using namespace mrpt::math;
18 using namespace std;
19 
20 // ------------------------------------------------------
21 // TestQuaternions
22 // ------------------------------------------------------
23 void TestQuaternions()
24 {
25  CQuaternionDouble q1, q2, q3;
26 
27  // q1 = CQuaternionDouble(1,2,3,4); q1.normalize();
28  CPose3D p1(0, 0, 0, 10.0_deg, 30.0_deg, -20.0_deg);
29  p1.getAsQuaternion(q1);
30 
31  CPose3D p2(0, 0, 0, 30.0_deg, -20.0_deg, 10.0_deg);
32  p2.getAsQuaternion(q2);
33 
34  // q3 = q1 x q2
35  q3.crossProduct(q1, q2);
36 
37  const CPose3D p3 = p1 + p2;
38 
39  cout << "q1 = " << q1 << endl;
40  cout << "q1 as CPose3D = " << CPose3D(q1, 0, 0, 0) << endl;
41  cout << endl;
42  cout << "q2 = " << q2 << endl;
43  cout << "q2 as CPose3D = " << CPose3D(q2, 0, 0, 0) << endl;
44  cout << endl;
45  cout << "q3 = q1 * q2 = " << q3 << endl;
46  cout << "q3 as CPose3D = " << CPose3D(q3, 0, 0, 0) << endl;
47 
48  cout << endl << "Should be equal to p3 = p1 (+) p2 = " << p3 << endl;
49 }
50 
52 {
53  CPose3DQuat q(1.0, 2.0, 3.0, CQuaternionDouble());
54 
55  cout << "Dump with iterators: ";
56  for (CPose3DQuat::iterator it = q.begin(); it != q.end(); ++it)
57  cout << *it << " ";
58  cout << endl;
59 }
60 
61 int main(int argc, char** argv)
62 {
63  try
64  {
67 
68  return 0;
69  }
70  catch (const std::exception& e)
71  {
72  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
73  return -1;
74  }
75  catch (...)
76  {
77  printf("Another exception!!");
78  return -1;
79  }
80 }
void TestQuaternionsIterators()
CQuaternion< double > CQuaternionDouble
A quaternion of data type "double".
Definition: CQuaternion.h:540
STL namespace.
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...
Definition: CQuaternion.h:231
A class used to store a 3D pose as a translation (x,y,z) and a quaternion (qr,qx,qy,qz).
Definition: CPose3DQuat.h:45
void TestQuaternions()
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.
const char * argv[]
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
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...
Definition: exceptions.cpp:59
const int argc
A quaternion, which can represent a 3D rotation as pair , with a real part "r" and a 3D vector ...
Definition: CQuaternion.h:44



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020