MCPcopy Create free account
hub / github.com/Kitware/VTK / GetLocalValNext

Method GetLocalValNext

Filters/Parallel/vtkPKdTree.cxx:1086–1095  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1084 return this->CurrentPtArray + (3 * localPos);
1085}
1086float* vtkPKdTree::GetLocalValNext(int pos)
1087{
1088 if ((pos < this->StartVal[this->MyId]) || (pos > this->EndVal[this->MyId]))
1089 {
1090 return nullptr;
1091 }
1092 int localPos = pos - this->StartVal[this->MyId];
1093
1094 return this->NextPtArray + (3 * localPos);
1095}
1096void vtkPKdTree::SetLocalVal(int pos, float* val)
1097{
1098 if ((pos < this->StartVal[this->MyId]) || (pos > this->EndVal[this->MyId]))

Callers 1

DoTransferMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected