Created
March 15, 2022 17:16
-
-
Save claytical/69ce399b7be2fee1591759560bb480b7 to your computer and use it in GitHub Desktop.
Processing, Loop and Log
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
//LOOP & LOG | |
void setup() { | |
println("I run once"); | |
} | |
void draw() { | |
println("Mouse X: " + mouseX + " Mouse Y: " + mouseY); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment