summaryrefslogtreecommitdiff
path: root/morpher/src/morphmesh.h
blob: 3f401c69ffea0bb946ccd40d930178195023dbaf (plain)
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