Main MRPT website > C++ reference for MRPT 1.4.0
List of all members | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes

Detailed Description

Lightweight 2D point.

Allows coordinate access using [] operator.

See also
mrpt::poses::CPoint2D

Definition at line 33 of file lightweight_geom_data.h.

#include <mrpt/math/lightweight_geom_data.h>

Public Types

enum  { static_size = 2 }
 

Public Member Functions

 TPoint2D (const TPose2D &p)
 Constructor from TPose2D, discarding phi.
 
 TPoint2D (const TPoint3D &p)
 Constructor from TPoint3D, discarding z.
 
 TPoint2D (const TPose3D &p)
 Constructor from TPose3D, discarding z and the angular coordinates.
 
template<class DERIVEDCLASS >
 TPoint2D (const mrpt::poses::CPoseOrPoint< DERIVEDCLASS > &p)
 Constructor from CPoseOrPoint, perhaps losing 3D information.
 
 TPoint2D (const mrpt::utils::TPixelCoordf &p)
 Implicit transformation constructor from TPixelCoordf.
 
 TPoint2D (const mrpt::poses::CPoint2D &p)
 Implicit constructor from mrpt::poses::CPoint2D

 
 TPoint2D (double xx, double yy)
 Constructor from coordinates.
 
 TPoint2D ()
 Default fast constructor.
 
double & operator[] (size_t i)
 Coordinate access using operator[].
 
const double & operator[] (size_t i) const
 Coordinate access using operator[].
 
void getAsVector (std::vector< double > &v) const
 Transformation into vector.
 
bool operator< (const TPoint2D &p) const
 
TPoint2Doperator+= (const TPoint2D &p)
 
TPoint2Doperator-= (const TPoint2D &p)
 
TPoint2Doperator*= (double d)
 
TPoint2Doperator/= (double d)
 
TPoint2D operator+ (const TPoint2D &p) const
 
TPoint2D operator- (const TPoint2D &p) const
 
TPoint2D operator* (double d) const
 
TPoint2D operator/ (double d) const
 
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]" )
 
double norm () const
 Point norm.
 

Static Public Member Functions

static size_t size ()
 

Public Attributes

double x
 
double y
 X,Y coordinates.
 

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
static_size 

Definition at line 34 of file lightweight_geom_data.h.

Constructor & Destructor Documentation

◆ TPoint2D() [1/8]

mrpt::math::TPoint2D::TPoint2D ( const TPose2D p)
explicit

Constructor from TPose2D, discarding phi.

See also
TPose2D

◆ TPoint2D() [2/8]

mrpt::math::TPoint2D::TPoint2D ( const TPoint3D p)
explicit

Constructor from TPoint3D, discarding z.

See also
TPoint3D

◆ TPoint2D() [3/8]

mrpt::math::TPoint2D::TPoint2D ( const TPose3D p)
explicit

Constructor from TPose3D, discarding z and the angular coordinates.

See also
TPose3D

◆ TPoint2D() [4/8]

template<class DERIVEDCLASS >
mrpt::math::TPoint2D::TPoint2D ( const mrpt::poses::CPoseOrPoint< DERIVEDCLASS > &  p)
inlineexplicit

Constructor from CPoseOrPoint, perhaps losing 3D information.

See also
CPoseOrPoint mrpt::poses::CPoint3D,CPose2D,CPose3D

Definition at line 55 of file lightweight_geom_data.h.

◆ TPoint2D() [5/8]

mrpt::math::TPoint2D::TPoint2D ( const mrpt::utils::TPixelCoordf p)
inline

Implicit transformation constructor from TPixelCoordf.

Definition at line 58 of file lightweight_geom_data.h.

◆ TPoint2D() [6/8]

mrpt::math::TPoint2D::TPoint2D ( const mrpt::poses::CPoint2D p)

Implicit constructor from mrpt::poses::CPoint2D

◆ TPoint2D() [7/8]

mrpt::math::TPoint2D::TPoint2D ( double  xx,
double  yy 
)
inline

Constructor from coordinates.

Definition at line 65 of file lightweight_geom_data.h.

◆ TPoint2D() [8/8]

mrpt::math::TPoint2D::TPoint2D ( )
inline

Default fast constructor.

Initializes to garbage.

Definition at line 69 of file lightweight_geom_data.h.

Member Function Documentation

◆ asString() [1/2]

std::string mrpt::math::TPoint2D::asString ( ) const
inline

Definition at line 131 of file lightweight_geom_data.h.

References asString().

Referenced by asString().

◆ asString() [2/2]

void mrpt::math::TPoint2D::asString ( std::string &  s) const
inline

Returns a human-readable textual representation of the object (eg: "[0.02 1.04]" )

See also
fromString

Definition at line 130 of file lightweight_geom_data.h.

References mrpt::format().

◆ fromString()

void mrpt::math::TPoint2D::fromString ( const std::string &  s)

Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04]" )

See also
asString
Exceptions
std::exceptionOn invalid format

◆ getAsVector()

void mrpt::math::TPoint2D::getAsVector ( std::vector< double > &  v) const
inline

Transformation into vector.

Definition at line 77 of file lightweight_geom_data.h.

◆ norm()

double mrpt::math::TPoint2D::norm ( ) const
inline

Point norm.

Definition at line 141 of file lightweight_geom_data.h.

◆ operator*()

TPoint2D mrpt::math::TPoint2D::operator* ( double  d) const
inline

Definition at line 118 of file lightweight_geom_data.h.

◆ operator*=()

TPoint2D & mrpt::math::TPoint2D::operator*= ( double  d)
inline

Definition at line 96 of file lightweight_geom_data.h.

◆ operator+()

TPoint2D mrpt::math::TPoint2D::operator+ ( const TPoint2D p) const
inline

Definition at line 108 of file lightweight_geom_data.h.

◆ operator+=()

TPoint2D & mrpt::math::TPoint2D::operator+= ( const TPoint2D p)
inline

Definition at line 84 of file lightweight_geom_data.h.

References x, and y.

◆ operator-()

TPoint2D mrpt::math::TPoint2D::operator- ( const TPoint2D p) const
inline

Definition at line 113 of file lightweight_geom_data.h.

◆ operator-=()

TPoint2D & mrpt::math::TPoint2D::operator-= ( const TPoint2D p)
inline

Definition at line 90 of file lightweight_geom_data.h.

References x, and y.

◆ operator/()

TPoint2D mrpt::math::TPoint2D::operator/ ( double  d) const
inline

Definition at line 123 of file lightweight_geom_data.h.

◆ operator/=()

TPoint2D & mrpt::math::TPoint2D::operator/= ( double  d)
inline

Definition at line 102 of file lightweight_geom_data.h.

◆ operator<()

bool mrpt::math::TPoint2D::operator< ( const TPoint2D p) const

◆ operator[]() [1/2]

double & mrpt::math::TPoint2D::operator[] ( size_t  i)
inline

Coordinate access using operator[].

Order: x,y

Definition at line 71 of file lightweight_geom_data.h.

◆ operator[]() [2/2]

const double & mrpt::math::TPoint2D::operator[] ( size_t  i) const
inline

Coordinate access using operator[].

Order: x,y

Definition at line 73 of file lightweight_geom_data.h.

◆ size()

static size_t mrpt::math::TPoint2D::size ( )
inlinestatic

Definition at line 138 of file lightweight_geom_data.h.

Member Data Documentation

◆ x

double mrpt::math::TPoint2D::x

◆ y

double mrpt::math::TPoint2D::y



Page generated by Doxygen 1.9.6 for MRPT 1.4.0 SVN: at Fri Jan 20 00:13:14 UTC 2023