Render window stuck after changing interpolation type from spline to linear
Hi all, I’m using vtkCameraInterpolator for some program and I find an example named 'InterpolateCamera' on kitware(link below). example It worked well under the original interpolation type which is spline. But when I changed the interpolation type from spline to linear, the render window stuck. What should I do if I need to set the interpolation type to linear but not spline?
Before
`vtkNew interpolator;
interpolator->SetInterpolationTypeToSpline(); `
After
`vtkNew interpolator;
interpolator->SetInterpolationTypeToLinear(); `