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/gui.h>
11 #include <mrpt/math/geometry.h>
12 #include <mrpt/system/datetime.h>
13 #include <iostream>
14 
15 using namespace std;
16 using namespace mrpt;
17 using namespace mrpt::gui;
18 using namespace mrpt::math;
19 
20 const unsigned int NUMBER_OF_EDGES = 20;
21 const double MIN_RADIUS = 5;
22 const double MAX_RADIUS = 40;
23 
24 const double DIFF_RADIUS = MAX_RADIUS - MIN_RADIUS;
25 
26 inline double randomDouble(size_t precision = 1000)
27 {
28  return MIN_RADIUS + DIFF_RADIUS * (static_cast<double>(rand() % precision) /
29  static_cast<double>(precision - 1));
30 }
31 
32 void display()
33 {
34  CDisplayWindowPlots win1("Unsplitted polygon", 400, 300);
35  win1.enableMousePanZoom(true);
36  TPolygon2D randomPoly(NUMBER_OF_EDGES);
37  for (size_t i = 0; i < NUMBER_OF_EDGES; i++)
38  {
39  double ang = 2 * M_PI * i / NUMBER_OF_EDGES;
40  double radius = randomDouble();
41  randomPoly[i].x = radius * cos(ang);
42  randomPoly[i].y = radius * sin(ang);
43  }
44  randomPoly.removeRedundantVertices();
45  std::vector<double> x, y;
46  randomPoly.getPlotData(x, y);
47  win1.plot(x, y, "b-5", "Polygon");
48  win1.axis_fit();
49  std::vector<TPolygon2D> convexPolys;
50  if (!splitInConvexComponents(randomPoly, convexPolys))
51  convexPolys.push_back(randomPoly);
52  CDisplayWindowPlots win2("Splitted polygon", 400, 300);
53  win2.enableMousePanZoom(true);
54  std::string plotName = "Polygon0";
55  for (std::vector<TPolygon2D>::const_iterator it = convexPolys.begin();
56  it != convexPolys.end(); ++it)
57  {
58  plotName[7]++;
59  it->getPlotData(x, y);
60  win2.plot(x, y, "r-3", plotName);
61  if (!it->isConvex()) cout << "FAIL.\n";
62  }
63  win2.axis_fit();
64  while (!mrpt::system::os::kbhit() && win1.isOpen() && win2.isOpen())
65  ;
66 }
67 
68 int main(int argc, char** argv)
69 {
72  display();
73  return 0;
74 }
bool splitInConvexComponents(const TPolygon2D &poly, std::vector< TPolygon2D > &components)
Splits a 2D polygon into convex components.
Definition: geometry.cpp:2291
Create a GUI window and display plots with MATLAB-like interfaces and commands.
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Definition: datetime.h:86
double extractDayTimeFromTimestamp(const mrpt::system::TTimeStamp t)
Returns the number of seconds ellapsed from midnight in the given timestamp.
Definition: datetime.cpp:197
const double MIN_RADIUS
STL namespace.
const double MAX_RADIUS
This base provides a set of functions for maths stuff.
const unsigned int NUMBER_OF_EDGES
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
double randomDouble(size_t precision=1000)
const double DIFF_RADIUS
2D polygon, inheriting from std::vector<TPoint2D>.
Definition: TPolygon2D.h:21



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