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

Function DataSetExecute

Filters/Geometry/vtkMarkBoundaryFilter.cxx:942–951  ·  view source on GitHub ↗

Fallback for other dataset types.

Source from the content-addressed store, hash-verified

940
941// Fallback for other dataset types.
942int DataSetExecute(vtkDataSet* input, const unsigned char* ghosts, unsigned char* bPoints,
943 unsigned char* bCells, vtkIdType* bFaces, vtkMarkBoundaryFilter* self)
944{
945 // Perform the threaded boundary marking.
946 vtkIdType numCells = input->GetNumberOfCells();
947 MarkDataSet mark(input, ghosts, bPoints, bCells, bFaces, self);
948 vtkSMPTools::For(0, numCells, mark);
949
950 return 1;
951}
952
953} // anonymous namespace
954

Callers 2

RequestDataMethod · 0.85

Calls 2

ForFunction · 0.50
GetNumberOfCellsMethod · 0.45

Tested by

no test coverage detected