summaryrefslogtreecommitdiff
path: root/polyTest/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2018-01-30 00:35:30 +0000
committerTim Redfern <tim@getdrop.com>2018-01-30 00:35:30 +0000
commitd60cc2aa2994f9e63d9570bea4fac8b8a9949b43 (patch)
treebc333e74981e1a4bdae2bdc5faf31655033f653f /polyTest/src/main.cpp
parent512d5703e4e1affc1dc5dcd9f2892ac5944c666f (diff)
much progress
Diffstat (limited to 'polyTest/src/main.cpp')
-rw-r--r--polyTest/src/main.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/polyTest/src/main.cpp b/polyTest/src/main.cpp
new file mode 100644
index 0000000..02b6b14
--- /dev/null
+++ b/polyTest/src/main.cpp
@@ -0,0 +1,24 @@
+#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<ofAppBaseWindow> mainWindow = ofCreateWindow(settings);
+
+ shared_ptr<ofApp> mainApp(new ofApp);
+
+ ofRunApp(mainWindow, mainApp);
+ ofRunMainLoop();
+}
+ \ No newline at end of file