MCPcopy Create free account
hub / github.com/Kitware/VTK / ReverseCell

Method ReverseCell

Common/DataModel/vtkCellArray.cxx:682–693  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

680
681//------------------------------------------------------------------------------
682void vtkCellArray::ReverseCell(vtkIdType loc)
683{
684 vtkIdType cellId;
685 this->Dispatch(deprec::LocationToCellIdFunctor{}, loc, cellId);
686 if (cellId < 0)
687 {
688 vtkErrorMacro("Invalid location, ignoring.");
689 return;
690 }
691
692 this->ReverseCellAtId(cellId);
693}
694
695//------------------------------------------------------------------------------
696void vtkCellArray::ReplaceCell(vtkIdType loc, int npts, const vtkIdType pts[])

Callers

nothing calls this directly

Calls 2

ReverseCellAtIdMethod · 0.95
DispatchMethod · 0.45

Tested by

no test coverage detected