blob: 54756c1209cd4f6098472e554b90bc8b9979db39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "ofMain.h"
#include "ofApp.h"
//========================================================================
int main(int argc, char *argv[]){
ofGLFWWindowSettings settings;
settings.setSize(1024,400); // 1/8 scale
//1200 = 13.2° = 42898 pts theoretical
shared_ptr<ofAppBaseWindow> mainWindow = ofCreateWindow(settings);
shared_ptr<ofApp> mainApp(new ofApp);
ofRunApp(mainWindow, mainApp);
ofRunMainLoop();
}
|