From 895389c009da308c4a1f01d0f17d8304ea12c915 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 14 Aug 2022 23:18:51 +0100 Subject: check in lasertest --- lasertext/src/main.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lasertext/src/main.cpp (limited to 'lasertext/src/main.cpp') diff --git a/lasertext/src/main.cpp b/lasertext/src/main.cpp new file mode 100644 index 0000000..3e20ab7 --- /dev/null +++ b/lasertext/src/main.cpp @@ -0,0 +1,22 @@ +#include "ofMain.h" +#include "ofApp.h" + + +//======================================================================== +int main(int argc, char *argv[]){ + + + ofGLFWWindowSettings settings; + + settings.setSize(1200,900); + + //1200 = 13.2° = 42898 pts theoretical + + shared_ptr mainWindow = ofCreateWindow(settings); + + shared_ptr mainApp(new ofApp); + + ofRunApp(mainWindow, mainApp); + ofRunMainLoop(); +} + \ No newline at end of file -- cgit v1.2.3