Closed paulvollmer closed 12 years ago
csv = new CsvP5(this, "sample.csv");
all other variables like Separator, Comment etc. moved to own function
CsvP5 csv; void setup(){ csv = new CsvP5(this, "sample.csv"); csv.setSeparator(";"); csv.setDescription("#"); csv.hasHeaderRow(); csv.hasHeaderColumn(); csv.load(); }
csv = new CsvP5(this, "sample.csv");
all other variables like Separator, Comment etc. moved to own function