A class used to store a 3D 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 32 of file CPoint3D.h.
#include <mrpt/poses/CPoint3D.h>
Public Types | |
enum | { is_3D_val = 1 } |
enum | { is_PDF_val = 0 } |
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) throw () |
void | operator delete[] (void *ptr) throw () |
void | operator delete (void *memory, void *ptr) throw () |
void * | operator new (size_t size, const std::nothrow_t &) throw () |
void | operator delete (void *ptr, const std::nothrow_t &) throw () |
CPoint3D (const double x=0, const double y=0, const double z=0) | |
Constructor for initializing point coordinates. More... | |
CPoint3D (const mrpt::math::CArrayDouble< 3 > &xyz) | |
Constructor from a XYZ 3-vector. More... | |
CPoint3D (const CPoint2D &p) | |
Constructor from an CPoint2D object. More... | |
CPoint3D (const CPose3D &p) | |
Constructor from an CPose3D object. More... | |
CPoint3D (const CPose2D &p) | |
Constructor from an CPose2D object. More... | |
CPoint3D (const mrpt::math::TPoint3D &p) | |
Constructor from lightweight object. More... | |
CPoint3D | operator- (const CPose3D &b) const |
Returns this point as seen from "b", i.e. More... | |
CPoint3D | operator- (const CPoint3D &b) const |
Returns this point minus point "b", i.e. More... | |
CPoint3D | operator+ (const CPoint3D &b) const |
Returns this point plus point "b", i.e. More... | |
CPose3D | operator+ (const CPose3D &b) const |
Returns this point plus pose "b", i.e. More... | |
void | setToNaN () MRPT_OVERRIDE |
Set all data fields to quiet NaN. More... | |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
CObject * | clone () const |
Cloning interface for smart pointers. More... | |
Methods common to all 2D or 3D points | |
void | AddComponents (const OTHERCLASS &b) |
Scalar addition of all coordinates. More... | |
void | operator*= (const double s) |
Scalar multiplication. More... | |
void | getAsVector (mrpt::math::CVectorDouble &v) const |
Return the pose or point as a 1x2 or 1x3 vector [x y] or [x y z]. More... | |
mrpt::math::CVectorDouble | getAsVector () const |
void | getHomogeneousMatrix (mrpt::math::CMatrixDouble44 &out_HM) const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). More... | |
void | asString (std::string &s) const |
Returns a human-readable textual representation of the object (eg: "[0.02 1.04]" ) More... | |
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]" ) More... | |
const double & | operator[] (unsigned int i) const |
double & | operator[] (unsigned int i) |
RTTI classes and functions | |
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... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
static bool | is_3D () |
static bool | is_PDF () |
Public Attributes | |
mrpt::math::CArrayDouble< 3 > | m_coords |
[x,y,z] 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 CPoint3DPtr | Ptr |
typedef CPoint3DPtr | ConstPtr |
static mrpt::utils::CLASSINIT | _init_CPoint3D |
static mrpt::utils::TRuntimeClassId | classCPoint3D |
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 CPoint3DPtr | Create () |
STL-like methods and typedefs | |
enum | { static_size = 3 } |
typedef double | value_type |
The type of the elements. More... | |
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. More... | |
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: More... | |
double | distanceTo (const CPoseOrPoint< OTHERCLASS > &b) const |
Returns the Euclidean distance to another pose/point: More... | |
double | distanceTo (const mrpt::math::TPoint3D &b) const |
Returns the euclidean distance to a 3D point: More... | |
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). More... | |
double | distance3DToSquare (double ax, double ay, double az) const |
Returns the squared 3D distance from this pose/point to a 3D point. More... | |
double | distance2DTo (double ax, double ay) const |
Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists). More... | |
double | distance3DTo (double ax, double ay, double az) const |
Returns the 3D distance from this pose/point to a 3D point. More... | |
double | norm () const |
Returns the euclidean norm of vector: . More... | |
mrpt::math::CVectorDouble | getAsVectorVal () const |
Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation) More... | |
mrpt::math::CMatrixDouble44 | getHomogeneousMatrixVal () const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). More... | |
void | getInverseHomogeneousMatrix (mrpt::math::CMatrixDouble44 &out_HM) const |
Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose. More... | |
mrpt::math::CMatrixDouble44 | getInverseHomogeneousMatrix () const |
static bool | is3DPoseOrPoint () |
Return true for poses or points with a Z component, false otherwise. More... | |
typedef const double& mrpt::poses::CPoint3D::const_reference |
Definition at line 82 of file CPoint3D.h.
typedef CPoint3DPtr mrpt::poses::CPoint3D::ConstPtr |
Definition at line 35 of file CPoint3D.h.
Definition at line 84 of file CPoint3D.h.
typedef CPoint3DPtr mrpt::poses::CPoint3D::Ptr |
A typedef for the associated smart pointer
Definition at line 35 of file CPoint3D.h.
typedef double& mrpt::poses::CPoint3D::reference |
Definition at line 81 of file CPoint3D.h.
typedef std::size_t mrpt::poses::CPoint3D::size_type |
Definition at line 83 of file CPoint3D.h.
typedef double mrpt::poses::CPoint3D::value_type |
The type of the elements.
Definition at line 80 of file CPoint3D.h.
anonymous enum |
Enumerator | |
---|---|
is_3D_val |
Definition at line 72 of file CPoint3D.h.
anonymous enum |
Enumerator | |
---|---|
is_PDF_val |
Definition at line 75 of file CPoint3D.h.
anonymous enum |
Enumerator | |
---|---|
static_size |
Definition at line 88 of file CPoint3D.h.
|
inline |
Constructor for initializing point coordinates.
Definition at line 42 of file CPoint3D.h.
|
inlineexplicit |
Constructor from a XYZ 3-vector.
Definition at line 45 of file CPoint3D.h.
|
explicit |
Constructor from an CPoint2D object.
Definition at line 27 of file CPoint3D.cpp.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x().
|
explicit |
Constructor from an CPose3D object.
Definition at line 32 of file CPoint3D.cpp.
|
explicit |
Constructor from an CPose2D object.
Definition at line 29 of file CPoint3D.cpp.
|
inlineexplicit |
Constructor from lightweight object.
Definition at line 57 of file CPoint3D.h.
|
staticprotected |
|
inlineinherited |
Scalar addition of all coordinates.
This is diferent from poses/point composition, which is implemented as "+" operators in classes derived from "CPose"
Definition at line 36 of file CPoint.h.
References min, and static_size.
|
inlineinherited |
Returns a human-readable textual representation of the object (eg: "[0.02 1.04]" )
Definition at line 75 of file CPoint.h.
References mrpt::mrpt::format(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inlineinherited |
Definition at line 81 of file CPoint.h.
References mrpt::poses::CPoint< DERIVEDCLASS >::asString().
|
inlineinherited |
|
static |
|
static |
|
inlineinherited |
Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 165 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distance2DToSquare().
|
inlineinherited |
Returns the squared 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 156 of file CPoseOrPoint.h.
References mrpt::mrpt::math::square(), mrpt::math::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inlineinherited |
Returns the 3D distance from this pose/point to a 3D point.
Definition at line 168 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distance3DToSquare().
|
inlineinherited |
Returns the squared 3D distance from this pose/point to a 3D point.
Definition at line 159 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::is3DPoseOrPoint(), mrpt::math::square(), mrpt::mrpt::math::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inlineinherited |
Returns the Euclidean distance to another pose/point:
Definition at line 150 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::sqrDistanceTo().
|
inlineinherited |
Returns the euclidean distance to a 3D point:
Definition at line 171 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distance3DTo().
|
virtual |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
|
inlineinherited |
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).
Definition at line 162 of file CObject.h.
References mrpt::utils::CObjectPtr.
Referenced by mrpt::obs::CRawlog::addActions(), mrpt::slam::CIncrementalMapPartitioner::addMapFrame(), and mrpt::obs::CRawlog::addObservations().
|
inlinestatic |
Definition at line 90 of file CPoint3D.h.
|
inlineinherited |
Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04]" )
std::exception | On invalid format |
Definition at line 87 of file CPoint.h.
References ASSERT_EQUAL_, mrpt::mrpt::math::size(), static_size, and THROW_EXCEPTION.
|
inlineinherited |
Return the pose or point as a 1x2 or 1x3 vector [x y] or [x y z].
Definition at line 51 of file CPoint.h.
References static_size.
|
inlineinherited |
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 58 of file CPoint.h.
References mrpt::poses::CPoint< DERIVEDCLASS >::getAsVector().
|
inlineinherited |
Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation)
Definition at line 181 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
Definition at line 63 of file CPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inlineinherited |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
Definition at line 191 of file CPoseOrPoint.h.
References mrpt::math::UNINITIALIZED_MATRIX.
|
inlineinherited |
Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose.
Definition at line 201 of file CPoseOrPoint.h.
References mrpt::math::homogeneousMatrixInverse().
|
inlineinherited |
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 208 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::getInverseHomogeneousMatrix(), and mrpt::math::UNINITIALIZED_MATRIX.
|
virtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
|
inlinestaticinherited |
Return true for poses or points with a Z component, false otherwise.
Definition at line 127 of file CPoseOrPoint.h.
|
inlinestatic |
Definition at line 73 of file CPoint3D.h.
|
inlinestatic |
Definition at line 76 of file CPoint3D.h.
|
inlinestatic |
Definition at line 91 of file CPoint3D.h.
References static_size.
|
inlineinherited |
Returns the euclidean norm of vector: .
Definition at line 174 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::is3DPoseOrPoint(), mrpt::math::square(), mrpt::mrpt::math::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
Definition at line 35 of file CPoint3D.h.
Definition at line 35 of file CPoint3D.h.
Definition at line 35 of file CPoint3D.h.
Definition at line 35 of file CPoint3D.h.
Definition at line 35 of file CPoint3D.h.
|
inline |
Definition at line 35 of file CPoint3D.h.
|
inline |
Definition at line 35 of file CPoint3D.h.
|
inline |
Definition at line 35 of file CPoint3D.h.
|
inlineinherited |
Returns this point plus point "b", i.e.
result = this + b
Definition at line 104 of file CPoint3D.cpp.
Returns this point plus pose "b", i.e.
result = this + b
Definition at line 112 of file CPoint3D.cpp.
Returns this point as seen from "b", i.e.
result = this - b
Definition at line 78 of file CPoint3D.cpp.
References mrpt::math::UNINITIALIZED_MATRIX.
Returns this point minus point "b", i.e.
result = this - b
Definition at line 95 of file CPoint3D.cpp.
|
inlineinherited |
|
inlineinherited |
|
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.
Definition at line 54 of file CPoint3D.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and version.
|
inlinestatic |
Definition at line 92 of file CPoint3D.h.
References mrpt::format(), and static_size.
|
virtual |
Set all data fields to quiet NaN.
Implements mrpt::poses::CPoseOrPoint< CPoint3D >.
Definition at line 117 of file CPoint3D.cpp.
|
inlinestatic |
Definition at line 89 of file CPoint3D.h.
References static_size.
|
inlineinherited |
Returns the squared euclidean distance to another pose/point:
Definition at line 130 of file CPoseOrPoint.h.
References mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::is3DPoseOrPoint(), mrpt::mrpt::math::square(), mrpt::math::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or NULL is class does not support conversion to MATLAB. Definition at line 79 of file CSerializable.h.
|
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.
Definition at line 39 of file CPoint3D.cpp.
References version.
|
inlineinherited |
Common members of all points & poses classes.
< Get X coord.
Definition at line 113 of file CPoseOrPoint.h.
|
inlineinherited |
Definition at line 116 of file CPoseOrPoint.h.
|
inlineinherited |
v | Set X coord. |
Definition at line 119 of file CPoseOrPoint.h.
|
inlineinherited |
v | X+=v |
Definition at line 122 of file CPoseOrPoint.h.
|
inlineinherited |
< Get Y coord.
Definition at line 114 of file CPoseOrPoint.h.
|
inlineinherited |
Definition at line 117 of file CPoseOrPoint.h.
|
inlineinherited |
v | Set Y coord. |
Definition at line 120 of file CPoseOrPoint.h.
|
inlineinherited |
v | Y+=v |
Definition at line 123 of file CPoseOrPoint.h.
|
staticprotected |
Definition at line 35 of file CPoint3D.h.
|
staticinherited |
|
static |
Definition at line 35 of file CPoint3D.h.
|
staticinherited |
Definition at line 42 of file CSerializable.h.
|
static |
Definition at line 35 of file CPoint3D.h.
mrpt::math::CArrayDouble<3> mrpt::poses::CPoint3D::m_coords |
[x,y,z]
Definition at line 38 of file CPoint3D.h.
Referenced by mrpt::poses::CPose3DRotVec::operator+().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |