------------------------------------------------------------------------------
| 82 | |
| 83 | //------------------------------------------------------------------------------ |
| 84 | void vtkAbstractCellLocator::UpdateInternalWeights() |
| 85 | { |
| 86 | if (this->WeightsTime > this->MTime || !this->DataSet) |
| 87 | { |
| 88 | return; |
| 89 | } |
| 90 | |
| 91 | this->Weights.resize(this->DataSet->GetMaxCellSize()); |
| 92 | this->WeightsTime.Modified(); |
| 93 | } |
| 94 | |
| 95 | //------------------------------------------------------------------------------ |
| 96 | bool vtkAbstractCellLocator::IsInBounds(const double bounds[6], const double x[3], double tol) |
no test coverage detected