------------------------------------------------------------------------------
| 1056 | |
| 1057 | //------------------------------------------------------------------------------ |
| 1058 | void vtkSLACReader::SetVariableArrayStatus(const char* name, int status) |
| 1059 | { |
| 1060 | vtkDebugMacro("Set cell array \"" << name << "\" status to: " << status); |
| 1061 | if (status) |
| 1062 | { |
| 1063 | this->Internal->VariableArraySelection->EnableArray(name); |
| 1064 | } |
| 1065 | else |
| 1066 | { |
| 1067 | this->Internal->VariableArraySelection->DisableArray(name); |
| 1068 | } |
| 1069 | } |
| 1070 | |
| 1071 | //------------------------------------------------------------------------------ |
| 1072 | void vtkSLACReader::ResetFrequencyScales() |
no test coverage detected