------------------------------------------------------------------------------
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | void vtkAbstractCellLocator::FindCellsAlongLine( |
| 213 | const double p1[3], const double p2[3], double tolerance, vtkIdList* cells) |
| 214 | { |
| 215 | this->IntersectWithLine(p1, p2, tolerance, nullptr, cells, nullptr); |
| 216 | } |
| 217 | |
| 218 | //------------------------------------------------------------------------------ |
| 219 | void vtkAbstractCellLocator::FindCellsAlongPlane(const double vtkNotUsed(o)[3], |