------------------------------------------------------------------------------
| 850 | |
| 851 | //------------------------------------------------------------------------------ |
| 852 | inline vtkCellArray* vtkPolyData::GetCellArrayInternal(vtkPolyData::TaggedCellId tag) |
| 853 | { |
| 854 | switch (tag.GetTarget()) |
| 855 | { |
| 856 | case vtkPolyData_detail::Target::Verts: |
| 857 | return this->Verts; |
| 858 | case vtkPolyData_detail::Target::Lines: |
| 859 | return this->Lines; |
| 860 | case vtkPolyData_detail::Target::Polys: |
| 861 | return this->Polys; |
| 862 | case vtkPolyData_detail::Target::Strips: |
| 863 | return this->Strips; |
| 864 | } |
| 865 | return nullptr; // unreachable |
| 866 | } |
| 867 | |
| 868 | //------------------------------------------------------------------------------ |
| 869 | inline void vtkPolyData::ReplaceCellPoint(vtkIdType cellId, vtkIdType oldPtId, vtkIdType newPtId) |
no test coverage detected