------------------------------------------------------------------------------
| 986 | |
| 987 | //------------------------------------------------------------------------------ |
| 988 | void vtkAVSucdReader::SetPointArrayStatus(const char* name, int status) |
| 989 | { |
| 990 | if (status) |
| 991 | { |
| 992 | this->PointDataArraySelection->EnableArray(name); |
| 993 | } |
| 994 | else |
| 995 | { |
| 996 | this->PointDataArraySelection->DisableArray(name); |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | //------------------------------------------------------------------------------ |
| 1001 | const char* vtkAVSucdReader::GetCellArrayName(int index) |
nothing calls this directly
no test coverage detected