------------------------------------------------------------------------------
| 769 | |
| 770 | //------------------------------------------------------------------------------ |
| 771 | int vtkDataArray::CopyInformation(vtkInformation* infoFrom, vtkTypeBool deep) |
| 772 | { |
| 773 | // Copy everything + give base classes a chance to |
| 774 | // Exclude keys which they don't want copied. |
| 775 | this->Superclass::CopyInformation(infoFrom, deep); |
| 776 | |
| 777 | // Remove any keys we own that are not to be copied here. |
| 778 | vtkInformation* myInfo = this->GetInformation(); |
| 779 | // Range: |
| 780 | if (myInfo->Has(L2_NORM_RANGE())) |
| 781 | { |
| 782 | myInfo->Remove(L2_NORM_RANGE()); |
| 783 | } |
| 784 | |
| 785 | return 1; |
| 786 | } |
| 787 | |
| 788 | //------------------------------------------------------------------------------ |
| 789 | void vtkDataArray::ComputeFiniteRange(double range[2], int comp) |
no test coverage detected