Skip to content

Instantly share code, notes, and snippets.

@claytical
Created March 15, 2022 17:15
Show Gist options
  • Save claytical/f45b74955efe05c4d744c9ccbf96a63f to your computer and use it in GitHub Desktop.
Save claytical/f45b74955efe05c4d744c9ccbf96a63f to your computer and use it in GitHub Desktop.
Processing, Line Drawing Program, Simplest
//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