{"id":71520,"date":"2022-09-11T12:02:00","date_gmt":"2022-09-11T16:02:00","guid":{"rendered":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/?p=71520"},"modified":"2022-09-11T12:02:00","modified_gmt":"2022-09-11T16:02:00","slug":"project-02-9","status":"publish","type":"post","link":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/2022\/09\/11\/project-02-9\/","title":{"rendered":"Project &#8211; 02"},"content":{"rendered":"<!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD HTML 4.0 Transitional\/\/EN\" \"http:\/\/www.w3.org\/TR\/REC-html40\/loose.dtd\">\n<html><body><p>\/\/Katie Makarska<br>\/\/Section C<\/p>\n\n\n\n<p>var eyeWidth = 20;<br>var eyeHeight = 20<br>var faceWidth = 100;<br>var faceHeight = 150;<br>var smileWidth = 80;<br>var smileHeight = 40;<\/p>\n\n\n\n<p>function setup() {<br>createCanvas(300, 300);<br>bgColor = color( random(255), random(255), random(255));<br>}<\/p>\n\n\n\n<p>function draw() {<br>background(bgColor);<br>\/\/eyes<br>ellipse(width \/ 2, height \/ 2, faceWidth, faceHeight);<br>var eyeLX = width \/ 2 &ndash; faceWidth * 0.25;<br>var eyeRX = width \/ 2 + faceWidth * 0.25;<br>ellipse(eyeLX, height \/ 2, eyeWidth, eyeHeight);<br>ellipse(eyeRX, height \/ 2, eyeWidth, eyeHeight);<br>\/\/smile<br>var smile1 = width\/2 &ndash; faceWidth *0.01;<br>var smile2 = width\/2 + faceHeight *0.25;<br>arc(smile1, smile2, smileWidth, smileHeight, 0, PI);<\/p>\n\n\n\n<p>\/\/random colors<br>r = random(50, 255);<br>g = random(100,200);<br>b = random(100, 200);<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>function mousePressed() {<br>\/\/ when the user clicks, these variables are reassigned<br>\/\/ to random values within specified ranges. For example,<br>\/\/ &lsquo;faceWidth&rsquo; gets a random value between 75 and 150.<br>faceWidth = random(90, 150);<br>faceHeight = random(100, 200);<br>eyeWidth = random(10, 30);<br>eyeHeight = random(10, 30);<br>smileWidth = random(50, 80);<br>smileHeight = random(20, 40);<br>\/\/random face color<br>fill(r, g, b);<br>\/\/random background color<br>bgColor = color( random(255), random(255), random(255));<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"590\" height=\"594\" src=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.31-AM.png\" alt=\"\" class=\"wp-image-71528\" srcset=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.31-AM.png 590w, https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.31-AM-298x300.png 298w, https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.31-AM-150x150.png 150w\" sizes=\"(max-width: 590px) 85vw, 590px\"><\/figure><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"582\" height=\"586\" src=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.46-AM.png\" alt=\"\" class=\"wp-image-71529\" srcset=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.46-AM.png 582w, https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.46-AM-298x300.png 298w, https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-11.59.46-AM-150x150.png 150w\" sizes=\"(max-width: 582px) 85vw, 582px\"><\/figure><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" width=\"592\" height=\"586\" src=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-12.00.00-PM.png\" alt=\"\" class=\"wp-image-71530\" srcset=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-12.00.00-PM.png 592w, https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-content\/uploads\/2022\/09\/Screen-Shot-2022-09-11-at-12.00.00-PM-300x297.png 300w\" sizes=\"(max-width: 592px) 85vw, 592px\"><\/figure><\/body><\/html>\n","protected":false},"excerpt":{"rendered":"<p>\/\/Katie Makarska\/\/Section C var eyeWidth = 20;var eyeHeight = 20var faceWidth = 100;var faceHeight = 150;var smileWidth = 80;var smileHeight = 40; function setup() {createCanvas(300, 300);bgColor = color( random(255), random(255), random(255));} function draw() {background(bgColor);\/\/eyesellipse(width \/ 2, height \/ 2, faceWidth, faceHeight);var eyeLX = width \/ 2 &ndash; faceWidth * 0.25;var eyeRX = width \/ 2 &hellip; <a href=\"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/2022\/09\/11\/project-02-9\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Project &#8211; 02&#8221;<\/span><\/a><\/p>\n","protected":false},"author":742,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[97,57],"tags":[82,61],"_links":{"self":[{"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/posts\/71520"}],"collection":[{"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/users\/742"}],"replies":[{"embeddable":true,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/comments?post=71520"}],"version-history":[{"count":1,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/posts\/71520\/revisions"}],"predecessor-version":[{"id":71531,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/posts\/71520\/revisions\/71531"}],"wp:attachment":[{"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/media?parent=71520"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/categories?post=71520"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/courses.ideate.cmu.edu\/15-104\/f2022\/wp-json\/wp\/v2\/tags?post=71520"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}