------------------------------------------------------------------------------ Initialize the point insertion process. The newPts is an object representing point coordinates into which incremental insertion methods place their data. Bounds are the box that the points lie in.
| 1095 | // point coordinates into which incremental insertion methods place their |
| 1096 | // data. Bounds are the box that the points lie in. |
| 1097 | int vtkPointLocator::InitPointInsertion(vtkPoints* newPts, const double bounds[6]) |
| 1098 | { |
| 1099 | return this->InitPointInsertion(newPts, bounds, 0); |
| 1100 | } |
| 1101 | |
| 1102 | //------------------------------------------------------------------------------ |
| 1103 | // Initialize the point insertion process. The newPts is an object representing |
nothing calls this directly
no test coverage detected