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

Method RemoveReferenceToCell

Common/DataModel/vtkPolyData.cxx:1160–1163  ·  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.

Source from the content-addressed store, hash-verified

1158// cell's points to the cell. This operator does not reallocate memory; use the
1159// operator ResizeCellList() to do this if necessary.
1160void vtkPolyData::RemoveReferenceToCell(vtkIdType ptId, vtkIdType cellId)
1161{
1162 static_cast<vtkCellLinks*>(this->Links.Get())->RemoveCellReference(cellId, ptId);
1163}
1164
1165//------------------------------------------------------------------------------
1166// Add a reference to a cell in a particular point's link list. (You may also

Callers 8

MakeBoundaryMeshMethod · 0.45
CheckEdgeMethod · 0.45
FindEnclosingFacesMethod · 0.45
CheckEdgeMethod · 0.45
RequestDataMethod · 0.45
SplitVertexMethod · 0.45
CollapseEdgeMethod · 0.45

Calls 2

RemoveCellReferenceMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected