<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?action=history&amp;feed=atom&amp;title=GMU%3AProcessing_im_Park%2FMaike_Effenberg%2FHM1_2</id>
	<title>GMU:Processing im Park/Maike Effenberg/HM1 2 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?action=history&amp;feed=atom&amp;title=GMU%3AProcessing_im_Park%2FMaike_Effenberg%2FHM1_2"/>
	<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Maike_Effenberg/HM1_2&amp;action=history"/>
	<updated>2026-04-03T19:16:21Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Maike_Effenberg/HM1_2&amp;diff=77374&amp;oldid=prev</id>
		<title>Bhgvt: Created page with &quot;== Code - Homework 1.2 ==  &lt;source lang = &quot;java&quot;&gt; PImage hund1; PImage hund2; PImage hund3; PImage hund4; PImage hund5; PImage hund6; PImage hund7; PImage hund8; PImage hund9;   ...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Processing_im_Park/Maike_Effenberg/HM1_2&amp;diff=77374&amp;oldid=prev"/>
		<updated>2016-01-13T21:49:38Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Code - Homework 1.2 ==  &amp;lt;source lang = &amp;quot;java&amp;quot;&amp;gt; PImage hund1; PImage hund2; PImage hund3; PImage hund4; PImage hund5; PImage hund6; PImage hund7; PImage hund8; PImage hund9;   ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Code - Homework 1.2 ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang = &amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
PImage hund1;&lt;br /&gt;
PImage hund2;&lt;br /&gt;
PImage hund3;&lt;br /&gt;
PImage hund4;&lt;br /&gt;
PImage hund5;&lt;br /&gt;
PImage hund6;&lt;br /&gt;
PImage hund7;&lt;br /&gt;
PImage hund8;&lt;br /&gt;
PImage hund9;&lt;br /&gt;
 &lt;br /&gt;
void setup() {&lt;br /&gt;
  size(500, 664);&lt;br /&gt;
  background(0, 0, 0);&lt;br /&gt;
  hund1 = loadImage(&amp;quot;hund1.jpg&amp;quot;);&lt;br /&gt;
  hund2 = loadImage(&amp;quot;hund2.jpg&amp;quot;);&lt;br /&gt;
  hund3 = loadImage(&amp;quot;hund3.jpg&amp;quot;);&lt;br /&gt;
  hund4 = loadImage(&amp;quot;hund4.jpg&amp;quot;);&lt;br /&gt;
  hund5 = loadImage(&amp;quot;hund5.jpg&amp;quot;);&lt;br /&gt;
  hund6 = loadImage(&amp;quot;hund6.jpg&amp;quot;);&lt;br /&gt;
  hund7 = loadImage(&amp;quot;hund7.jpg&amp;quot;);&lt;br /&gt;
  hund8 = loadImage(&amp;quot;hund8.jpg&amp;quot;);&lt;br /&gt;
  hund9 = loadImage(&amp;quot;hund9.jpg&amp;quot;);&lt;br /&gt;
  frameRate(3);&lt;br /&gt;
}&lt;br /&gt;
 &lt;br /&gt;
void draw() {&lt;br /&gt;
 &lt;br /&gt;
  if (frameCount % 9 == 1) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund1, 7, 7, 486, 648);&lt;br /&gt;
  } else if (frameCount % 9 == 2) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund2, 7, 7, 486, 648);&lt;br /&gt;
  } else if (frameCount % 9 == 3) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund3, 7, 7, 486, 648);&lt;br /&gt;
  } else if (frameCount % 9 == 4) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund4, 7, 7, 486, 648); &lt;br /&gt;
  } else if (frameCount % 9 == 5) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund5, 7, 7, 486, 648);&lt;br /&gt;
  } else if (frameCount % 9 == 6) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund6, 7, 7, 486, 648); &lt;br /&gt;
  } else if (frameCount % 9 == 7) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund7, 7, 7, 486, 648); &lt;br /&gt;
  } else if (frameCount % 9 == 8) {&lt;br /&gt;
    // show h1 for odd frames&lt;br /&gt;
    image(hund8, 7, 7, 486, 648); &lt;br /&gt;
  } else {    &lt;br /&gt;
    // show tree for even frames&lt;br /&gt;
    image(hund9, 7, 7, 486, 648);&lt;br /&gt;
  &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bhgvt</name></author>
	</entry>
</feed>