| 1750 | void* GetVoidPointer(vtkIdType idx) override { return this->Buffer->GetBuffer() + idx; } |
| 1751 | ValueType GetValue(vtkIdType valueIdx) const { return this->Buffer->GetBuffer()[valueIdx]; } |
| 1752 | void SetValue(vtkIdType valueIdx, ValueType value) |
| 1753 | { |
| 1754 | this->Buffer->GetBuffer()[valueIdx] = value; |
| 1755 | } |
| 1756 | void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const |
| 1757 | { |
| 1758 | const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents; |
no test coverage detected