From f65006daf4979d82d67fd8c8a234d3913088821d Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Thu, 5 Apr 2012 14:00:51 +0100 Subject: starting to implement bird --- gaunt01/src/morphmesh.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'gaunt01/src/morphmesh.h') 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); -- cgit v1.2.3