#ifndef POINT_RECORDER_H #define POINT_RECORDER_H #include "ofMain.h" class pointRecorder { public: pointRecorder(); void addPoint(ofPoint pt); void draw(); int maxNumPts; vector pts; }; #endif // POINT_RECORDER_H