MCPcopy Create free account
hub / github.com/Kitware/VTK / operator()

Method operator()

Filters/Modeling/vtkContourLoopExtraction.cxx:225–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223{
224 template <class OffsetsT, class ConnectivityT>
225 void operator()(
226 OffsetsT* vtkNotUsed(offsets), ConnectivityT* conn, vtkIdType numIds, PointMap& ptMap)
227 {
228 auto connRange = GetRange(conn);
229 for (vtkIdType i = 0; i < numIds; ++i)
230 {
231 connRange[i] = ptMap[connRange[i]];
232 }
233 }
234};
235
236// Helper function to in place update point numbering

Callers

nothing calls this directly

Calls 1

GetRangeFunction · 0.50

Tested by

no test coverage detected