Skip to content

Instantly share code, notes, and snippets.

@dcbriccetti
Created November 12, 2020 03:28
Show Gist options
  • Save dcbriccetti/dbcfddb081583d14582806466215fa7d to your computer and use it in GitHub Desktop.
Save dcbriccetti/dbcfddb081583d14582806466215fa7d to your computer and use it in GitHub Desktop.
void setup() {
size(1024, 768, P2D);
background(0);
}
void draw () {
stroke(255, 0, 0);
line(0, 0, mouseX, mouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment