Skip to content

Instantly share code, notes, and snippets.

@ranuzz
Created June 7, 2021 20:22
Show Gist options
  • Save ranuzz/d5716e9c9c9f0732ce721b5949b5809f to your computer and use it in GitHub Desktop.
Save ranuzz/d5716e9c9c9f0732ce721b5949b5809f to your computer and use it in GitHub Desktop.
Little bit of an experiment using Python mode for Processing.
"""
Processing with Python !
"""
def setup():
size(1080/2, 1920/2)
def draw():
background(255)
fill(0)
ellipse(mouseX, mouseY, 50, 50)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment