| 100 | /** \brief Fill a 3D array/vector with the given x, y, z values. */ |
| 101 | template <class Tout> |
| 102 | inline void FillVector3D(Tout &out, mitk::ScalarType x, mitk::ScalarType y, mitk::ScalarType z) |
| 103 | { |
| 104 | out[0] = x; |
| 105 | out[1] = y; |
| 106 | out[2] = z; |
| 107 | } |
| 108 | |
| 109 | /** \brief Fill a 4D array/vector with the given x, y, z, t values. */ |
| 110 | template <class Tout> |
no outgoing calls