If point merging is needed, create the point map (map from old points to new points).
| 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() |
no test coverage detected