xxxxxxxxxx
42
/*
Intro to IM
Week 1
Self-Portrait
*/
function setup() {
createCanvas(400, 400);
}
function draw() {
background('rgb(203,228,243)');
fill('white')
//face and hijab
fill('rgb(218,173,130)')
stroke('rgb(112,11,11)')
strokeWeight(30)
ellipse(200,200,250,300)
//body
fill('rgb(112,11,11)')
noStroke()
rect(125,350,150,100,20)
//eyes
textSize(150)
text('👀',125,230)
//wave
textSize(100)
text('👋🏼',mouseX,mouseY)
//smile
stroke('purple')
strokeWeight(10)
line(150,250,200,290)
stroke('blue')
line(250,250,200,290)
}