summaryrefslogtreecommitdiff
path: root/05_pointcloud/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-06-17 15:32:14 +0100
committerTim Redfern <tim@eclectronics.org>2013-06-17 15:32:14 +0100
commit2395f29308fb424eaf9b9ebb08022568a117b0f0 (patch)
treeca81402f792a1118b027ae0ad415e73659ff998b /05_pointcloud/src/main.cpp
parent51df1cfbacd02cd362c82141a161f2fe859b8431 (diff)
back to user pointclouds
Diffstat (limited to '05_pointcloud/src/main.cpp')
-rw-r--r--05_pointcloud/src/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/05_pointcloud/src/main.cpp b/05_pointcloud/src/main.cpp
new file mode 100644
index 0000000..f0d25bb
--- /dev/null
+++ b/05_pointcloud/src/main.cpp
@@ -0,0 +1,17 @@
+
+#include "testApp.h"
+#include "ofMain.h"
+#include "ofAppGlutWindow.h"
+
+//========================================================================
+int main( ){
+
+ ofAppGlutWindow window;
+ ofSetupOpenGL(&window, 1200,800, 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:
+ ofRunApp( new testApp());
+
+}