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