----------------------------------------------------------------------------------------------
| 184 | |
| 185 | //---------------------------------------------------------------------------------------------- |
| 186 | double vtkHyperTreeGridGeometryImpl::ComputeDistanceToInterfaceA(const double* xyz) const |
| 187 | { |
| 188 | // Compute the value of the distance from a point to the interface plane A. |
| 189 | double val = this->CellIntercepts[0] + this->CellNormals[0] * xyz[0] + |
| 190 | this->CellNormals[1] * xyz[1] + this->CellNormals[2] * xyz[2]; |
| 191 | return val; |
| 192 | } |
| 193 | |
| 194 | //---------------------------------------------------------------------------------------------- |
| 195 | double vtkHyperTreeGridGeometryImpl::ComputeDistanceToInterfaceB(const double* xyz) const |
no outgoing calls
no test coverage detected