Created
March 15, 2022 17:15
-
-
Save claytical/f45b74955efe05c4d744c9ccbf96a63f to your computer and use it in GitHub Desktop.
Processing, Line Drawing Program, Simplest
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
//draw a contiuous line | |
void setup() { | |
size(500,500); | |
background(0,0,0); | |
} | |
void draw() { | |
stroke(255,255,255); | |
line(pmouseX, pmouseY, mouseX, mouseY); | |
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