#ifndef BOUNDARY_H #define BOUNDARY_H #include "ofMain.h" class boundary { public: boundary(); boundary(int _note); virtual ~boundary(); bool contains(ofPoint p); void draw(); void add(ofPoint p); void undo(); int note; void getCentroid(); vector points; ofPoint centroid; }; #endif // BOUNDARY_H