------------------------------------------------------------------------------ Specify a spatial locator for merging points. By default, an instance of vtkMergePoints is used.
| 266 | // Specify a spatial locator for merging points. By default, |
| 267 | // an instance of vtkMergePoints is used. |
| 268 | void vtkGenericContourFilter::CreateDefaultLocator() |
| 269 | { |
| 270 | if (this->Locator == nullptr) |
| 271 | { |
| 272 | this->Locator = vtkMergePoints::New(); |
| 273 | this->Locator->Register(this); |
| 274 | this->Locator->Delete(); |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | //------------------------------------------------------------------------------ |
| 279 | void vtkGenericContourFilter::SelectInputScalars(const char* fieldName) |
no test coverage detected