|
| | Point () |
| |
| template<typename TPointValueType > |
| | Point (const Point< TPointValueType, NPointDimension > &r) |
| |
| template<typename TPointValueType > |
| | Point (const TPointValueType r[NPointDimension]) |
| |
| template<typename TPointValueType > |
| | Point (const TPointValueType &v) |
| |
| | Point (const mitk::Point< TCoordRep, NPointDimension > &r) |
| |
| | Point (const TCoordRep r[NPointDimension]) |
| |
| | Point (const TCoordRep &v) |
| |
| | Point (const itk::Point< TCoordRep, NPointDimension > &p) |
| |
| template<typename... Args, typename = std::enable_if_t<(sizeof...(Args) == NPointDimension)>> |
| | Point (Args... args) |
| |
| template<typename ArrayType > |
| void | FillPoint (const ArrayType &array) |
| |
| template<typename ArrayType > |
| void | ToArray (ArrayType array) const |
| |
template<class TCoordRep, unsigned int NPointDimension = 3>
class mitk::Point< TCoordRep, NPointDimension >
Definition at line 38 of file mitkPoint.h.
template<class TCoordRep , unsigned int NPointDimension = 3>
template<typename ArrayType >
| void mitk::Point< TCoordRep, NPointDimension >::FillPoint |
( |
const ArrayType & |
array | ) |
|
|
inline |
Copies the elements from array array to this. Note that this method will assign doubles to floats without complaining!
- Parameters
-
| array | the array whose values shall be copied. Must overload [] operator. |
Definition at line 85 of file mitkPoint.h.