A little question: I just notice that the setup is executed twice when orientation(LANDSCAPE) is part of the setup. Is it a normal behaviour?
Ex: void setup(){ println("toto"); size(500, 650); }
=>toto writen in the console
void setup(){ println("toto"); orientation(LANDSCAPE); size(500, 650); }
=>toto writen in the console =>toto writen in the console