| 182 | } |
| 183 | |
| 184 | inline bool InBB(const double* x, const double* bounds) |
| 185 | { |
| 186 | constexpr double delta[3] = { 1e-6, 1e-6, 1e-6 }; |
| 187 | return vtkMath::PointIsWithinBounds(x, bounds, delta); |
| 188 | } |
| 189 | |
| 190 | inline void UpdateBB(double* a, const double* b) |
| 191 | { |
no outgoing calls
no test coverage detected