| 1066 | } |
| 1067 | } |
| 1068 | int vtkPKdTree::WhoHas(int pos) |
| 1069 | { |
| 1070 | if ((pos < 0) || (pos >= this->TotalNumCells)) |
| 1071 | { |
| 1072 | return -1; |
| 1073 | } |
| 1074 | return _whoHas(0, this->NumProcesses - 1, pos); |
| 1075 | } |
| 1076 | float* vtkPKdTree::GetLocalVal(int pos) |
| 1077 | { |
| 1078 | if ((pos < this->StartVal[this->MyId]) || (pos > this->EndVal[this->MyId])) |
no outgoing calls
no test coverage detected