------------------------------------------------------------------------------
| 366 | |
| 367 | //------------------------------------------------------------------------------ |
| 368 | bool vtkClosestPointStrategy::InsideCellBounds(double x[3], vtkIdType cellId) |
| 369 | { |
| 370 | double bounds[6]; |
| 371 | this->PointSet->GetCellBounds(cellId, bounds); |
| 372 | return bounds[0] <= x[0] && x[0] <= bounds[1] && bounds[2] <= x[1] && x[1] <= bounds[3] && |
| 373 | bounds[4] <= x[2] && x[2] <= bounds[5]; |
| 374 | } |
| 375 | |
| 376 | //------------------------------------------------------------------------------ |
| 377 | void vtkClosestPointStrategy::CopyParameters(vtkFindCellStrategy* from) |
nothing calls this directly
no test coverage detected