------------------------------------------------------------------------------
| 144 | |
| 145 | //------------------------------------------------------------------------------ |
| 146 | void vtkRectilinearGrid::BuildPoints() |
| 147 | { |
| 148 | static double identityMatrix[9] = { 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0 }; |
| 149 | if (this->XCoordinates && this->YCoordinates && this->ZCoordinates) |
| 150 | { |
| 151 | this->SetStructuredPoints(vtkStructuredData::GetPoints(this->XCoordinates, this->YCoordinates, |
| 152 | this->ZCoordinates, this->GetExtent(), identityMatrix)); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | //------------------------------------------------------------------------------ |
| 157 | void vtkRectilinearGrid::GetCell(vtkIdType cellId, vtkGenericCell* cell) |
no test coverage detected