Draw a waveform from pure data values?
in
Programming Questions
•
2 years ago
Hi guys,
I want draw a wave in processing with some puredata values (i get this values via OSC).
I have an array with 200 values every 25 miliseconds...
void getvalues(float[] VecValues){
for(int i=1;i<VecValues.length ;i++) {
float temp = VecValues[i];
VecValues[i-1] = temp;
}
}
My array have values like this:
1 -0.13229275
2 -0.13515377
3 -0.13704109
4 -0.1380508
5 -0.13849902
6 -0.13865876
7 -0.13843393
8 -0.13760865
9 -0.13646328
10 -0.13526142
11 -0.13387012
12 -0.13199687
13 -0.12948632
14 -0.12649858
15 -0.12313092
16 -0.11935902
17 -0.11562836
18 -0.1125319
19 -0.11016011
20 -0.108367324
21 -0.10712266
22 -0.106022835
23 -0.10448468
24 -0.102431774
25 -0.10000718
26 -0.09761107
27 -0.095594406
.
.
.
.
193 -0.0011254549
194 0.004470825
195 0.010390282
196 0.016453743
197 0.02286625
198 0.02963376
199 0.036509514
200 0.0429492
How could i draw a wave with this values between 2 points: (mouseX,mouseY) and (widht/2,height/2).
Thank you :)
1