xxxxxxxxxx
17
function setup() {
createCanvas(400,400);
}
function draw() {
background(0)
fill(0,28,56)
rect(100,100, 200, 200, 30);
translate(200,200);
rotate(frameCount / 50.0);
translate(-200, -200);
fill(0,164,255)
textSize(120);
textAlign(RIGHT);
text('Ps', 270,240);
}