Ondas sinusoidales

Hola amigos!!

Quiero mostrar una onda sinusoidal primero pero no se como hacerlo en en draw()…
Ayudarme xfis que spu nueva en esto…

import ddf.minim.*;
import ddf.minim.ugens.*;

Minim minim;
Oscil myWave1;
Oscil myWave2;

Waveform waveform;

Pan Pan1;
Pan Pan2;
void setup() {
  size(512, 200);

minim = new Minim(this);
  
myWave1 = new Oscil( 440, 0.5f);
myWave2 = new Oscil( 440, 0.5f, Waves.SINE );
  
}

void draw() {
    
  background(0);
  stroke(255, 255, 255);
  strokeWeight(1);
  
}

Hello,

Explore the examples that come with the Minim library:

image

You will find Examples… in the menus in the Processing IDE.

:)

Gracias!

 for (int i = 0; i < out.bufferSize() - 1; i++) {
    stroke(0,0,255); 
    line(i, 50  - out.left.get(i)*25, i+1, 50  - out.left.get(i+1)*25);
    stroke(255,0,0);
    line(i, 375 - out.right.get(i)*25, i+1, 375 - out.right.get(i+1)*25);
}

Cómo puedo asignar una linea para cada oda?