Given a bucket number, return the point ids in that bucket.
| 243 | |
| 244 | // Given a bucket number, return the point ids in that bucket. |
| 245 | const vtkLocatorTuple<TIds>* GetIds(vtkIdType bucketNum) |
| 246 | { |
| 247 | return this->Map + this->Offsets[bucketNum]; |
| 248 | } |
| 249 | |
| 250 | // Given a bucket number, return the point ids in that bucket. |
| 251 | void GetIds(vtkIdType bucketNum, vtkIdList* bList) |
no test coverage detected