()
| 122 | ren1.SetActiveCamera(camera) |
| 123 | |
| 124 | def animate(): |
| 125 | numSteps = 500 |
| 126 | min = interpolator.GetMinimumT() |
| 127 | max = interpolator.GetMaximumT() |
| 128 | i = 0 |
| 129 | while i <= numSteps: |
| 130 | t = float(i) * (max - min) / float(numSteps) |
| 131 | interpolator.InterpolateCamera(t, camera) |
| 132 | renWin.Render() |
| 133 | i += 1 |
| 134 | |
| 135 | |
| 136 | interpolator.InterpolateCamera(8.2, camera) |
nothing calls this directly
no test coverage detected