| 72 | */ |
| 73 | template <typename ArrayType, typename TCoordRep, unsigned int NVectorDimension> |
| 74 | void ToArray(ArrayType &array, const itk::FixedArray<TCoordRep, NVectorDimension> &vectorOrPoint) |
| 75 | { |
| 76 | for (unsigned short int var = 0; var < NVectorDimension; ++var) |
| 77 | { |
| 78 | array[var] = vectorOrPoint[var]; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * \brief Copy elements from an itk::FixedArray into a new array and return it. |
no outgoing calls
no test coverage detected