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

Method ComputeOctantBounds

Common/DataModel/vtkCellLocator.cxx:107–115  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

105
106//------------------------------------------------------------------------------
107void 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//------------------------------------------------------------------------------
118void vtkCellLocator::GetBucketIndices(const double x[3], int ijk[3])

Callers 1

IntersectWithLineMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected