#ifndef POINT_RECORDER_H
#define POINT_RECORDER_H

#include "ofMain.h"

#define OF_ADDON_USING_OFXVECTORMATH
#include "ofAddons.h"

class pointRecorder {

	public:
	
        pointRecorder();
	
		ofxPoint2f middlePoint;
		float angle;
	
		void update();
		void addPoint(ofPoint pt);
		void draw();
	
		int	 maxNumPts;
		vector <ofPoint> pts;
	

};

#endif // POINT_RECORDER_H
