@{ * Set dimensions of rectilinear grid dataset. * This also sets the extent. */
| 188 | * This also sets the extent. |
| 189 | */ |
| 190 | void SetDimensions(int i, int j, int k) { this->SetExtent(0, i - 1, 0, j - 1, 0, k - 1); }; |
| 191 | void SetDimensions(const int dim[3]) |
| 192 | { |
| 193 | this->SetExtent(0, dim[0] - 1, 0, dim[1] - 1, 0, dim[2] - 1); |
no test coverage detected