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

Method operator()

Filters/Modeling/vtkContourLoopExtraction.cxx:204–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202{
203 template <class OffsetsT, class ConnectivityT>
204 void operator()(
205 OffsetsT* vtkNotUsed(offsets), ConnectivityT* conn, vtkIdType numIds, PointMap& ptMap)
206 {
207 auto connRange = GetRange(conn);
208 for (vtkIdType i = 0; i < numIds; ++i)
209 {
210 ptMap[connRange[i]] = 1;
211 }
212 }
213};
214
215// Helper function to in place mark point usage

Callers

nothing calls this directly

Calls 1

GetRangeFunction · 0.50

Tested by

no test coverage detected