The number of point ids in a bucket is determined by computing the difference between the offsets into the sorted points array.
| 213 | // The number of point ids in a bucket is determined by computing the |
| 214 | // difference between the offsets into the sorted points array. |
| 215 | vtkIdType GetNumberOfIds(vtkIdType bucketNum) |
| 216 | { |
| 217 | return (this->Offsets[bucketNum + 1] - this->Offsets[bucketNum]); |
| 218 | } |
| 219 | |
| 220 | // Given a bucket number, return the point ids in that bucket. |
| 221 | const vtkLocatorTuple<TIds>* GetIds(vtkIdType bucketNum) |
no outgoing calls
no test coverage detected