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

Method RemoveReferenceToCell

Common/DataModel/vtkUnstructuredGrid.cxx:1233–1236  ·  view source on GitHub ↗

------------------------------------------------------------------------------ Remove a reference to a cell in a particular point's link list. You may also consider using RemoveCellReference() to remove the references from all the cell's points to the cell. This operator does not reallocate memory; use the operator ResizeCellList() to do this if necessary. Note that dataset should be set to "Edita

Source from the content-addressed store, hash-verified

1231// memory; use the operator ResizeCellList() to do this if necessary. Note that
1232// dataset should be set to "Editable".
1233void vtkUnstructuredGrid::RemoveReferenceToCell(vtkIdType ptId, vtkIdType cellId)
1234{
1235 static_cast<vtkCellLinks*>(this->Links.Get())->RemoveCellReference(cellId, ptId);
1236}
1237
1238//------------------------------------------------------------------------------
1239// Add a reference to a cell in a particular point's link list. (You may also

Callers

nothing calls this directly

Calls 2

RemoveCellReferenceMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected