diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-04-05 14:00:51 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-04-05 14:00:51 +0100 |
| commit | f65006daf4979d82d67fd8c8a234d3913088821d (patch) | |
| tree | 104d30c316ca295cd4bad1110c7f341640112738 /gaunt01/src/morphmesh.h | |
| parent | 0c2a97dcc0fb370938dc0d2d3a27053c2c9cb31e (diff) | |
starting to implement bird
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); |
