MDSTk Libraries
1.1.0
Medical Data Segmentation Toolkit
|
Class representing coordinates in 2D space. More...
#include <mdsCoordinates.h>
Public Types | |
typedef mds::base::CSmallValueObject | tBase |
Base class. | |
typedef T | tComponent |
Coordinate type. | |
typedef CLibraryLockableClass < CSmallObjectBase< C, M, A > >::CLock | tLock |
Lock type. | |
Public Member Functions | |
CCoordinates2 () | |
Default constructor. | |
CCoordinates2 (const tComponent &px, const tComponent &py) | |
Constructor initializes 3D coordinates. | |
CCoordinates2 (const CCoordinates2 &p) | |
Copy constructor. | |
tComponent | getMult () const |
Returns multiplication of all coordinates. | |
tComponent | getSum () const |
Returns sum of all coordinates. | |
tComponent & | getX () |
Returns reference to the x-coordinate. | |
const tComponent & | getX () const |
CCoordinates2 & | getXY (tComponent &px, tComponent &py) const |
Returns XY coordinates. | |
tComponent & | getY () |
Returns reference to the y-coordinate. | |
const tComponent & | getY () const |
CCoordinates2 & | operator*= (const CCoordinates2 &p) |
CCoordinates2 & | operator*= (const tComponent &c) |
CCoordinates2 & | operator+= (const CCoordinates2 &p) |
CCoordinates2 & | operator+= (const tComponent &c) |
CCoordinates2 & | operator-= (const CCoordinates2 &p) |
CCoordinates2 & | operator-= (const tComponent &c) |
CCoordinates2 & | operator/= (const CCoordinates2 &p) |
CCoordinates2 & | operator/= (const tComponent &c) |
CCoordinates2 & | operator= (const CCoordinates2 &p) |
Assignment operator. | |
CCoordinates2 & | setX (const tComponent &px) |
Changes coordinates. | |
CCoordinates2 & | setXY (const tComponent &px, const tComponent &py) |
Sets XY point coordinates. | |
CCoordinates2 & | setY (const tComponent &py) |
tComponent & | x () |
Returns reference to the x-coordinate. | |
const tComponent & | x () const |
tComponent & | y () |
Returns reference to the y-coordinate. | |
const tComponent & | y () const |
~CCoordinates2 () | |
Destructor. | |
Static Public Member Functions | |
static void | lock () |
Locks the object. | |
static void | operator delete (void *p, std::size_t Size) |
Deallocates small object. | |
static void | operator delete (void *p, void *pPlace) |
Placement single-object delete merely calls global placement delete. | |
static void | operator delete[] (void *p, std::size_t Size) |
Deallocates array-object. | |
static void | operator delete[] (void *p, void *pPlace) |
Placement array-object delete merely calls global placement delete. | |
static void * | operator new (std::size_t Size) |
Allocates a small object. | |
static void * | operator new (std::size_t Size, void *pPlace) |
Placement single-object new merely calls global placement new. | |
static void * | operator new[] (std::size_t Size) |
Allocates array-object. | |
static void * | operator new[] (std::size_t Size, void *pPlace) |
Placement array-object new merely calls global placement new. | |
static void | unlock () |
Locks the object. | |
Protected Attributes | |
tComponent | m_x |
Coordinates in 2D space. | |
tComponent | m_y |
Friends | |
bool | operator!= (const CCoordinates2 &l, const CCoordinates2 &r) |
CCoordinates2 | operator* (const CCoordinates2 &l, const CCoordinates2 &r) |
CCoordinates2 | operator+ (const CCoordinates2 &l, const CCoordinates2 &r) |
CCoordinates2 | operator- (const CCoordinates2 &l, const CCoordinates2 &r) |
CCoordinates2 | operator/ (const CCoordinates2 &l, const CCoordinates2 &r) |
bool | operator== (const CCoordinates2 &l, const CCoordinates2 &r) |
Class representing coordinates in 2D space.
typedef mds::base::CSmallValueObject mds::img::CCoordinates2< T >::tBase |
Base class.
Reimplemented in mds::img::CPoint2< T >, mds::img::CPoint2< int >, mds::img::CVector2< T >, mds::img::CSize2< T >, and mds::img::CSize2< int >.
typedef T mds::img::CCoordinates2< T >::tComponent |
Coordinate type.
Reimplemented in mds::img::CPoint2< T >, mds::img::CPoint2< int >, mds::img::CVector2< T >, mds::img::CSize2< T >, and mds::img::CSize2< int >.
typedef CLibraryLockableClass<CSmallObjectBase<C,M,A> >::CLock mds::base::CSmallObjectBase< C, M, A >::tLock [inherited] |
Lock type.
mds::img::CCoordinates2< T >::CCoordinates2 | ( | ) |
Default constructor.
mds::img::CCoordinates2< T >::CCoordinates2 | ( | const tComponent & | px, |
const tComponent & | py | ||
) |
Constructor initializes 3D coordinates.
mds::img::CCoordinates2< T >::CCoordinates2 | ( | const CCoordinates2< T > & | p | ) |
Copy constructor.
mds::img::CCoordinates2< T >::~CCoordinates2 | ( | ) |
Destructor.
tComponent mds::img::CCoordinates2< T >::getMult | ( | ) | const |
Returns multiplication of all coordinates.
tComponent mds::img::CCoordinates2< T >::getSum | ( | ) | const |
Returns sum of all coordinates.
tComponent& mds::img::CCoordinates2< T >::getX | ( | ) |
Returns reference to the x-coordinate.
const tComponent& mds::img::CCoordinates2< T >::getX | ( | ) | const |
CCoordinates2& mds::img::CCoordinates2< T >::getXY | ( | tComponent & | px, |
tComponent & | py | ||
) | const |
Returns XY coordinates.
tComponent& mds::img::CCoordinates2< T >::getY | ( | ) |
Returns reference to the y-coordinate.
const tComponent& mds::img::CCoordinates2< T >::getY | ( | ) | const |
static void mds::base::CLockableClass< CSmallObjectBase< C, M, A > >::lock | ( | ) | [static, inherited] |
Locks the object.
static void mds::base::CSmallObjectBase< C, M, A >::operator delete | ( | void * | p, |
std::size_t | Size | ||
) | [static, inherited] |
Deallocates small object.
static void mds::base::CSmallObjectBase< C, M, A >::operator delete | ( | void * | p, |
void * | pPlace | ||
) | [static, inherited] |
Placement single-object delete merely calls global placement delete.
static void mds::base::CSmallObjectBase< C, M, A >::operator delete[] | ( | void * | p, |
std::size_t | Size | ||
) | [static, inherited] |
Deallocates array-object.
static void mds::base::CSmallObjectBase< C, M, A >::operator delete[] | ( | void * | p, |
void * | pPlace | ||
) | [static, inherited] |
Placement array-object delete merely calls global placement delete.
static void* mds::base::CSmallObjectBase< C, M, A >::operator new | ( | std::size_t | Size | ) | [static, inherited] |
Allocates a small object.
static void* mds::base::CSmallObjectBase< C, M, A >::operator new | ( | std::size_t | Size, |
void * | pPlace | ||
) | [static, inherited] |
Placement single-object new merely calls global placement new.
static void* mds::base::CSmallObjectBase< C, M, A >::operator new[] | ( | std::size_t | Size | ) | [static, inherited] |
Allocates array-object.
static void* mds::base::CSmallObjectBase< C, M, A >::operator new[] | ( | std::size_t | Size, |
void * | pPlace | ||
) | [static, inherited] |
Placement array-object new merely calls global placement new.
CCoordinates2& mds::img::CCoordinates2< T >::operator*= | ( | const CCoordinates2< T > & | p | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator*= | ( | const tComponent & | c | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator+= | ( | const CCoordinates2< T > & | p | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator+= | ( | const tComponent & | c | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator-= | ( | const CCoordinates2< T > & | p | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator-= | ( | const tComponent & | c | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator/= | ( | const CCoordinates2< T > & | p | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator/= | ( | const tComponent & | c | ) |
CCoordinates2& mds::img::CCoordinates2< T >::operator= | ( | const CCoordinates2< T > & | p | ) |
Assignment operator.
CCoordinates2& mds::img::CCoordinates2< T >::setX | ( | const tComponent & | px | ) |
Changes coordinates.
CCoordinates2& mds::img::CCoordinates2< T >::setXY | ( | const tComponent & | px, |
const tComponent & | py | ||
) |
Sets XY point coordinates.
CCoordinates2& mds::img::CCoordinates2< T >::setY | ( | const tComponent & | py | ) |
static void mds::base::CLockableClass< CSmallObjectBase< C, M, A > >::unlock | ( | ) | [static, inherited] |
Locks the object.
tComponent& mds::img::CCoordinates2< T >::x | ( | ) |
Returns reference to the x-coordinate.
const tComponent& mds::img::CCoordinates2< T >::x | ( | ) | const |
tComponent& mds::img::CCoordinates2< T >::y | ( | ) |
Returns reference to the y-coordinate.
const tComponent& mds::img::CCoordinates2< T >::y | ( | ) | const |
bool operator!= | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
CCoordinates2 operator* | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
CCoordinates2 operator+ | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
CCoordinates2 operator- | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
CCoordinates2 operator/ | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
bool operator== | ( | const CCoordinates2< T > & | l, |
const CCoordinates2< T > & | r | ||
) | [friend] |
tComponent mds::img::CCoordinates2< T >::m_x [protected] |
Coordinates in 2D space.
tComponent mds::img::CCoordinates2< T >::m_y [protected] |