Skip to content

Instantly share code, notes, and snippets.

@federico-pepe
Created October 7, 2015 17:13
Show Gist options
  • Select an option

  • Save federico-pepe/2bdb7dc2a57a9047c84d to your computer and use it in GitHub Desktop.

Select an option

Save federico-pepe/2bdb7dc2a57a9047c84d to your computer and use it in GitHub Desktop.
Operatori Logici 2
void setup() {
size(500, 500);
}
void draw() {
if((mouseX < width/2) && (mouseY < height/2)) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment