------------------------------------------------------------------------------
| 105 | |
| 106 | //------------------------------------------------------------------------------ |
| 107 | void vtkCellLocator::ComputeOctantBounds(double octantBounds[6], int i, int j, int k) |
| 108 | { |
| 109 | octantBounds[0] = this->Bounds[0] + i * H[0]; |
| 110 | octantBounds[1] = octantBounds[0] + H[0]; |
| 111 | octantBounds[2] = this->Bounds[2] + j * H[1]; |
| 112 | octantBounds[3] = octantBounds[2] + H[1]; |
| 113 | octantBounds[4] = this->Bounds[4] + k * H[2]; |
| 114 | octantBounds[5] = octantBounds[4] + H[2]; |
| 115 | } |
| 116 | |
| 117 | //------------------------------------------------------------------------------ |
| 118 | void vtkCellLocator::GetBucketIndices(const double x[3], int ijk[3]) |