Skip to content

Instantly share code, notes, and snippets.

@ExpandOcean
Created March 19, 2015 02:40
Show Gist options
  • Save ExpandOcean/683028dd14975186d275 to your computer and use it in GitHub Desktop.
Save ExpandOcean/683028dd14975186d275 to your computer and use it in GitHub Desktop.
static var in python's function
def _update_avg_fps(self,dt,L=[20 for _ in range(30)]):
L.pop(0)
L.append(1.0/dt)
self.avg_fps = sum(L) / 30.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment