xxxxxxxxxx
blob a;
PImage flower;
PImage girl;
PImage music;
void setup(){
size (500,600);
a = new blob();
flower = loadImage("flower.png");
girl = loadImage("girl.png");
music = loadImage("music.png");
}
void draw(){
//background (190,190,190);
girl.resize(250, 550);
image(girl, 255, 153);
noStroke();
fill(252, 156, 222);//pink top
rect(0, 100, 150, 100);
fill(255, 221, 170);//tan
rect(50, 50, 170, 100);
fill(255, 219, 223);//pink bottom
rect(0, 550, 200, 50);
fill(253, 255, 155);//yellow bottom
rect(50, 480, 200, 100);
fill(202, 175, 255);//purple
rect(230, 350, 300, 50);
fill(0);
PFont mono;
mono = loadFont("InsideOutside", 32);
textFont(mono);
text("altnation", 250, 390);
flower.resize(230, 230);
image(flower, 0, 0);
//music.resize(250, 250);
//image(music,0, 390);
fill(random(255));
ellipse(mouseX,mouseY,30,30);
a.display();
}