xxxxxxxxxx
20
//STEP 1
var picture;
function setup() {
createCanvas(windowWidth, windowHeight);
// STEP 2
picture = loadImage('https://66.media.tumblr.com/e63747778fb01627f98e756e5fd29eb8/tumblr_psnx266GFN1vt10pl_1280.jpg');
}
function draw() {
background(232, 105, 37);
// STEP 3
image(picture, 0, 0, picture.width/3, picture.height/3);
}