xxxxxxxxxx
15
var value = 0;
function setup() {
createCanvas(200, 200);
textAlign(CENTER,CENTER);
select("#input_text").input(calc);
}
function calc()
{
value = (1 + this.value()) * 0.125;
}
function draw() {
background(220);
text(value, width/2, height/2);
}