Specify a spatial locator for merging points. By default, an instance of vtkMergePoints is used.
| 296 | // Specify a spatial locator for merging points. By default, |
| 297 | // an instance of vtkMergePoints is used. |
| 298 | void vtkMCubesReader::SetLocator(vtkIncrementalPointLocator* locator) |
| 299 | { |
| 300 | if (this->Locator == locator) |
| 301 | { |
| 302 | return; |
| 303 | } |
| 304 | if (this->Locator) |
| 305 | { |
| 306 | this->Locator->UnRegister(this); |
| 307 | this->Locator = nullptr; |
| 308 | } |
| 309 | if (locator) |
| 310 | { |
| 311 | locator->Register(this); |
| 312 | } |
| 313 | this->Locator = locator; |
| 314 | this->Modified(); |
| 315 | } |
| 316 | |
| 317 | void vtkMCubesReader::SetDataByteOrderToBigEndian() |
| 318 | { |
no test coverage detected