Created
June 7, 2021 20:22
-
-
Save ranuzz/d5716e9c9c9f0732ce721b5949b5809f to your computer and use it in GitHub Desktop.
Little bit of an experiment using Python mode for Processing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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