------------------------------------------------------------------------------ call modified on superclass
| 952 | //------------------------------------------------------------------------------ |
| 953 | // call modified on superclass |
| 954 | void vtkDataArray::Modified() |
| 955 | { |
| 956 | if (this->HasInformation()) |
| 957 | { |
| 958 | // Clear key-value pairs that are now out of date. |
| 959 | vtkInformation* info = this->GetInformation(); |
| 960 | info->Remove(L2_NORM_RANGE()); |
| 961 | info->Remove(L2_NORM_FINITE_RANGE()); |
| 962 | } |
| 963 | this->Superclass::Modified(); |
| 964 | } |
| 965 | |
| 966 | //------------------------------------------------------------------------------ |
| 967 | void vtkDataArray::GetDataTypeRange(double range[2]) |
no test coverage detected