summaryrefslogtreecommitdiff
path: root/morpher/src/morphmesh.h
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2012-03-28 00:42:08 +0100
committerTim Redfern <tim@eclectronics.org>2012-03-28 00:42:08 +0100
commita47b39541a7f60dfdda921c9598abe947e1e6ad9 (patch)
tree34f85aa65d56793d2c42a83df5b025be7a142669 /morpher/src/morphmesh.h
parent3badbcdf8d8a0005543521849694fa481dfce628 (diff)
rayhit still iffy. starting morpher
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