#ifndef MORPHMESH_H #define MORPHMESH_H #include #include #include #include class morphmesh : public ofMesh { public: morphmesh(); virtual ~morphmesh(); bool loadfile(string filename); void draw(int target); void draw(const vector& targetBlend); int getNumTargets(); protected: private: //vector < >targets; vector< vector > targets; }; #endif // MORPHMESH_H