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

Function GetCellNeighbors

Common/DataModel/vtkUnstructuredGrid.h:300–303  ·  view source on GitHub ↗

@{ * A topological inquiry to retrieve all of the cells using list of points * exclusive of the current cell specified (e.g., cellId). THIS METHOD IS * THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT * MODIFIED. */

Source from the content-addressed store, hash-verified

298 * MODIFIED.
299 */
300 void GetCellNeighbors(vtkIdType cellId, vtkIdList* ptIds, vtkIdList* cellIds) override
301 {
302 this->GetCellNeighbors(cellId, ptIds->GetNumberOfIds(), ptIds->GetPointer(0), cellIds);
303 }
304 void GetCellNeighbors(
305 vtkIdType cellId, vtkIdType npts, const vtkIdType* ptIds, vtkIdList* cellIds);
306 ///@}

Callers 2

GetCellNeighborsMethod · 0.85
GetCellNeighborsMethod · 0.85

Calls 3

GetCellNeighborsMethod · 0.45
GetNumberOfIdsMethod · 0.45
GetPointerMethod · 0.45

Tested by

no test coverage detected