summaryrefslogtreecommitdiff
path: root/imgtest/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2017-08-27 13:19:47 +0100
committerTim Redfern <tim@getdrop.com>2017-08-27 13:19:47 +0100
commitd8a46a6409286b3834bc609e4f34a09d48a8ae58 (patch)
treeba808c1648c908c5363b762541557ea649b12f27 /imgtest/src/main.cpp
initial commit
Diffstat (limited to 'imgtest/src/main.cpp')
-rw-r--r--imgtest/src/main.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/imgtest/src/main.cpp b/imgtest/src/main.cpp
new file mode 100644
index 0000000..6eb1c47
--- /dev/null
+++ b/imgtest/src/main.cpp
@@ -0,0 +1,23 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main(int argc, char *argv[]){
+ ofSetupOpenGL(1024,768,OF_WINDOW); // <-------- setup the GL context
+
+ // this kicks off the running of my app
+ // can be OF_WINDOW or OF_FULLSCREEN
+ // pass in width and height too:
+ ofApp *app = new ofApp();
+
+ app->arguments = vector<string>(argv, argv + argc);
+
+ ofRunApp(app); // start the app
+
+
+ //60 deg camera
+ //30 60 90 triangle 3 4 5
+ //512 * 4/3 = 683
+
+}
+ \ No newline at end of file