------------------------------------------------------------------------------
| 1146 | |
| 1147 | //------------------------------------------------------------------------------ |
| 1148 | void vtkKdTree::SetDataBoundsToSpatialBounds(vtkKdNode* kd) |
| 1149 | { |
| 1150 | kd->SetMinDataBounds(kd->GetMinBounds()); |
| 1151 | kd->SetMaxDataBounds(kd->GetMaxBounds()); |
| 1152 | |
| 1153 | if (kd->GetLeft()) |
| 1154 | { |
| 1155 | vtkKdTree::SetDataBoundsToSpatialBounds(kd->GetLeft()); |
| 1156 | vtkKdTree::SetDataBoundsToSpatialBounds(kd->GetRight()); |
| 1157 | } |
| 1158 | } |
| 1159 | |
| 1160 | //------------------------------------------------------------------------------ |
| 1161 | int vtkKdTree::SelectCutDirection(vtkKdNode* kd) |
nothing calls this directly
no test coverage detected