PImage img1,img2,img3; float x1=0; float x2=0; float x3=0; float x4=0; float x5=0; float x6=0; float x7=0; float x8=0; float x9=0; void setup() { size(250,465); } void draw(){ background(32,103,165); PImage img; img = loadImage ("c01.png"); image (img,x1,115); x1 +=0.9; if(x1>300){x1=-200;} img = loadImage ("c02.png"); image (img,x2+160,130); x2 +=1.1; if(x2>300){x2=-200;} img = loadImage ("c03.png"); image (img,x3+90,170); x3 +=0.9; if(x3>300){x3=-200;} img = loadImage ("c04.png"); image (img,x4-20,200); x4 +=0.9; if(x4>300){x4=-200;} img = loadImage ("c05.png"); image (img,x5-80,240); x5 +=0.9; if(x5>500){x5=-200;} img = loadImage ("c02.png"); image (img,x6-10,260); x6 +=1.1; if(x6>500){x6=-300;} img = loadImage ("c03.png"); image (img,x7+70,300); x7 +=0.9; if(x7>500){x7=-300;} img = loadImage ("c04.png"); image (img,x8-150,320); x8 +=0.9; if(x8>500){x8=-300;} img = loadImage ("c05.png"); image (img,x9-190,355); x9 +=0.9; if(x9>500){x9=-300;} PImage img2; img = loadImage ("h_w.png"); image (img,-42,-20); PImage img3; img = loadImage ("heart.png"); image (img,124,154); PFont font; font = loadFont ("Arial-BoldMT-15.vlw"); textFont(font); fill(255,0,0); text ("The ONE",97,200); }