PFont font; String s = "VERTIGO"; float angle = 10; void setup() { size(300,150); smooth(); background(255); noStroke(); font = loadFont("TSTPenC-48.vlw"); textFont(font, 15); fill(255,100); } void draw(){ angle +=0.09; pushMatrix(); translate(67,70); scale((cos(angle/12.0)+1.2)*3.0); rotate (angle); text(0,1,1); popMatrix(); float angle = map(mouseX,mouseY,width,0,TWO_PI); translate(70,70); rotate(angle); PImage img; img=loadImage("logo.png"); tint(255,255,255,20); image(img,-36.5,-36.5); }