We are about to switch to a new forum software. Until then we have removed the registration on this forum.
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
Answers
yes, if your phone isn't in landscape orientation.