29 static_cast<double>(precision - 1));
35 win1.enableMousePanZoom(
true);
41 randomPoly[i].x = radius * cos(ang);
42 randomPoly[i].y = radius * sin(ang);
44 randomPoly.removeRedundantVertices();
45 std::vector<double> x, y;
46 randomPoly.getPlotData(x, y);
47 win1.plot(x, y,
"b-5",
"Polygon");
49 std::vector<TPolygon2D> convexPolys;
51 convexPolys.push_back(randomPoly);
53 win2.enableMousePanZoom(
true);
54 std::string plotName =
"Polygon0";
55 for (std::vector<TPolygon2D>::const_iterator it = convexPolys.begin();
56 it != convexPolys.end(); ++it)
59 it->getPlotData(x, y);
60 win2.plot(x, y,
"r-3", plotName);
61 if (!it->isConvex()) cout <<
"FAIL.\n";
bool splitInConvexComponents(const TPolygon2D &poly, std::vector< TPolygon2D > &components)
Splits a 2D polygon into convex components.
Create a GUI window and display plots with MATLAB-like interfaces and commands.
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
double extractDayTimeFromTimestamp(const mrpt::system::TTimeStamp t)
Returns the number of seconds ellapsed from midnight in the given timestamp.
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.
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Classes for creating GUI windows for 2D and 3D visualization.
double randomDouble(size_t precision=1000)
2D polygon, inheriting from std::vector<TPoint2D>.