------------------------------------------------------------------------------
| 743 | |
| 744 | //------------------------------------------------------------------------------ |
| 745 | inline int vtkPolyData::GetCellType(vtkIdType cellId) |
| 746 | { |
| 747 | if (!this->Cells) |
| 748 | { |
| 749 | this->BuildCells(); |
| 750 | } |
| 751 | return static_cast<int>(this->Cells->GetTag(cellId).GetCellType()); |
| 752 | } |
| 753 | |
| 754 | //------------------------------------------------------------------------------ |
| 755 | inline vtkIdType vtkPolyData::GetCellSize(vtkIdType cellId) |