diff options
Diffstat (limited to 'gaunt01/src/morphmesh.h')
| -rw-r--r-- | gaunt01/src/morphmesh.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gaunt01/src/morphmesh.h b/gaunt01/src/morphmesh.h index 91a8f17..76a6063 100644 --- a/gaunt01/src/morphmesh.h +++ b/gaunt01/src/morphmesh.h @@ -21,13 +21,24 @@ Coords are absolute */ +class sequence +{ + //stores a morph sequence: an animation cycle or transition + public: + sequence(); + virtual ~sequence(); + + +}; + + class morphmesh : public ofMesh { public: morphmesh(); morphmesh(string filename); virtual ~morphmesh(); - bool loadfile(string filename); + bool loadMesh(string filename); bool isLoaded(); void draw(); void draw(int target); |
