------------------------------------------------------------------------------ K-d tree from points, for finding duplicate and near-by points
| 1669 | // K-d tree from points, for finding duplicate and near-by points |
| 1670 | // |
| 1671 | void vtkKdTree::BuildLocatorFromPoints(vtkPointSet* pointset) |
| 1672 | { |
| 1673 | this->BuildLocatorFromPoints(pointset->GetPoints()); |
| 1674 | } |
| 1675 | |
| 1676 | //------------------------------------------------------------------------------ |
| 1677 | void vtkKdTree::BuildLocatorFromPoints(vtkPoints* ptArray) |