#ifndef _TEST_APP #define _TEST_APP #include "ofMain.h" #include "ofAddons.h" #include "mrWhitney.h"; class testApp : public ofSimpleApp{ public: void setup (); void update (); void draw (); void incrementAnglePct (); void incrementIrisPct (); float angleRotation; float anglePct, anglePctStep; float irisI; float irisPct, irisStep; MrWhitney ohWhitney[2]; }; #endif