New to Processing: program will not compile, very little feedback
in
Programming Questions
•
1 year ago
Hi, yeah basically I have some code using the Minim library to draw a visualisation using FFT. I added this code to try to draw the time domain waveform but when I export as application the program will not compile and I am told there was an error during the export and nothing else about what the error actually was.
- int xl;
- int yl;
- Stroke(255);
- beginShape(POINTS);
- for (int i = 0; i < in.bufferSize() - 1; i++)
- {
- xl = i;
- yl = height/2 + (in.mix.get(i) * 5);
- vertex(xl, yl);
- }
- endShape();
in is an AudioInput object.
Can anyone help?
Can anyone help?
1