A class used to store a 2D point.
For a complete description of Points/Poses, see mrpt::poses::CPoseOrPoint, or refer to the 2D/3D Geometry tutorial in the wiki.
Definition at line 54 of file CPoint2D.h.
#include <mrpt/poses/CPoint2D.h>

Public Types | |
| enum | { is_3D_val = 0 } |
| enum | { is_PDF_val = 0 } |
Public Member Functions | |
| CPoint2D (double x=0, double y=0) | |
| Constructor for initializing point coordinates. | |
| template<class OTHERCLASS > | |
| CPoint2D (const CPoseOrPoint< OTHERCLASS > &b) | |
| Constructor from x/y coordinates given from other pose. | |
| CPoint2D (const mrpt::math::TPoint2D &o) | |
| Implicit constructor from lightweight type. | |
| CPoint2D (const mrpt::math::TPoint3D &o) | |
| Explicit constructor from lightweight type (loses the z coord). | |
| CPoint2D | operator- (const CPose2D &b) const |
| The operator D="this"-b is the pose inverse compounding operator, the resulting points "D" fulfils: "this" = b + D, so that: b == a + (b-a) | |
| 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). | |
| CObject * | clone () const |
| Cloning interface for smart pointers. | |
Methods common to all 2D or 3D points | |
| void | AddComponents (const OTHERCLASS &b) |
| Scalar addition of all coordinates. | |
| void | operator*= (const double s) |
| Scalar multiplication. | |
| void | getAsVector (vector_double &v) const |
| Return the pose or point as a 1x2 or 1x3 vector [x y] or [x y z]. | |
| vector_double | getAsVector () const |
| void | getHomogeneousMatrix (CMatrixDouble44 &out_HM) const |
| Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). | |
| void | asString (std::string &s) const |
| Returns a human-readable textual representation of the object (eg: "[0.02 1.04]" ) | |
| std::string | asString () const |
| void | fromString (const std::string &s) |
| Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04]" ) | |
| const double & | operator[] (unsigned int i) const |
| double & | operator[] (unsigned int i) |
Static Public Member Functions | |
| static bool | is_3D () |
| static bool | is_PDF () |
Public Attributes | |
| mrpt::math::CArrayDouble< 2 > | m_coords |
| [x,y] | |
Static Public Attributes | |
| static const mrpt::utils::TRuntimeClassId | classCObject |
Protected Member Functions | |
| virtual void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const =0 |
| Introduces a pure virtual method responsible for writing to a CStream. | |
| virtual void | readFromStream (mrpt::utils::CStream &in, int version)=0 |
| 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. | |
RTTI stuff | |
| typedef CPoint2DPtr | SmartPtr |
| static mrpt::utils::CLASSINIT | _init_CPoint2D |
| static mrpt::utils::TRuntimeClassId | classCPoint2D |
| 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. | |
| virtual mrpt::utils::CObject * | duplicate () const |
| Returns a copy of the object, indepently of its class. | |
| static mrpt::utils::CObject * | CreateObject () |
| static CPoint2DPtr | Create () |
STL-like methods and typedefs | |
| enum | { static_size = 2 } |
| typedef double | value_type |
| The type of the elements. | |
| typedef double & | reference |
| typedef const double & | const_reference |
| typedef std::size_t | size_type |
| typedef std::ptrdiff_t | difference_type |
| static size_type | size () |
| static bool | empty () |
| static size_type | max_size () |
| static void | resize (const size_t n) |
| double | x () const |
| Common members of all points & poses classes. | |
| double & | x () |
| void | x (const double v) |
| double | y () const |
| double & | y () |
| void | y (const double v) |
| void | x_incr (const double v) |
| void | y_incr (const double v) |
| double | sqrDistanceTo (const CPoseOrPoint< OTHERCLASS > &b) const |
| Returns the squared euclidean distance to another pose/point: | |
| double | distanceTo (const CPoseOrPoint< OTHERCLASS > &b) const |
| Returns the Euclidean distance to another pose/point: | |
| double | distanceTo (const mrpt::math::TPoint3D &b) const |
| Returns the euclidean distance to a 3D point: | |
| double | distance2DToSquare (double ax, double ay) const |
| Returns the squared 2D distance from this pose/point to a 2D point (ignores Z, if it exists). | |
| double | distance3DToSquare (double ax, double ay, double az) const |
| Returns the squared 3D distance from this pose/point to a 3D point. | |
| double | distance2DTo (double ax, double ay) const |
| Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists). | |
| double | distance3DTo (double ax, double ay, double az) const |
| Returns the 3D distance from this pose/point to a 3D point. | |
| double | norm () const |
Returns the euclidean norm of vector: . | |
| vector_double | getAsVectorVal () const |
| Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation) | |
| CMatrixDouble44 | getHomogeneousMatrixVal () const |
| Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). | |
| void | getInverseHomogeneousMatrix (math::CMatrixDouble44 &out_HM) const |
| Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose. | |
| mrpt::math::CMatrixDouble44 | getInverseHomogeneousMatrix () const |
| static bool | is3DPoseOrPoint () |
| Return true for poses or points with a Z component, false otherwise. | |
RTTI stuff | |
| static const mrpt::utils::TRuntimeClassId | classCSerializable |
| class | mrpt::utils::CStream |
| typedef const double& mrpt::poses::CPoint2D::const_reference |
Definition at line 94 of file CPoint2D.h.
| typedef std::ptrdiff_t mrpt::poses::CPoint2D::difference_type |
Definition at line 96 of file CPoint2D.h.
| typedef double& mrpt::poses::CPoint2D::reference |
Definition at line 93 of file CPoint2D.h.
| typedef std::size_t mrpt::poses::CPoint2D::size_type |
Definition at line 95 of file CPoint2D.h.
A typedef for the associated smart pointer
Definition at line 57 of file CPoint2D.h.
| typedef double mrpt::poses::CPoint2D::value_type |
The type of the elements.
Definition at line 92 of file CPoint2D.h.
| anonymous enum |
Definition at line 87 of file CPoint2D.h.
| anonymous enum |
Definition at line 99 of file CPoint2D.h.
| anonymous enum |
Definition at line 85 of file CPoint2D.h.
| mrpt::poses::CPoint2D::CPoint2D | ( | double | x = 0, |
| double | y = 0 |
||
| ) | [inline] |
Constructor for initializing point coordinates.
Definition at line 64 of file CPoint2D.h.
References Eigen::internal::y.
| mrpt::poses::CPoint2D::CPoint2D | ( | const CPoseOrPoint< OTHERCLASS > & | b | ) | [inline, explicit] |
Constructor from x/y coordinates given from other pose.
Definition at line 68 of file CPoint2D.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
| mrpt::poses::CPoint2D::CPoint2D | ( | const mrpt::math::TPoint2D & | o | ) | [inline] |
Implicit constructor from lightweight type.
Definition at line 75 of file CPoint2D.h.
References mrpt::math::TPoint2D::x, and mrpt::math::TPoint2D::y.
| mrpt::poses::CPoint2D::CPoint2D | ( | const mrpt::math::TPoint3D & | o | ) | [inline, explicit] |
Explicit constructor from lightweight type (loses the z coord).
Definition at line 78 of file CPoint2D.h.
References mrpt::math::TPoint3D::x, and mrpt::math::TPoint3D::y.
| static const mrpt::utils::TRuntimeClassId* mrpt::poses::CPoint2D::_GetBaseClass | ( | ) | [static, protected] |
Reimplemented from mrpt::utils::CSerializable.
| void mrpt::poses::CPoint< CPoint2D >::AddComponents | ( | const OTHERCLASS & | b | ) | [inline, inherited] |
| void mrpt::poses::CPoint< CPoint2D >::asString | ( | std::string & | s | ) | const [inline, inherited] |
| std::string mrpt::poses::CPoint< CPoint2D >::asString | ( | ) | const [inline, inherited] |
| CObject* mrpt::utils::CObject::clone | ( | ) | const [inline, inherited] |
Cloning interface for smart pointers.
Reimplemented in mrpt::opengl::CRenderizable, and mrpt::opengl::CRenderizableDisplayList.
| static CPoint2DPtr mrpt::poses::CPoint2D::Create | ( | ) | [static] |
| static mrpt::utils::CObject* mrpt::poses::CPoint2D::CreateObject | ( | ) | [static] |
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distance2DTo | ( | double | ax, |
| double | ay | ||
| ) | const [inline, inherited] |
Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 184 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distance2DToSquare | ( | double | ax, |
| double | ay | ||
| ) | const [inline, inherited] |
Returns the squared 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 176 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distance3DTo | ( | double | ax, |
| double | ay, | ||
| double | az | ||
| ) | const [inline, inherited] |
Returns the 3D distance from this pose/point to a 3D point.
Definition at line 187 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distance3DToSquare | ( | double | ax, |
| double | ay, | ||
| double | az | ||
| ) | const [inline, inherited] |
Returns the squared 3D distance from this pose/point to a 3D point.
Definition at line 179 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distanceTo | ( | const CPoseOrPoint< OTHERCLASS > & | b | ) | const [inline, inherited] |
Returns the Euclidean distance to another pose/point:
Definition at line 170 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::distanceTo | ( | const mrpt::math::TPoint3D & | b | ) | const [inline, inherited] |
Returns the euclidean distance to a 3D point:
Definition at line 190 of file CPoseOrPoint.h.
| virtual mrpt::utils::CObject* mrpt::poses::CPoint2D::duplicate | ( | ) | const [virtual] |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
| mrpt::utils::CObjectPtr mrpt::utils::CObject::duplicateGetSmartPtr | ( | ) | const [inline, inherited] |
| static bool mrpt::poses::CPoint2D::empty | ( | ) | [inline, static] |
Definition at line 101 of file CPoint2D.h.
| void mrpt::poses::CPoint< CPoint2D >::fromString | ( | const std::string & | s | ) | [inline, inherited] |
| vector_double mrpt::poses::CPoint< CPoint2D >::getAsVector | ( | ) | const [inline, inherited] |
| void mrpt::poses::CPoint< CPoint2D >::getAsVector | ( | vector_double & | v | ) | const [inline, inherited] |
| vector_double mrpt::poses::CPoseOrPoint< CPoint2D >::getAsVectorVal | ( | ) | const [inline, inherited] |
Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation)
Definition at line 199 of file CPoseOrPoint.h.
| void mrpt::poses::CPoint< CPoint2D >::getHomogeneousMatrix | ( | CMatrixDouble44 & | out_HM | ) | const [inline, inherited] |
| CMatrixDouble44 mrpt::poses::CPoseOrPoint< CPoint2D >::getHomogeneousMatrixVal | ( | ) | const [inline, inherited] |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
Definition at line 209 of file CPoseOrPoint.h.
| mrpt::math::CMatrixDouble44 mrpt::poses::CPoseOrPoint< CPoint2D >::getInverseHomogeneousMatrix | ( | ) | const [inline, inherited] |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 226 of file CPoseOrPoint.h.
| void mrpt::poses::CPoseOrPoint< CPoint2D >::getInverseHomogeneousMatrix | ( | math::CMatrixDouble44 & | out_HM | ) | const [inline, inherited] |
Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose.
Definition at line 219 of file CPoseOrPoint.h.
| virtual const mrpt::utils::TRuntimeClassId* mrpt::poses::CPoint2D::GetRuntimeClass | ( | ) | const [virtual] |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
| static bool mrpt::poses::CPoseOrPoint< CPoint2D >::is3DPoseOrPoint | ( | ) | [inline, static, inherited] |
Return true for poses or points with a Z component, false otherwise.
Definition at line 149 of file CPoseOrPoint.h.
| static bool mrpt::poses::CPoint2D::is_3D | ( | ) | [inline, static] |
Definition at line 86 of file CPoint2D.h.
| static bool mrpt::poses::CPoint2D::is_PDF | ( | ) | [inline, static] |
Definition at line 88 of file CPoint2D.h.
| static size_type mrpt::poses::CPoint2D::max_size | ( | ) | [inline, static] |
Definition at line 102 of file CPoint2D.h.
References static_size.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::norm | ( | ) | const [inline, inherited] |
Returns the euclidean norm of vector:
.
Definition at line 193 of file CPoseOrPoint.h.
| void mrpt::poses::CPoint< CPoint2D >::operator*= | ( | const double | s | ) | [inline, inherited] |
The operator D="this"-b is the pose inverse compounding operator, the resulting points "D" fulfils: "this" = b + D, so that: b == a + (b-a)
| const double& mrpt::poses::CPoint< CPoint2D >::operator[] | ( | unsigned int | i | ) | const [inline, inherited] |
| double& mrpt::poses::CPoint< CPoint2D >::operator[] | ( | unsigned int | i | ) | [inline, inherited] |
| virtual void mrpt::utils::CSerializable::readFromStream | ( | mrpt::utils::CStream & | in, |
| int | version | ||
| ) | [protected, pure virtual, inherited] |
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 |
Implemented in mrpt::math::CMatrix, and mrpt::math::CMatrixD.
| static void mrpt::poses::CPoint2D::resize | ( | const size_t | n | ) | [inline, static] |
Definition at line 103 of file CPoint2D.h.
References mrpt::format(), and static_size.
| static size_type mrpt::poses::CPoint2D::size | ( | ) | [inline, static] |
Definition at line 100 of file CPoint2D.h.
References static_size.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::sqrDistanceTo | ( | const CPoseOrPoint< OTHERCLASS > & | b | ) | const [inline, inherited] |
Returns the squared euclidean distance to another pose/point:
Definition at line 152 of file CPoseOrPoint.h.
| virtual void mrpt::utils::CSerializable::writeToStream | ( | mrpt::utils::CStream & | out, |
| int * | getVersion | ||
| ) | const [protected, pure virtual, inherited] |
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 |
Implemented in mrpt::math::CMatrix, and mrpt::math::CMatrixD.
| double& mrpt::poses::CPoseOrPoint< CPoint2D >::x | ( | ) | [inline, inherited] |
Definition at line 138 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::x | ( | ) | const [inline, inherited] |
Common members of all points & poses classes.
< Get X coord.
Definition at line 135 of file CPoseOrPoint.h.
| void mrpt::poses::CPoseOrPoint< CPoint2D >::x | ( | const double | v | ) | [inline, inherited] |
| v | Set X coord. |
Definition at line 141 of file CPoseOrPoint.h.
| void mrpt::poses::CPoseOrPoint< CPoint2D >::x_incr | ( | const double | v | ) | [inline, inherited] |
| v | X+=v |
Definition at line 144 of file CPoseOrPoint.h.
| double& mrpt::poses::CPoseOrPoint< CPoint2D >::y | ( | ) | [inline, inherited] |
Definition at line 139 of file CPoseOrPoint.h.
| void mrpt::poses::CPoseOrPoint< CPoint2D >::y | ( | const double | v | ) | [inline, inherited] |
| v | Set Y coord. |
Definition at line 142 of file CPoseOrPoint.h.
| double mrpt::poses::CPoseOrPoint< CPoint2D >::y | ( | ) | const [inline, inherited] |
< Get Y coord.
Definition at line 136 of file CPoseOrPoint.h.
| void mrpt::poses::CPoseOrPoint< CPoint2D >::y_incr | ( | const double | v | ) | [inline, inherited] |
| v | Y+=v |
Definition at line 145 of file CPoseOrPoint.h.
friend class mrpt::utils::CStream [friend, inherited] |
Reimplemented in mrpt::poses::CPoint2DPDF, mrpt::poses::CPointPDF, mrpt::poses::CPose3DPDF, mrpt::poses::CPose3DQuatPDF, mrpt::poses::CPosePDF, mrpt::detectors::CDetectableObject, mrpt::slam::CPointsMap, mrpt::slam::CRandomFieldGridMap2D, mrpt::slam::CAction, mrpt::slam::CMetricMap, mrpt::slam::CObservation, mrpt::opengl::CRenderizable, mrpt::opengl::CRenderizableDisplayList, mrpt::opengl::CTexturedObject, and mrpt::reactivenav::CHolonomicLogFileRecord.
Definition at line 56 of file CSerializable.h.
mrpt::utils::CLASSINIT mrpt::poses::CPoint2D::_init_CPoint2D [static, protected] |
Definition at line 57 of file CPoint2D.h.
const mrpt::utils::TRuntimeClassId mrpt::utils::CObject::classCObject [static, inherited] |
Definition at line 57 of file CPoint2D.h.
const mrpt::utils::TRuntimeClassId mrpt::utils::CSerializable::classCSerializable [static, inherited] |
Definition at line 56 of file CSerializable.h.
const mrpt::utils::TRuntimeClassId* mrpt::poses::CPoint2D::classinfo [static] |
Definition at line 57 of file CPoint2D.h.
[x,y]
Definition at line 60 of file CPoint2D.h.
| Page generated by Doxygen 1.7.4 for MRPT 0.9.5 SVN:2717 at Sun Oct 16 16:08:03 PDT 2011 | Hosted on: |