From a47b39541a7f60dfdda921c9598abe947e1e6ad9 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Wed, 28 Mar 2012 00:42:08 +0100 Subject: rayhit still iffy. starting morpher --- morpher/src/testApp.cpp | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 morpher/src/testApp.cpp (limited to 'morpher/src/testApp.cpp') 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){ + +} -- cgit v1.2.3