xxxxxxxxxx
55
// let osc;
// //let ratios = [1, 1.125, 1.25, 1.34, 1.5, 1.67, 1.875, 2];
// let ratios = [ 1, 1.125,1.25,1.5,1.67,2];
// function setup() {
// createCanvas(400, 400);
// osc = new p5.Oscillator();
// osc.setType('sine');
// osc.freq(0);
// osc.start();
// }
// function draw() {
// background(220);
// }
// let BASE = 200;
// function keyPressed(){
// //let f = random(200,500);
// let r = random(ratios);
// let f = r * BASE
// osc.freq(f);
// }
//noise function//
let osc;
function setup() {
createCanvas(400, 400);
osc = new p5.Oscillator();
osc.setType('sine');
osc.freq(0);
osc.start();
}
function draw() {
background(220);
}
let BASE = 200;
let t = -1;
function keyPressed(){
//? = then. : = else//
t += random(1) > 0.3 ? 0.5 : 1;
// let r = noise(t) * 8;
let r = (sin(t) + 1) * 4;
let f = ratios [floor(r)] *BASE;
osc.freq(f);
}