#ifndef MRWHITNEY_H #define MRWHITNEY_H #include "ofMain.h" #include "theJohnny.h" class MrWhitney { public: MrWhitney (); void init (ofPoint _origin, int _direction); void update (float _anglePct, float _irisPct); void draw (); void interpolateAngle (float _pct); void interpolateIris (float _pct); int direction; float angleBegin, angleStep, angleRotation; float irisBegin, irisEnd, irisSize; unsigned int alpha; ofPoint pos; ofPoint origin; TheJohnny *mpOhJohnny; int mNumJohnny; }; #endif // MRWHITNEY_H