comparison of/testApp.h @ 17:803b8f3b70b4

have added printing of the head data - you will NEED TO PUT the franklin font into ->bin->data for this to work - this is also include here in of
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Thu, 17 Feb 2011 17:03:39 +0000
parents 36e3faa5e9d4
children 7b6dfc67d51e e71aad40a068
comparison
equal deleted inserted replaced
14:972eb5fdb79b 17:803b8f3b70b4
12 public: 12 public:
13 void setup(); 13 void setup();
14 void update(); 14 void update();
15 void draw(); 15 void draw();
16 16
17 void getCoordinates(ofxTrackedUser* tracked, int userID);
18
17 void keyPressed (int key); 19 void keyPressed (int key);
18 void keyReleased(int key); 20 void keyReleased(int key);
19 void mouseMoved(int x, int y ); 21 void mouseMoved(int x, int y );
20 void mouseDragged(int x, int y, int button); 22 void mouseDragged(int x, int y, int button);
21 void mousePressed(int x, int y, int button); 23 void mousePressed(int x, int y, int button);
25 ofxDepthGenerator depth; 27 ofxDepthGenerator depth;
26 ofxUserGenerator user; 28 ofxUserGenerator user;
27 ofxImageGenerator image; 29 ofxImageGenerator image;
28 //ofImage Davy; 30 //ofImage Davy;
29 bool drawIt; 31 bool drawIt;
32
33 int head[6][3];//x,y,and z of the head
34
35 ofTrueTypeFont franklinBook;
36 string outputString;
30 }; 37 };
31 38
39
40
41
32 #endif 42 #endif