------------------------------------------------------------------------------
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | void vtkCartesianGrid::GetPoint(vtkIdType ptId, double x[3]) |
| 112 | { |
| 113 | vtkPoints* points = this->GetPoints(); |
| 114 | static_cast<vtkStructuredPointArray<double>*>(points->GetData())->GetTypedTuple(ptId, x); |
| 115 | } |
| 116 | |
| 117 | //------------------------------------------------------------------------------ |
| 118 | int vtkCartesianGrid::GetCellType(vtkIdType cellId) |
nothing calls this directly
no test coverage detected