1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef MORPHMESH_H #define MORPHMESH_H #include <ofMesh.h> #include <ofxXmlSettings.h> class morphmesh : public ofMesh { public: morphmesh(); virtual ~morphmesh(); bool loadmesh(string filename); protected: private: vector < <vector <ofVec3f> >targets; }; #endif // MORPHMESH_H