------------------------------------------------------------------------------
| 2036 | |
| 2037 | //------------------------------------------------------------------------------ |
| 2038 | void vtkWindBladeReader::SetPointArrayStatus(const char* name, int status) |
| 2039 | { |
| 2040 | if (status) |
| 2041 | { |
| 2042 | this->PointDataArraySelection->EnableArray(name); |
| 2043 | } |
| 2044 | else |
| 2045 | { |
| 2046 | this->PointDataArraySelection->DisableArray(name); |
| 2047 | } |
| 2048 | } |
| 2049 | |
| 2050 | //------------------------------------------------------------------------------ |
| 2051 | vtkStructuredGrid* vtkWindBladeReader::GetFieldOutput() |
no test coverage detected