@{ * Return the indices of the two valid dimensions. */
| 218 | * Return the indices of the two valid dimensions. |
| 219 | */ |
| 220 | void Get2DAxes(unsigned int& axis1, unsigned int& axis2) const |
| 221 | { |
| 222 | assert("pre: valid_dim" && this->GetDimension() == 2); |
| 223 | axis1 = this->Axis[0]; |
| 224 | axis2 = this->Axis[1]; |
| 225 | } |
| 226 | ///@} |
| 227 | |
| 228 | ///@{ |
nothing calls this directly
no test coverage detected