------------------------------------------------------------------------------
| 1105 | |
| 1106 | //------------------------------------------------------------------------------ |
| 1107 | void vtkKdTree::CopyKdNode(vtkKdNode* to, vtkKdNode* from) |
| 1108 | { |
| 1109 | to->SetMinBounds(from->GetMinBounds()); |
| 1110 | to->SetMaxBounds(from->GetMaxBounds()); |
| 1111 | to->SetMinDataBounds(from->GetMinDataBounds()); |
| 1112 | to->SetMaxDataBounds(from->GetMaxDataBounds()); |
| 1113 | to->SetID(from->GetID()); |
| 1114 | to->SetMinID(from->GetMinID()); |
| 1115 | to->SetMaxID(from->GetMaxID()); |
| 1116 | to->SetNumberOfPoints(from->GetNumberOfPoints()); |
| 1117 | to->SetDim(from->GetDim()); |
| 1118 | } |
| 1119 | |
| 1120 | //------------------------------------------------------------------------------ |
| 1121 | int vtkKdTree::ComputeLevel(vtkKdNode* kd) |
nothing calls this directly
no test coverage detected