summaryrefslogtreecommitdiff
path: root/morpher/src/morphmesh.h
diff options
context:
space:
mode:
Diffstat (limited to 'morpher/src/morphmesh.h')
-rw-r--r--morpher/src/morphmesh.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/morpher/src/morphmesh.h b/morpher/src/morphmesh.h
new file mode 100644
index 0000000..3f401c6
--- /dev/null
+++ b/morpher/src/morphmesh.h
@@ -0,0 +1,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