xxxxxxxxxx
20
function setup() {
createCanvas(800, 800);
}
function draw() {
background(220);
scrubber(592, 652);
}
function scrubber(x, y) {
fill(0,255,0);
quad(x, y,
x + 60, y,
x + 75, y + 24,
x + 15, y + 24);
line(x + 5, y + 7,
x + 64, y + 7)
line(x + 6, y + 10,
x + 65, y + 10);
}