------------------------------------------------------------------------------
| 101 | |
| 102 | //------------------------------------------------------------------------------ |
| 103 | int vtkAbstractCellLocator::IntersectWithLine(const double p1[3], const double p2[3], double tol, |
| 104 | double& t, double x[3], double pcoords[3], int& subId) |
| 105 | { |
| 106 | vtkIdType cellId = -1; |
| 107 | return this->IntersectWithLine(p1, p2, tol, t, x, pcoords, subId, cellId); |
| 108 | } |
| 109 | |
| 110 | //------------------------------------------------------------------------------ |
| 111 | int vtkAbstractCellLocator::IntersectWithLine(const double p1[3], const double p2[3], double tol, |
no test coverage detected