------------------------------------------------------------------------------
| 225 | |
| 226 | //------------------------------------------------------------------------------ |
| 227 | vtkIdType vtkAbstractCellLocator::FindCell(double x[3]) |
| 228 | { |
| 229 | this->UpdateInternalWeights(); |
| 230 | double dist2 = 0, pcoords[3]; |
| 231 | return this->FindCell(x, dist2, this->GenericCell, pcoords, this->Weights.data()); |
| 232 | } |
| 233 | |
| 234 | //------------------------------------------------------------------------------ |
| 235 | vtkIdType vtkAbstractCellLocator::FindCell( |
nothing calls this directly
no test coverage detected