------------------------------------------------------------------------------ Reverse the order of point ids defining the cell.
| 1101 | //------------------------------------------------------------------------------ |
| 1102 | // Reverse the order of point ids defining the cell. |
| 1103 | void vtkPolyData::ReverseCell(vtkIdType cellId) |
| 1104 | { |
| 1105 | if (!this->Cells) |
| 1106 | { |
| 1107 | this->BuildCells(); |
| 1108 | } |
| 1109 | |
| 1110 | const TaggedCellId tag = this->Cells->GetTag(cellId); |
| 1111 | vtkCellArray* cells = this->GetCellArrayInternal(tag); |
| 1112 | cells->ReverseCellAtId(tag.GetCellId()); |
| 1113 | } |
| 1114 | |
| 1115 | //------------------------------------------------------------------------------ |
| 1116 | // Add a point to the cell data structure (after cell pointers have been |
no test coverage detected