#include "ofMain.h" #include "ofApp.h" //======================================================================== int main(int argc, char *argv[]){ ofGLFWWindowSettings settings; settings.width = 1200; settings.height = 900; //1200 = 13.2° = 42898 pts theoretical shared_ptr mainWindow = ofCreateWindow(settings); shared_ptr mainApp(new ofApp); ofRunApp(mainWindow, mainApp); ofRunMainLoop(); }