------------------------------------------------------------------------------
| 233 | |
| 234 | //------------------------------------------------------------------------------ |
| 235 | int vtkDataArraySelection::GetArraySetting(int index) const |
| 236 | { |
| 237 | if (index >= 0 && index < this->GetNumberOfArrays()) |
| 238 | { |
| 239 | return this->Internal->Arrays[index].second ? 1 : 0; |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | //------------------------------------------------------------------------------ |
| 246 | void vtkDataArraySelection::RemoveAllArrays() |
no test coverage detected