------------------------------------------------------------------------------ Given the extent, returns the data description given the dimensions (eg. VTK_STRUCTURED_SINGLE_POINT,VTK_STRUCTURED_X_LINE, VTK_STRUCTURED_XY_PLANE etc.)
| 82 | // Given the extent, returns the data description given the dimensions |
| 83 | // (eg. VTK_STRUCTURED_SINGLE_POINT,VTK_STRUCTURED_X_LINE, VTK_STRUCTURED_XY_PLANE etc.) |
| 84 | int vtkStructuredData::GetDataDescriptionFromExtent(int ext[6]) |
| 85 | { |
| 86 | int dims[3]; |
| 87 | vtkStructuredExtent::GetDimensions(ext, dims); |
| 88 | return (vtkStructuredData::GetDataDescription(dims)); |
| 89 | } |
| 90 | |
| 91 | //------------------------------------------------------------------------------ |
| 92 | // Specify the dimensions of a regular, rectangular dataset. The input is |
nothing calls this directly
no test coverage detected