------------------------------------------------------------------------------
| 497 | |
| 498 | //------------------------------------------------------------------------------ |
| 499 | void vtkHyperTreeGridContour::CreateDefaultLocator() |
| 500 | { |
| 501 | // If no locator instance variable create a merge point one |
| 502 | if (!this->Locator) |
| 503 | { |
| 504 | this->Locator = vtkMergePoints::New(); |
| 505 | this->Locator->Register(this); |
| 506 | this->Locator->Delete(); |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | //------------------------------------------------------------------------------ |
| 511 | vtkMTimeType vtkHyperTreeGridContour::GetMTime() |
no test coverage detected