xxxxxxxxxx
54
let img;
function preload() {
img1 = loadImage("Images/ExquisiteCorpse_HEAD.png");
img2 = loadImage("Images/ExquisiteCorpse_TORSO.png");
img3 = loadImage("Images/ExquisiteCorpse_LEGS.png");
}
function setup() {
createCanvas(400, 600);
}
function draw() {
background(0, 139, 204);
bRect();
bCircle();
bTriangle();
legs(-10, 30);
torso(-10, 55);
head(-10, -10);
}
function bCircle (){
noStroke();
fill (255, 179, 102);
ellipse (200,100,300,300);
}
function bTriangle (){
noStroke();
fill (92, 214, 92);
triangle(450, 700, 200, 250, -60, 700);
}
function bRect (){
noStroke();
fill (191, 128, 64);
rect(0, 150, 500, 250);
}
function head (headX, headY){
image(img1, headX, headY);
}
function torso (torsoX, torsoY){
image(img2, torsoX, torsoY);
}
function legs (legsX, legsY){
image(img3, legsX, legsY);
}