diff options
| author | Comment <tim@gray.(none)> | 2013-01-28 12:42:36 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-01-28 12:42:36 +0000 |
| commit | f7667bd306b983f8f8daa0b40719aa665bf555b0 (patch) | |
| tree | 19ba166a2c1bd666471bf16f74e93228d8819f89 /src/boundary.h | |
| parent | 1f8525289c3533805fa235d25804f3413243743a (diff) | |
drag filenames into areas
Diffstat (limited to 'src/boundary.h')
| -rwxr-xr-x | src/boundary.h | 6 |
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;
};
|
