Outils pour utilisateurs

Outils du site


wiki:ateliers:processing:2:androidbw
android.pde
void setup() {
  orientation(LANDSCAPE);
  size(displayWidth, displayHeight);
}
 
void draw() {
  background(0);
  fill(255);
  if (mouseX >width/2) {
    rect(0, 0, width/2, height);
  }
  else {
    rect(width/2, 0, width/2, height);
  }
}
wiki/ateliers/processing/2/androidbw.txt · Dernière modification: 2016/09/11 13:16 (modification externe)