PFont font; String b = "HJOO"; float angle = 0.0; float a = 0.0; float s = 0.0; float gray =255; void setup() { size(600,300); noStroke(); rectMode(CENTER); font = loadFont("!_PEPSI_!-50.vlw"); textFont(font, 24); fill(255); frameRate(20); } void draw() { background(#FF8C8C); background(gray); a = a + 0.02; s = cos(a); translate(width/2, height/2); scale(s); fill(#6e0d0d); smooth(); rect(0, 0, 45, 45); translate(75, 0); fill(#f1caca); scale(s); rect(0, 0, 45, 45); translate(0, 0); fill(255); scale(s); rect(0, 0, 45, 45); angle +=0.05; pushMatrix(); translate(25,55); scale(s*2); text(b,0,0); popMatrix(); } void mousePressed(){ gray-=20; }