------------------------------------------------------------------------------
| 255 | |
| 256 | //------------------------------------------------------------------------------ |
| 257 | int vtkBandedPolyDataContourFilter::InsertCell( |
| 258 | vtkCellArray* cells, int npts, const vtkIdType* pts, int cellId, double s, vtkFloatArray* newS) |
| 259 | { |
| 260 | int idx = this->ComputeClippedIndex(s); |
| 261 | if (idx < 0) |
| 262 | { |
| 263 | return cellId; |
| 264 | } |
| 265 | cells->InsertNextCell(npts, pts); |
| 266 | return InsertNextScalar(newS, cellId, idx); |
| 267 | } |
| 268 | |
| 269 | //------------------------------------------------------------------------------ |
| 270 | int vtkBandedPolyDataContourFilter::InsertLine( |
no test coverage detected