MDSTk Libraries
1.1.0
Medical Data Segmentation Toolkit
|
Class representing a point in the 3D space. More...
#include <mdsPoint3.h>
Public Types | |
typedef CCoordinates3< T > | tBase |
tBase class. | |
typedef tBase::tComponent | tComponent |
Coordinates type. | |
typedef CLibraryLockableClass < CSmallObjectBase< C, M, A > >::CLock | tLock |
Lock type. | |
Public Member Functions | |
CPoint3 () | |
Default constructor. | |
CPoint3 (const tComponent &px, const tComponent &py, const tComponent &pz=tComponent()) | |
Constructor initializes point position. | |
CPoint3 (const tBase &p) | |
Copy constructor. | |
tComponent | getDistance (const CPoint3 &p) const |
Euclidean distance of two points. | |
tComponent | getMult () const |
Returns multiplication of all coordinates. | |
tComponent | getSquareDistance (const CPoint3 &p) const |
Square of the Euclidean distance of two points. | |
tComponent | getSum () const |
Returns sum of all coordinates. | |
tComponent & | getX () |
Returns reference to the x-coordinate. | |
const tComponent & | getX () const |
CCoordinates3 & | getXY (tComponent &px, tComponent &py) const |
Returns XY point coordinates. | |
CCoordinates3 & | getXYZ (tComponent &px, tComponent &py, tComponent &pz) const |
Returns all point coordinates. | |
tComponent & | getY () |
Returns reference to the y-coordinate. | |
const tComponent & | getY () const |
tComponent & | getZ () |
Returns reference to the z-coordinate. | |
const tComponent & | getZ () const |
bool | isSimilarTo (const CPoint3 &p) |
Returns true if two points are almost the same. | |
CCoordinates3 & | operator*= (const CCoordinates3 &p) |
CCoordinates3 & | operator*= (const tComponent &c) |
CCoordinates3 & | operator+= (const CCoordinates3 &p) |
CCoordinates3 & | operator+= (const tComponent &c) |
CCoordinates3 & | operator-= (const CCoordinates3 &p) |
CCoordinates3 & | operator-= (const tComponent &c) |
CCoordinates3 & | operator/= (const CCoordinates3 &p) |
CCoordinates3 & | operator/= (const tComponent &c) |
CPoint3 & | operator= (const tBase &p) |
Assignment operator. | |
CCoordinates3 & | setX (const tComponent &px) |
Returns point coordinate. | |
CCoordinates3 & | setXY (const tComponent &px, const tComponent &py) |
Sets XY point coordinates. | |
CCoordinates3 & | setXYZ (const tComponent &px, const tComponent &py, const tComponent &pz) |
Sets all point coordinates. | |
CCoordinates3 & | setY (const tComponent &py) |
CCoordinates3 & | setZ (const tComponent &pz) |
tComponent & | x () |
Returns reference to the x-coordinate. | |
const tComponent & | x () const |
tComponent & | y () |
Returns reference to the y-coordinate. | |
const tComponent & | y () const |
tComponent & | z () |
Returns reference to the z-coordinate. | |
const tComponent & | z () const |
~CPoint3 () | |
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 the 3D space. | |
tComponent | m_y |
tComponent | m_z |
Friends | |
bool | operator!= (const CCoordinates3 &l, const CCoordinates3 &r) |
CCoordinates3 | operator* (const CCoordinates3 &l, const CCoordinates3 &r) |
CCoordinates3 | operator+ (const CCoordinates3 &l, const CCoordinates3 &r) |
CCoordinates3 | operator- (const CCoordinates3 &l, const CCoordinates3 &r) |
CCoordinates3 | operator/ (const CCoordinates3 &l, const CCoordinates3 &r) |
bool | operator== (const CCoordinates3 &l, const CCoordinates3 &r) |
Class representing a point in the 3D space.
typedef CCoordinates3<T> mds::img::CPoint3< T >::tBase |
tBase class.
Reimplemented from mds::img::CCoordinates3< T >.
typedef tBase::tComponent mds::img::CPoint3< T >::tComponent |
Coordinates type.
Reimplemented from mds::img::CCoordinates3< T >.
typedef CLibraryLockableClass<CSmallObjectBase<C,M,A> >::CLock mds::base::CSmallObjectBase< C, M, A >::tLock [inherited] |
Lock type.
mds::img::CPoint3< T >::CPoint3 | ( | ) |
Default constructor.
mds::img::CPoint3< T >::CPoint3 | ( | const tComponent & | px, |
const tComponent & | py, | ||
const tComponent & | pz = tComponent() |
||
) |
Constructor initializes point position.
mds::img::CPoint3< T >::CPoint3 | ( | const tBase & | p | ) |
Copy constructor.
mds::img::CPoint3< T >::~CPoint3 | ( | ) |
Destructor.
tComponent mds::img::CPoint3< T >::getDistance | ( | const CPoint3< T > & | p | ) | const |
Euclidean distance of two points.
tComponent mds::img::CCoordinates3< T >::getMult | ( | ) | const [inherited] |
Returns multiplication of all coordinates.
tComponent mds::img::CPoint3< T >::getSquareDistance | ( | const CPoint3< T > & | p | ) | const |
Square of the Euclidean distance of two points.
tComponent mds::img::CCoordinates3< T >::getSum | ( | ) | const [inherited] |
Returns sum of all coordinates.
tComponent& mds::img::CCoordinates3< T >::getX | ( | ) | [inherited] |
Returns reference to the x-coordinate.
const tComponent& mds::img::CCoordinates3< T >::getX | ( | ) | const [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::getXY | ( | tComponent & | px, |
tComponent & | py | ||
) | const [inherited] |
Returns XY point coordinates.
CCoordinates3& mds::img::CCoordinates3< T >::getXYZ | ( | tComponent & | px, |
tComponent & | py, | ||
tComponent & | pz | ||
) | const [inherited] |
Returns all point coordinates.
tComponent& mds::img::CCoordinates3< T >::getY | ( | ) | [inherited] |
Returns reference to the y-coordinate.
const tComponent& mds::img::CCoordinates3< T >::getY | ( | ) | const [inherited] |
tComponent& mds::img::CCoordinates3< T >::getZ | ( | ) | [inherited] |
Returns reference to the z-coordinate.
const tComponent& mds::img::CCoordinates3< T >::getZ | ( | ) | const [inherited] |
bool mds::img::CPoint3< T >::isSimilarTo | ( | const CPoint3< T > & | p | ) |
Returns true if two points are almost the same.
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.
CCoordinates3& mds::img::CCoordinates3< T >::operator*= | ( | const CCoordinates3< T > & | p | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator*= | ( | const tComponent & | c | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator+= | ( | const CCoordinates3< T > & | p | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator+= | ( | const tComponent & | c | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator-= | ( | const CCoordinates3< T > & | p | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator-= | ( | const tComponent & | c | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator/= | ( | const CCoordinates3< T > & | p | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::operator/= | ( | const tComponent & | c | ) | [inherited] |
CPoint3& mds::img::CPoint3< T >::operator= | ( | const tBase & | p | ) |
Assignment operator.
CCoordinates3& mds::img::CCoordinates3< T >::setX | ( | const tComponent & | px | ) | [inherited] |
Returns point coordinate.
CCoordinates3& mds::img::CCoordinates3< T >::setXY | ( | const tComponent & | px, |
const tComponent & | py | ||
) | [inherited] |
Sets XY point coordinates.
CCoordinates3& mds::img::CCoordinates3< T >::setXYZ | ( | const tComponent & | px, |
const tComponent & | py, | ||
const tComponent & | pz | ||
) | [inherited] |
Sets all point coordinates.
CCoordinates3& mds::img::CCoordinates3< T >::setY | ( | const tComponent & | py | ) | [inherited] |
CCoordinates3& mds::img::CCoordinates3< T >::setZ | ( | const tComponent & | pz | ) | [inherited] |
static void mds::base::CLockableClass< CSmallObjectBase< C, M, A > >::unlock | ( | ) | [static, inherited] |
Locks the object.
tComponent& mds::img::CCoordinates3< T >::x | ( | ) | [inherited] |
Returns reference to the x-coordinate.
const tComponent& mds::img::CCoordinates3< T >::x | ( | ) | const [inherited] |
tComponent& mds::img::CCoordinates3< T >::y | ( | ) | [inherited] |
Returns reference to the y-coordinate.
const tComponent& mds::img::CCoordinates3< T >::y | ( | ) | const [inherited] |
tComponent& mds::img::CCoordinates3< T >::z | ( | ) | [inherited] |
Returns reference to the z-coordinate.
const tComponent& mds::img::CCoordinates3< T >::z | ( | ) | const [inherited] |
bool operator!= | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
CCoordinates3 operator* | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
CCoordinates3 operator+ | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
CCoordinates3 operator- | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
CCoordinates3 operator/ | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
bool operator== | ( | const CCoordinates3< T > & | l, |
const CCoordinates3< T > & | r | ||
) | [friend, inherited] |
tComponent mds::img::CCoordinates3< T >::m_x [protected, inherited] |
Coordinates in the 3D space.
tComponent mds::img::CCoordinates3< T >::m_y [protected, inherited] |
tComponent mds::img::CCoordinates3< T >::m_z [protected, inherited] |