MDSTk Libraries
1.1.0
Medical Data Segmentation Toolkit
|
Class representing a vector in 3D space. More...
#include <mdsVector3.h>
Public Types | |
typedef CCoordinates3< T > | tBase |
Base class. | |
typedef tBase::tComponent | tComponent |
Coordinates type. | |
typedef CLibraryLockableClass < CSmallObjectBase< C, M, A > >::CLock | tLock |
Lock type. | |
typedef CPoint3< T > | tPoint |
Corresponding point. | |
Public Member Functions | |
void | create (const tPoint &p0, const tPoint &p1) |
Creates the vector from two given points. | |
CVector3 () | |
Default constructor. | |
CVector3 (const tComponent &px, const tComponent &py, const tComponent &pz=tComponent()) | |
Constructor initializes vector coordinates. | |
CVector3 (const tPoint &p0, const tPoint &p1) | |
Constructor creates vector from two given points. | |
CVector3 (const tBase &p) | |
Copy constructor. | |
tComponent | getLength () const |
Returns the vector length. | |
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 |
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 CVector3 &r) |
Returns true if two vectors are almost the same. | |
CVector3 & | makeNormal (const tPoint &p0, const tPoint &p1, const tPoint &p2) |
Computes normalized normal vector of given points. | |
CVector3 & | normalize () |
Normalizes the vector coordinates. | |
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) |
CVector3 & | 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) |
CVector3 & | vectorProduct (const CVector3 &u, const CVector3 &v) |
Vector product of two vectors. | |
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 |
~CVector3 () | |
Destructor. | |
Static Public Member Functions | |
static tComponent | dotProduct (const CVector3 &u, const CVector3 &v) |
Dot product of two vectors. | |
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 vector in 3D space.
typedef CCoordinates3<T> mds::img::CVector3< T >::tBase |
Base class.
Reimplemented from mds::img::CCoordinates3< T >.
typedef tBase::tComponent mds::img::CVector3< 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.
typedef CPoint3<T> mds::img::CVector3< T >::tPoint |
Corresponding point.
mds::img::CVector3< T >::CVector3 | ( | ) |
Default constructor.
mds::img::CVector3< T >::CVector3 | ( | const tComponent & | px, |
const tComponent & | py, | ||
const tComponent & | pz = tComponent() |
||
) |
Constructor initializes vector coordinates.
mds::img::CVector3< T >::CVector3 | ( | const tPoint & | p0, |
const tPoint & | p1 | ||
) |
Constructor creates vector from two given points.
mds::img::CVector3< T >::CVector3 | ( | const tBase & | p | ) |
Copy constructor.
mds::img::CVector3< T >::~CVector3 | ( | ) |
Destructor.
void mds::img::CVector3< T >::create | ( | const tPoint & | p0, |
const tPoint & | p1 | ||
) |
Creates the vector from two given points.
static tComponent mds::img::CVector3< T >::dotProduct | ( | const CVector3< T > & | u, |
const CVector3< T > & | v | ||
) | [static] |
Dot product of two vectors.
tComponent mds::img::CVector3< T >::getLength | ( | ) | const |
Returns the vector length.
tComponent mds::img::CCoordinates3< T >::getMult | ( | ) | const [inherited] |
Returns multiplication of all coordinates.
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::CVector3< T >::isSimilarTo | ( | const CVector3< T > & | r | ) |
Returns true if two vectors are almost the same.
static void mds::base::CLockableClass< CSmallObjectBase< C, M, A > >::lock | ( | ) | [static, inherited] |
Locks the object.
CVector3& mds::img::CVector3< T >::makeNormal | ( | const tPoint & | p0, |
const tPoint & | p1, | ||
const tPoint & | p2 | ||
) |
Computes normalized normal vector of given points.
CVector3& mds::img::CVector3< T >::normalize | ( | ) |
Normalizes the vector coordinates.
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] |
CVector3& mds::img::CVector3< 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.
CVector3& mds::img::CVector3< T >::vectorProduct | ( | const CVector3< T > & | u, |
const CVector3< T > & | v | ||
) |
Vector product of two vectors.
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] |