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

Method CreatePointMap

Filters/Geometry/vtkGeometryFilter.cxx:1271–1275  ·  view source on GitHub ↗

If point merging is needed, create the point map (map from old points to new points).

Source from the content-addressed store, hash-verified

1269 // If point merging is needed, create the point map (map from old points
1270 // to new points).
1271 void CreatePointMap(vtkIdType numPts)
1272 {
1273 this->PointMap = new TInputIdType[numPts];
1274 vtkSMPTools::Fill(this->PointMap, this->PointMap + numPts, -1);
1275 }
1276
1277 // Initialize thread data
1278 virtual void Initialize()

Callers 3

ExtractUGMethod · 0.80
ExtractStructuredMethod · 0.80
ExtractDSMethod · 0.80

Calls 1

FillFunction · 0.50

Tested by

no test coverage detected