* Reverses the order of the point ids in the current cell. */
| 221 | * Reverses the order of the point ids in the current cell. |
| 222 | */ |
| 223 | void ReverseCurrentCell() |
| 224 | { |
| 225 | assert(this->CurrentCellId < this->NumberOfCells); |
| 226 | this->CellArray->ReverseCellAtId(this->CurrentCellId); |
| 227 | } |
| 228 | |
| 229 | friend class vtkCellArray; |
| 230 |
nothing calls this directly
no test coverage detected