function setup() {
// Create canvas of given size
createCanvas(400, 400);
}
function draw() {
// Set the background color
background(99);
noStroke();
// Set the filled color
fill('pink');
// x1, y1, z1 = 38, 131, 100;
// x2, y2, z2 = 320, 100, 63;
// x3, y3, z3 = 130, 150, 134;
// x4, y4, z4 = 155, 66, 88;
quad(38, 131, 100, 320, 100, 63,
130, 150, 134, 155, 66, 88);
}