Skip to content

Instantly share code, notes, and snippets.

@brightcloudy
Created May 1, 2014 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brightcloudy/4953278d8c7b75fe5005 to your computer and use it in GitHub Desktop.
Save brightcloudy/4953278d8c7b75fe5005 to your computer and use it in GitHub Desktop.
>>> for i in range(0,255):
... o = float(i * float((2*math.pi) / 256))
... p = math.sin(o) * 127 + 127
... print str(int(round(p))) + ",",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment