------------------------------------------------------------------------------
| 38 | |
| 39 | //------------------------------------------------------------------------------ |
| 40 | void vtkAdaptiveSubdivisionFilter::CreateDefaultLocator() |
| 41 | { |
| 42 | if (this->Locator == nullptr) |
| 43 | { |
| 44 | this->Locator = vtkMergePoints::New(); |
| 45 | this->Locator->Register(this); |
| 46 | this->Locator->Delete(); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | //------------------------------------------------------------------------------ |
| 51 | // Overload standard modified time function. |
no test coverage detected