You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use simpler approach suggested by @trask:
- Change loop initialization from frames.size() - 1 to frames.size() - 2
- Keep original access pattern frames.get(i + 1)
This is cleaner and maintains the original code intent better.
0 commit comments