------------------------------------------------------------------------------
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | vtkPoints* vtkCartesianGrid::GetPoints() |
| 102 | { |
| 103 | if (this->StructuredPoints == nullptr) |
| 104 | { |
| 105 | this->BuildPoints(); |
| 106 | } |
| 107 | return this->StructuredPoints.Get(); |
| 108 | } |
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | void vtkCartesianGrid::GetPoint(vtkIdType ptId, double x[3]) |
no test coverage detected