xxxxxxxxxx
20
let values = [],
i = 0,
j = 0,
w = 10,
small = 0,
pos = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
values = new Array(floor(width / w));
randomNumbers();
// selectionSort();
frameRate(6.5);
}
function draw() {
background(0);
show();
live();
}