------------------------------------------------------------------------------
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | void vtkImageSincInterpolator::SetWindowFunction(int mode) |
| 213 | { |
| 214 | mode = vtkMath::ClampValue(mode, VTK_LANCZOS_WINDOW, VTK_BLACKMAN_NUTTALL4); |
| 215 | if (this->WindowFunction != mode) |
| 216 | { |
| 217 | this->WindowFunction = mode; |
| 218 | this->Modified(); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | //------------------------------------------------------------------------------ |
| 223 | const char* vtkImageSincInterpolator::GetWindowFunctionAsString() |
no test coverage detected