diff options
| author | Tim Redfern <tim@eclectronics.org> | 2013-06-17 15:32:14 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2013-06-17 15:32:14 +0100 |
| commit | 2395f29308fb424eaf9b9ebb08022568a117b0f0 (patch) | |
| tree | ca81402f792a1118b027ae0ad415e73659ff998b /05_pointcloud/src/main.cpp | |
| parent | 51df1cfbacd02cd362c82141a161f2fe859b8431 (diff) | |
back to user pointclouds
Diffstat (limited to '05_pointcloud/src/main.cpp')
| -rw-r--r-- | 05_pointcloud/src/main.cpp | 17 |
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()); + +} |
