summaryrefslogtreecommitdiff
path: root/morpher/src/testApp.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2012-03-28 00:42:08 +0100
committerTim Redfern <tim@eclectronics.org>2012-03-28 00:42:08 +0100
commita47b39541a7f60dfdda921c9598abe947e1e6ad9 (patch)
tree34f85aa65d56793d2c42a83df5b025be7a142669 /morpher/src/testApp.cpp
parent3badbcdf8d8a0005543521849694fa481dfce628 (diff)
rayhit still iffy. starting morpher
Diffstat (limited to 'morpher/src/testApp.cpp')
-rw-r--r--morpher/src/testApp.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/morpher/src/testApp.cpp b/morpher/src/testApp.cpp
new file mode 100644
index 0000000..aac34cc
--- /dev/null
+++ b/morpher/src/testApp.cpp
@@ -0,0 +1,71 @@
+#include "testApp.h"
+
+#include "morphmesh.h"
+
+//--------------------------------------------------------------
+void testApp::setup(){
+
+}
+
+//--------------------------------------------------------------
+void testApp::update(){
+
+
+
+}
+
+//--------------------------------------------------------------
+void testApp::draw(){
+ ofBackground(0,0,0);
+
+}
+
+//--------------------------------------------------------------
+void testApp::keyPressed(int key){
+
+ switch (key){
+ case 'a':
+ break;
+ case 'z':
+ break;
+ }
+}
+
+//--------------------------------------------------------------
+void testApp::keyReleased(int key){
+
+}
+
+//--------------------------------------------------------------
+void testApp::mouseMoved(int x, int y ){
+
+}
+
+//--------------------------------------------------------------
+void testApp::mouseDragged(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void testApp::mousePressed(int x, int y, int button){
+
+}
+
+void testApp::mouseReleased(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void testApp::windowResized(int w, int h){
+
+}
+
+//--------------------------------------------------------------
+void testApp::gotMessage(ofMessage msg){
+
+}
+
+//--------------------------------------------------------------
+void testApp::dragEvent(ofDragInfo dragInfo){
+
+}