------------------------------------------------------------------------------
| 549 | |
| 550 | //------------------------------------------------------------------------------ |
| 551 | void vtkKdNode::DeleteChildNodes() |
| 552 | { |
| 553 | if (this->GetLeft()) |
| 554 | { |
| 555 | this->GetLeft()->SetUp(nullptr); |
| 556 | this->SetLeft(nullptr); |
| 557 | } |
| 558 | |
| 559 | if (this->GetRight()) |
| 560 | { |
| 561 | this->GetRight()->SetUp(nullptr); |
| 562 | this->SetRight(nullptr); |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | //------------------------------------------------------------------------------ |
| 567 | int vtkKdNode::IntersectsBox( |
no test coverage detected