------------------------------------------------------------------------------ Distance (squared) from any point anywhere to the boundary of spatial region
| 238 | // Distance (squared) from any point anywhere to the boundary of spatial region |
| 239 | // |
| 240 | double vtkKdNode::GetDistance2ToBoundary(double x, double y, double z, int useDataBounds = 0) |
| 241 | { |
| 242 | return this->GetDistance2ToBoundaryPrivate(x, y, z, nullptr, 0, useDataBounds); |
| 243 | } |
| 244 | |
| 245 | //------------------------------------------------------------------------------ |
| 246 | // Distance (squared) from any point anywhere to the boundary of spatial |
no test coverage detected