------------------------------------------------------------------------------
| 283 | |
| 284 | //------------------------------------------------------------------------------ |
| 285 | int vtkBandedPolyDataContourFilter::ComputeClippedIndex(double s) |
| 286 | { |
| 287 | int idx = this->Internal->ComputeClipIndex(s); |
| 288 | |
| 289 | if (!this->Clipping || |
| 290 | (idx >= this->Internal->ClipIndex[0] && idx < this->Internal->ClipIndex[1])) |
| 291 | { |
| 292 | return idx; |
| 293 | } |
| 294 | return -1; |
| 295 | } |
| 296 | |
| 297 | //------------------------------------------------------------------------------ |
| 298 | int vtkBandedPolyDataContourFilter::InsertNextScalar(vtkFloatArray* scalars, int cellId, int idx) |
no test coverage detected