| 44 | ~vtkHyperArray() { delete[] this->Array; } |
| 45 | vtkIdType GetNumberOfPoints() { return this->MaxId + 1; } |
| 46 | vtkHyperPoint* GetHyperPoint(vtkIdType i) { return this->Array + i; } |
| 47 | vtkHyperPoint* InsertNextHyperPoint() |
| 48 | { |
| 49 | if (++this->MaxId >= this->Size) |
no outgoing calls
no test coverage detected