MCPcopy Create free account
hub / github.com/MITK/MITK / FillArray

Function FillArray

Modules/Core/include/mitkArray.h:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37 */
38 template <typename ArrayType, typename TCoordRep, unsigned int NVectorDimension>
39 void FillArray(itk::FixedArray<TCoordRep, NVectorDimension> &toArray, const ArrayType &array)
40 {
41 for (unsigned short int var = 0; var < NVectorDimension; ++var)
42 {
43 toArray[var] = array[var];
44 }
45 }
46
47 /**
48 * \brief Copy elements of an array into a new itk::FixedArray and return it.

Callers 8

mitkImageTestFunction · 0.85
PickWorldPointMethod · 0.85
PickObjectMethod · 0.85
MapMethod · 0.85
ItkPhysicalPointToWorldFunction · 0.85
WorldToItkPhysicalPointFunction · 0.85
InternalDrawContourMethod · 0.85

Calls

no outgoing calls

Tested by 1

mitkImageTestFunction · 0.68