| 20 | void* GetVoidPointer(vtkIdType idx) override { return this->Buffer->GetBuffer() + idx; } |
| 21 | ValueType GetValue(vtkIdType valueIdx) const { return this->Buffer->GetBuffer()[valueIdx]; } |
| 22 | void SetValue(vtkIdType valueIdx, ValueType value) |
| 23 | { |
| 24 | this->Buffer->GetBuffer()[valueIdx] = value; |
| 25 | } |
| 26 | void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const |
| 27 | { |
| 28 | const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents; |