| 75 | // Convert between Exodus node ids and VTK point ids. |
| 76 | static vtkIdType NodeToPoint(const int& id) { return static_cast<vtkIdType>(id - 1); } |
| 77 | static int PointToNode(const vtkIdType& id) { return static_cast<int>(id + 1); } |
| 78 | |
| 79 | // Convenience methods to get pointers into the element array. |
| 80 | int* GetElementStart(vtkIdType cellId) const |