<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Programmering  by Hampus Johansson Hälsinggårdsskolan 7-9</title>
      <link>https://padlet.com/hjo26/8mix</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2017-06-07 08:12:01 UTC</pubDate>
      <lastBuildDate>2017-06-13 08:15:39 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Avsnitt 1: Ansiktet</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175515444</link>
         <description><![CDATA[<div>  circle(200, 200, 100, "red");<br>  circle(180, 180, 10, "blue");<br>  circle(220, 180, 10, "blue");<br>  triangle(200,200,190,210,210,210, "green");<br>  rectangle(170, 230,60, 10,"black");</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:13:37 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175515444</guid>
      </item>
      <item>
         <title>Avsnitt 2: Variabler</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175515549</link>
         <description><![CDATA[<div>color = prompt("Kan du ange en fin färg?");<br>&nbsp; circle(100, 100, 20, color);<br>&nbsp; circle(200, 100, 20, color);</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:14:22 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175515549</guid>
      </item>
      <item>
         <title>Avsnitt 3: Animation</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175517511</link>
         <description><![CDATA[<div>var x=100;<br> var y=500;<br>  function update()<br>  {<br>    clearScreen();<br>  circle(x, y, 20, "red");<br>    x+=1;<br>    y-=1;<br>  }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:29:29 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175517511</guid>
      </item>
      <item>
         <title>Första spelet</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175517578</link>
         <description><![CDATA[<div>var catX = 100;<br>var catY = 100;<br>  function update()  <br>  {<br> clearScreen();<br> circle(mouse.x, mouse.y, 20, "yellow");<br>    <br> circle(catX, catY, 20, "green");<br>    <br>    if (keyboard.d)<br>      catX += 5;<br>    if (keyboard.a)<br>      catX -= 5;<br>    if (keyboard.w)<br>      catY -= 5;<br>    if (keyboard.s)<br>      catY += 5;<br>    <br>    var d = distance(mouse.x, mouse.y, catX, catY);<br>    if (d &lt; 40)<br>    {<br>      alert("Game over!");<br>      stopUpdate();<br>    }<br>  }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:30:02 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175517578</guid>
      </item>
      <item>
         <title>Avsnitt 4: Interakivitet (FRÅGOR)</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175519094</link>
         <description><![CDATA[<div>var age = prompt("Hur gammal är du?");<br>if (age === "15")<br>{<br>&nbsp; alert("Aha, då får du köra moped!");<br>&nbsp; alert("Nästa år blir du 16!");<br>}<br>&nbsp;var shoesize = prompt("Hur stora fötter har du?");<br>&nbsp; if (shoesize === "45")<br>&nbsp; 	alert("Oj vilka stora fötter du har!");</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:40:20 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175519094</guid>
      </item>
      <item>
         <title>Avsnitt 4: Interaktivitet (Få cirkeln att röra sig)</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175519180</link>
         <description><![CDATA[<div>var x = 100;<br>  function update()<br>  {<br>    clearScreen();<br>   circle(x,100,20,"red");<br>  <br>    if (keyboard.d)<br>      x += 1;<br>  }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 08:40:55 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175519180</guid>
      </item>
      <item>
         <title>Huset</title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/175545614</link>
         <description><![CDATA[<div>fill(mixColor(0,160,255))<br>  var knutar = "white"<br>  var fonster = "white"<br>  <br>  rectangle(0,300,700,800,"green");<br>  <br>  rectangle(200,150,250,200,"red");<br>  rectangle(250,270,50,80,"white");<br>  rectangle(250,350,50,300,"grey");<br>  <br>  rectangle(200,150,10,200,knutar);<br>  rectangle(440,150,10,200,knutar);<br>  <br>  rectangle(350,200, 50,50, fonster);<br>  rectangle(372,200,5,50,"black");<br>  rectangle(350,222,50,5,"black");<br>  circle(250,200,20,fonster);<br>  <br>  triangle(325,50,460,150,190,150, "orange");<br>  <br>  circle(260,320,5,"black");</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-07 12:03:28 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/175545614</guid>
      </item>
      <item>
         <title></title>
         <author>hjo26</author>
         <link>https://padlet.com/hjo26/8mix/wish/176197971</link>
         <description><![CDATA[<div>var x = 100;<br>var y = 100;<br>&nbsp; function update()&nbsp; <br>&nbsp; {<br>&nbsp;clearScreen();<br>&nbsp;circle(mouse.x, mouse.y, 20, "yellow");<br>&nbsp; &nbsp; <br>&nbsp;circle(x, y, 20, "green");<br>&nbsp; &nbsp; <br>&nbsp; &nbsp; if (keyboard.d)<br>&nbsp; &nbsp; &nbsp;x += 1;<br>&nbsp; &nbsp; if (keyboard.a)<br>&nbsp; &nbsp; &nbsp; x -= 1;<br>&nbsp; &nbsp; if (keyboard.w)<br>&nbsp; &nbsp; &nbsp; y -= 1;<br>&nbsp; &nbsp; if (keyboard.s)<br>&nbsp; &nbsp; &nbsp; y += 1;<br>&nbsp; &nbsp; <br>&nbsp; }</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-06-13 06:28:55 UTC</pubDate>
         <guid>https://padlet.com/hjo26/8mix/wish/176197971</guid>
      </item>
   </channel>
</rss>
