------------------------------------------------------------------------------
| 132 | |
| 133 | //------------------------------------------------------------------------------ |
| 134 | vtkIdType vtkPolyData::GetCellIdRelativeToCellArray(vtkIdType cellId) |
| 135 | { |
| 136 | if (!this->Cells) |
| 137 | { |
| 138 | this->BuildCells(); |
| 139 | } |
| 140 | return this->Cells->GetTag(cellId).GetCellId(); |
| 141 | } |
| 142 | |
| 143 | //------------------------------------------------------------------------------ |
| 144 | vtkCell* vtkPolyData::GetCell(vtkIdType cellId) |
no test coverage detected