Given a bucket number, return the point ids in that bucket.
| 219 | |
| 220 | // Given a bucket number, return the point ids in that bucket. |
| 221 | const vtkLocatorTuple<TIds>* GetIds(vtkIdType bucketNum) |
| 222 | { |
| 223 | return this->Map + this->Offsets[bucketNum]; |
| 224 | } |
| 225 | |
| 226 | // Given a bucket number, return the point ids in that bucket. |
| 227 | void GetIds(vtkIdType bucketNum, vtkIdList* bList) |
no test coverage detected