xxxxxxxxxx
12
function setup() {
createCanvas(400, 600);
//noLoop();
}
function draw() {
background(220);
//First number is number you are interested in, second and third are your ranges, and the fourth and fifth are the range you want to conver it to
print(round(map(23,0,63,1,100)));
//print(int(1000 * random()));
}