A wrapper of a TPolygon2D class, implementing CSerializable.
Definition at line 52 of file CPolygon.h.
#include <mrpt/math/CPolygon.h>
Public Member Functions | |
CPolygon () | |
Constructor cx and cy are the "central" point coordinates (laser sensor location if applicable) This parameters are NOT used in PointIntoPolygon, so they can be ignored. More... | |
void | AddVertex (double x, double y) |
Add a new vertex to polygon: More... | |
double | GetVertex_x (size_t i) const |
Methods for accessing the vertexs: More... | |
double | GetVertex_y (size_t i) const |
size_t | verticesCount () const |
Returns the vertices count in the polygon: More... | |
void | setAllVertices (const std::vector< double > &x, const std::vector< double > &y) |
Set all vertices at once. More... | |
void | setAllVertices (size_t nVertices, const double *xs, const double *ys) |
Set all vertices at once. More... | |
void | setAllVertices (size_t nVertices, const float *xs, const float *ys) |
Set all vertices at once. More... | |
void | getAllVertices (std::vector< double > &x, std::vector< double > &y) const |
Get all vertices at once. More... | |
void | Clear () |
Clear the polygon, erasing all vertexs. More... | |
bool | PointIntoPolygon (double x, double y) const |
Check if a point is inside the polygon: More... | |
mrpt::utils::CObjectPtr | duplicateGetSmartPtr () const |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More... | |
CObject * | clone () const |
Cloning interface for smart pointers. More... | |
double | distance (const TPoint2D &point) const |
Distance to a point. More... | |
bool | contains (const TPoint2D &point) const |
Check whether a point is inside the polygon. More... | |
void | getAsSegmentList (std::vector< TSegment2D > &v) const |
Gets as set of segments, instead of points. More... | |
void | generate3DObject (TPolygon3D &p) const |
Projects into 3D space, zeroing the z. More... | |
void | getCenter (TPoint2D &p) const |
Polygon's central point. More... | |
bool | isConvex () const |
Checks whether is convex. More... | |
void | removeRepeatedVertices () |
Erase repeated vertices. More... | |
void | removeRedundantVertices () |
Erase every redundant vertex from the polygon, saving space. More... | |
void | getPlotData (std::vector< double > &x, std::vector< double > &y) const |
Gets plot data, ready to use on a 2D plot. More... | |
Static Public Member Functions | |
static void | createRegularPolygon (size_t numEdges, double radius, TPolygon2D &poly) |
Static method to create a regular polygon, given its size and radius. More... | |
static void | createRegularPolygon (size_t numEdges, double radius, TPolygon2D &poly, const mrpt::poses::CPose2D &pose) |
Static method to create a regular polygon from its size and radius. More... | |
Public Attributes | |
T | elements |
STL member. More... | |
Static Public Attributes | |
static const mrpt::utils::TRuntimeClassId | classCObject |
RTTI stuff | |
static const mrpt::utils::TRuntimeClassId | classCSerializable |
Protected Member Functions | |
CSerializable virtual methods | |
void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const |
Introduces a pure virtual method responsible for writing to a CStream. More... | |
void | readFromStream (mrpt::utils::CStream &in, int version) |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori. More... | |
RTTI stuff | |
typedef CPolygonPtr | SmartPtr |
static mrpt::utils::CLASSINIT | _init_CPolygon |
static mrpt::utils::TRuntimeClassId | classCPolygon |
static const mrpt::utils::TRuntimeClassId * | classinfo |
static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::utils::CObject * | duplicate () const |
Returns a copy of the object, indepently of its class. More... | |
static mrpt::utils::CObject * | CreateObject () |
static CPolygonPtr | Create () |
A typedef for the associated smart pointer
Definition at line 55 of file CPolygon.h.
|
inline |
Constructor cx and cy are the "central" point coordinates (laser sensor location if applicable) This parameters are NOT used in PointIntoPolygon, so they can be ignored.
Definition at line 63 of file CPolygon.h.
|
staticprotected |
|
inline |
|
inline |
Clear the polygon, erasing all vertexs.
Definition at line 92 of file CPolygon.h.
|
inlineinherited |
|
inherited |
Check whether a point is inside the polygon.
Referenced by PointIntoPolygon().
|
static |
|
static |
|
staticinherited |
Static method to create a regular polygon, given its size and radius.
std::logic_error | if radius is near zero or the number of edges is less than three. |
|
inlinestaticinherited |
Static method to create a regular polygon from its size and radius.
The center will correspond to the given pose.
std::logic_error | if radius is near zero or the number of edges is less than three. |
|
inherited |
Distance to a point.
|
virtual |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
|
inlineinherited |
|
inherited |
Projects into 3D space, zeroing the z.
void mrpt::math::CPolygon::getAllVertices | ( | std::vector< double > & | x, |
std::vector< double > & | y | ||
) | const |
Get all vertices at once.
|
inherited |
Gets as set of segments, instead of points.
|
inherited |
Polygon's central point.
|
inherited |
Gets plot data, ready to use on a 2D plot.
|
virtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
|
inline |
Methods for accessing the vertexs:
Definition at line 75 of file CPolygon.h.
References ASSERT_, and mrpt::math::size().
|
inline |
Definition at line 76 of file CPolygon.h.
References ASSERT_, and mrpt::math::size().
|
inherited |
Checks whether is convex.
|
inline |
Check if a point is inside the polygon:
Definition at line 96 of file CPolygon.h.
References mrpt::math::TPolygon2D::contains().
|
protectedvirtual |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any error, see CStream::ReadBuffer |
Implements mrpt::utils::CSerializable.
|
inherited |
Erase every redundant vertex from the polygon, saving space.
|
inherited |
Erase repeated vertices.
void mrpt::math::CPolygon::setAllVertices | ( | const std::vector< double > & | x, |
const std::vector< double > & | y | ||
) |
Set all vertices at once.
void mrpt::math::CPolygon::setAllVertices | ( | size_t | nVertices, |
const double * | xs, | ||
const double * | ys | ||
) |
Set all vertices at once.
Please use the std::vector version whenever possible unless efficiency is really an issue
void mrpt::math::CPolygon::setAllVertices | ( | size_t | nVertices, |
const float * | xs, | ||
const float * | ys | ||
) |
Set all vertices at once.
Please use the std::vector version whenever possible unless efficiency is really an issue
|
inline |
Returns the vertices count in the polygon:
Definition at line 79 of file CPolygon.h.
References mrpt::math::size().
|
protectedvirtual |
Introduces a pure virtual method responsible for writing to a CStream.
This can not be used directly be users, instead use "stream << object;" for writing it to a stream.
out | The output binary stream where object must be dumped. |
getVersion | If NULL, the object must be dumped. If not, only the version of the object dump must be returned in this pointer. This enables the versioning of objects dumping and backward compatibility with previously stored data. |
std::exception | On any error, see CStream::WriteBuffer |
Implements mrpt::utils::CSerializable.
|
staticprotected |
Definition at line 55 of file CPolygon.h.
|
staticinherited |
|
static |
Definition at line 55 of file CPolygon.h.
|
staticinherited |
Definition at line 61 of file CSerializable.h.
|
static |
Definition at line 55 of file CPolygon.h.
|
inherited |
STL member.
Page generated by Doxygen 1.8.14 for MRPT 1.0.2 SVN: at lun oct 28 00:52:41 CET 2019 | Hosted on: |