non thread-safe version
| 285 | |
| 286 | // non thread-safe version |
| 287 | vtkIdType vtkmDataSet::FindCell( |
| 288 | double x[3], vtkCell*, vtkIdType, double, int& subId, double pcoords[3], double* weights) |
| 289 | { |
| 290 | // just call the thread-safe version |
| 291 | return this->FindCell(x, nullptr, nullptr, -1, 0.0, subId, pcoords, weights); |
| 292 | } |
| 293 | |
| 294 | // thread-safe version |
| 295 | vtkIdType vtkmDataSet::FindCell(double x[3], vtkCell*, vtkGenericCell*, vtkIdType, double, |