top of page
This is my progress of this week. I tried to make more but i can't so I have to go with it on next week.
​
PImage logo;
PImage start;
void setup() {
size(1500, 900);
logo = loadImage ("LOGO.png");
start = loadImage ("start.png");
}
void draw() {
background(50, 205, 228);
fill(0);
rect(550, 150, 350, 600, 30);
fill(254, 247, 154);
rect(575, 200, 300, 450);
fill(255);
ellipse(730, 170, 10, 10);
rect(695, 180, 70, 6, 100);
ellipse(680, 185, 10, 10);
image(logo, 565, 250, 300, 200);
image(start, 675, 500, 100, 40);
}
​
Thank you.

bottom of page