| 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])) |
| 1079 | { |
| 1080 | return nullptr; |
| 1081 | } |
| 1082 | int localPos = pos - this->StartVal[this->MyId]; |
| 1083 | |
| 1084 | return this->CurrentPtArray + (3 * localPos); |
| 1085 | } |
| 1086 | float* vtkPKdTree::GetLocalValNext(int pos) |
| 1087 | { |
| 1088 | if ((pos < this->StartVal[this->MyId]) || (pos > this->EndVal[this->MyId])) |
no outgoing calls
no test coverage detected