diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-01-11 15:08:39 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-01-11 15:08:39 +0000 |
| commit | 6eb389d8c8b9a6f75e291d359a7708d2944a156d (patch) | |
| tree | c5c63e16a2bff7db9b2f600a17efe85aaee2ba02 /src/testApp.cpp | |
| parent | 6489954270c6e5ee0e7968de04cd6e865cb7e8b3 (diff) | |
added rotation - need to address gimbal lock
Diffstat (limited to 'src/testApp.cpp')
| -rw-r--r-- | src/testApp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/testApp.cpp b/src/testApp.cpp index e7921d4..ab0987b 100644 --- a/src/testApp.cpp +++ b/src/testApp.cpp @@ -23,7 +23,7 @@ void testApp::setup(){ //ofDisableArbTex(); - texture.loadMovie("stripey2.mov"); + texture.loadMovie("gradblend01.mov"); texture.play(); mode=CALIBRATE; @@ -63,7 +63,7 @@ void testApp::draw(){ glPopMatrix(); break; } - views[i].end(); + views[i].end(mode==CALIBRATE); } if (mode==CALIBRATE) { ofSetHexColor(0xFFFFFF); @@ -125,6 +125,7 @@ void testApp::loadSettings(){ } XML.popTag(); } + printf("loaded settings: %i views\n",numViews); } //numViews=2; |
