------------------------------------------------------------------------------
| 44 | |
| 45 | //------------------------------------------------------------------------------ |
| 46 | int vtkCellLocator::vtkNeighborCells::InsertNextPoint(int* x) |
| 47 | { |
| 48 | int id = this->Points->GetMaxId() + 3; |
| 49 | this->Points->InsertValue(id, x[2]); |
| 50 | this->Points->SetValue(id - 2, x[0]); |
| 51 | this->Points->SetValue(id - 1, x[1]); |
| 52 | return id / 3; |
| 53 | } |
| 54 | |
| 55 | //------------------------------------------------------------------------------ |
| 56 | // Construct with automatic computation of divisions, averaging |
no test coverage detected