#Documentation # @brief Get the spacing (size of a pixel). #
| 129 | //## @brief Get the spacing (size of a pixel). |
| 130 | //## |
| 131 | mitk::Vector3D GeometryTransformHolder::GetSpacing() const |
| 132 | { |
| 133 | mitk::Vector3D spacing; |
| 134 | CopySpacingFromTransform(this->GetIndexToWorldTransform(), spacing); |
| 135 | return spacing; |
| 136 | } |
| 137 | |
| 138 | //##Documentation |
| 139 | //## @brief Set the spacing. |
no test coverage detected