------------------------------------------------------------------------------
| 743 | |
| 744 | //------------------------------------------------------------------------------ |
| 745 | void vtkDataArray::Fill(double value) |
| 746 | { |
| 747 | for (int i = 0; i < this->GetNumberOfComponents(); ++i) |
| 748 | { |
| 749 | this->FillComponent(i, value); |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | //------------------------------------------------------------------------------ |
| 754 | double vtkDataArray::GetMaxNorm() |
nothing calls this directly
no test coverage detected