================General tree methods======================================== ------------------------------------------------------------------------------
| 1020 | //================General tree methods======================================== |
| 1021 | //------------------------------------------------------------------------------ |
| 1022 | void vtkSphereTree::Build() |
| 1023 | { |
| 1024 | if (!this->DataSet) |
| 1025 | { |
| 1026 | return; |
| 1027 | } |
| 1028 | else |
| 1029 | { |
| 1030 | this->Build(this->DataSet); |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | //------------------------------------------------------------------------------ |
| 1035 | void vtkSphereTree::Build(vtkDataSet* input) |
nothing calls this directly
no test coverage detected