summaryrefslogtreecommitdiff
path: root/src/boundary.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/boundary.h')
-rwxr-xr-xsrc/boundary.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/boundary.h b/src/boundary.h
index a4ee28b..e28b278 100755
--- a/src/boundary.h
+++ b/src/boundary.h
@@ -9,17 +9,19 @@ class boundary
{
public:
boundary();
- boundary(int _note);
+ boundary(string file);
virtual ~boundary();
bool contains(ofPoint p);
void draw();
void add(ofPoint p);
void undo();
- int note;
void getCentroid();
vector<ofPoint> points;
ofPoint centroid;
+
+ void checkfile(ofPoint pos,string file);
+ string filename;
};