function setup() { resizeCanvas(windowWidth,windowHeight) } function draw() { noStroke() fill (25, 25, 255, 100) // RGB + opacity myCircle() textSize(40) text('hello ٩(˘◡˘)۶ world', 10, height/2) // x y } // RANDOM function myCircle(){ circle(random(width), random(height), random(50)) fr = 6; frameRate(fr); describe('A blue circle moving randomly on a white canvas'); }