------------------------------------------------------------------------------ Add a reference to a cell in a particular point's link list. (You may also consider using AddCellReference() to add the references from all the cell's points to the cell.) This operator does not realloc memory; use the operator ResizeCellList() to do this if necessary.
| 1168 | // cell's points to the cell.) This operator does not realloc memory; use the |
| 1169 | // operator ResizeCellList() to do this if necessary. |
| 1170 | void vtkPolyData::AddReferenceToCell(vtkIdType ptId, vtkIdType cellId) |
| 1171 | { |
| 1172 | static_cast<vtkCellLinks*>(this->Links.Get())->AddCellReference(cellId, ptId); |
| 1173 | } |
| 1174 | |
| 1175 | //------------------------------------------------------------------------------ |
| 1176 | void vtkPolyData::ReplaceCell(vtkIdType cellId, vtkIdList* ids) |
no test coverage detected