We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'd like to create a visualization: The data in heisserBadetag (heisserBadetag.csv exist in void setup()...) should visualize 19 hexagons that rotate clockwise. These 19 objects form a big hexagon. The hexagons are also in void setup() {}. Here's my code:
void draw() {
background(0);
for (int i = 0; i < hexagons.length; i++) {
hexagons[i].display();
}
for (int i = 0; i < heisserBadetag.length; i++) {
hexagons[i].display();
}
}
at void draw() {
I got that error. I need help!
Answers
Is it an out of bounds exception? if it is try:
Are you sure the error happens in the code you show?
The problematic line should be highlighted in the PDE.
Showing the remainder of the code (setup) can help, too.