diff options
| author | git@eclectronics.org <git@eclectronics.org@eclectronics.org> | 2012-02-13 18:39:50 +0000 |
|---|---|---|
| committer | git@eclectronics.org <git@eclectronics.org@eclectronics.org> | 2012-02-13 18:39:50 +0000 |
| commit | 1a5a6a7a34662b854b364a56436b3d015883a0b5 (patch) | |
| tree | 88cca0c9640340c06927bd4aa1fcd53c095b7e15 /parsecalldata.pde | |
| parent | faf27b06657efcd4d3defad8e4babed88a8df32c (diff) | |
added bezier stroke
Diffstat (limited to 'parsecalldata.pde')
| -rw-r--r-- | parsecalldata.pde | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/parsecalldata.pde b/parsecalldata.pde index ba6e46f..80361c0 100644 --- a/parsecalldata.pde +++ b/parsecalldata.pde @@ -1,6 +1,10 @@ //BT IRELAND MTM,Destination CID Name,VIA,Calls,MINS,ALOC,% User,ASR,NER 02 boolean DEBUG=true; +import java.io.ObjectOutputStream; +import java.io.FileOutputStream; +import java.io.IOException; + class country { String name; float calls,mins; @@ -128,6 +132,9 @@ class bitmapcountry extends country { class calldata { + //serialise THIS + //take hard coded frame bounds out + Vector<bitmapcountry> countries = new Vector<bitmapcountry>(); HashMap<String, Integer> outlines = new HashMap<String, Integer>(); calldata(String[][] data,RShape shp) { @@ -164,4 +171,6 @@ class calldata { country getcountry(int w) { return countries.get(w); } + void serialise(String file) { + } } |
