------------------------------------------------------------------------------ Specify the dimensions of the data on which to sample.
| 281 | //------------------------------------------------------------------------------ |
| 282 | // Specify the dimensions of the data on which to sample. |
| 283 | void vtkSampleFunction::SetSampleDimensions(int i, int j, int k) |
| 284 | { |
| 285 | int dim[3]; |
| 286 | |
| 287 | dim[0] = i; |
| 288 | dim[1] = j; |
| 289 | dim[2] = k; |
| 290 | |
| 291 | this->SetSampleDimensions(dim); |
| 292 | } |
| 293 | |
| 294 | //------------------------------------------------------------------------------ |
| 295 | // Specify the dimensions of the data on which to sample. |