<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ertdfgcvb</title>
	<atom:link href="http://ertdfgcvb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ertdfgcvb.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 04:12:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Puddle</title>
		<link>http://ertdfgcvb.com/the-puddle-web/</link>
		<comments>http://ertdfgcvb.com/the-puddle-web/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 03:40:57 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[the puddle]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1594</guid>
		<description><![CDATA[Minisite for the Puddle. A quick job and a nice occasion to play a bit with the canvas. See what’s on at thepuddle.ch]]></description>
			<content:encoded><![CDATA[<p>Minisite for the Puddle.<span id="more-1594"></span><br />
A quick job and a nice occasion to play a bit with the canvas.<br />
See what’s on at <a href="http://thepuddle.ch" title="thepuddle.ch" target="_blank">thepuddle.ch</a><br />
<br/><br />
<img src="/wp/wp-content/uploads/2012/02/thepuddlech_1.png" title="thepuddlech_1" width="100%" /><br />
<img src="/wp/wp-content/uploads/2012/02/thepuddlech_2.png" title="thepuddlech_2" width="100%" /><br />
<img src="/wp/wp-content/uploads/2012/02/thepuddlech_3.png" title="thepuddlech_3" width="100%" /><br />
<img src="/wp/wp-content/uploads/2012/02/thepuddlech_4.png" title="thepuddlech_4" width="100%" /><br />
<img src="/wp/wp-content/uploads/2012/02/thepuddlech_5.png" title="thepuddlech_5" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/the-puddle-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sequencer</title>
		<link>http://ertdfgcvb.com/sequencer/</link>
		<comments>http://ertdfgcvb.com/sequencer/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 21:16:46 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[stopmotion]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1558</guid>
		<description><![CDATA[A tiny JavaScript library to display fullscreen image sequences in the browser. To keep the library light and simple there are actually 5 different versions of it plus a benchmark test. They were built to test speed and will eventually be dropped in future versions in favor of a single one. The library consists of [...]]]></description>
			<content:encoded><![CDATA[<p>A tiny JavaScript library to display fullscreen image sequences in the browser.<span id="more-1558"></span><br />
To keep the library light and simple there are actually 5 different versions<br />
of it plus a benchmark test. They were built to test speed and will eventually<br />
be dropped in future versions in favor of a single one.<br />
The library consists of five files:<br/><br/></p>
<ol>
<li>
sequencer.bg.js<br />
Displays the images as the body background. The images are stretched with<br />
the CSS &#8220;auto&#8221;, &#8220;cover&#8221; and &#8220;contain&#8221; modes.<br />
I didn&#8217;t find a way to pass an image object to the CSS background so this<br />
version relies heavily on the browser&#8217;s cache.<br />
→ <a href="http://ertdfgcvb.ch/p2/sm/play/test_bg" title="Benchmark test" target="_blank">Launch in a new window</a>
</li>
<li>
sequencer.div.js<br />
Displays the images as a stack of divs hiding and showing the corresponding<br />
layer. This version relies a bit on the browser cache, but once loaded<br />
the images are stored as a div background.<br />
→ <a href="http://ertdfgcvb.ch/p2/sm/play/test_div" title="Benchmark test" target="_blank">Launch in a new window</a>
</li>
<li>
sequencer.canvas.js<br />
Displays the images on a canvas object the size of the browser window.<br />
The images are preloaded and then stretched and cropped on the canvas.<br />
→ <a href="http://ertdfgcvb.ch/p2/sm/play/test_canvas" title="Benchmark test" target="_blank">Launch in a new window</a>
</li>
<li>
sequencer.canvas2.js<br />
Displays the images on a canvas object the size of the first loaded image.<br />
The canvas is then stretched and positioned correctly via css.<br />
→ <a href="http://ertdfgcvb.ch/p2/sm/play/test_canvas2" title="Benchmark test" target="_blank">Launch in a new window</a>
</li>
<li>
sequencer.canvas.async.js<br />
Loads the sequence asynchronously.<br />
It&#8217;s a messy work in progress right now, but loading times are 4-5 times faster.<br />
This will eventually become the final version.<br />
→ <a href="http://ertdfgcvb.ch/p2/sm/play/test_canvas_async" title="Benchmark test" target="_blank">Launch in a new window</a>
</li>
<li>
sequencer.benchmark.js<br />
Image sequencer benchmark.<br />
Not sure if this is reliable: it looks as though some browsers skip frames<br />
to keep up with the interval event.
</li>
</ol>
<p><br/></p>
<p>Best results so far on OS X are on Safari with the canvas version.<br />
Firefox is very fast (99.8 fps!) with canvas on small windows sizes (smaller than 1000px wide); becomes very slow with bigger windows. It’s also slow with the background &#038; div versions; slow DOM-manipulation I guess.<br />
Chrome and Opera are surprisingly slow with both the canvas versions.<br/><br/></p>
<p>Some examples using Sequencer:<br />
→ <a href="http://ertdfgcvb.com/stopmotion-experiments/" title="Stopmotion Experiments">Stopmotion Experiments</a><br />
→ <a href="http://ertdfgcvb.com/stopmotion-experiments-1/" title="Stopmotion Experiments 360">Stopmotion Experiments 360</a><br/><br />
→ <a href="http://github.com/ertdfgcvb/Sequencer/zipball/master" title="Download from github">Download from github</a><br />
→ <a href="http://github.com/ertdfgcvb/Sequencer/" title="View on github">View on github</a></p>
<p><br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/09/protog1.png" alt="" title="protog" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/sequencer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Puddle</title>
		<link>http://ertdfgcvb.com/the-puddle/</link>
		<comments>http://ertdfgcvb.com/the-puddle/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:25:09 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=978</guid>
		<description><![CDATA[Posters and flyers for The Puddle, live electronic music and DJs at Stall 6, Zürich. Processing was used for the production of the rasters. Screen print on colored paper. “The Puddle” was named by Elia Buletti, genius and poet. Designed with Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>Posters and flyers for The Puddle, live electronic music and DJs at <a href="http://www.stall6.ch" target="_blank">Stall 6</a>, Zürich.<span id="more-978"></span><br />
<a href="http://processing.org" target="_blank">Processing</a> was used for the production of the rasters.<br />
Screen print on colored paper.<br />
“The Puddle” was named by Elia Buletti, genius and poet.<br />
Designed with Sidi Vanetti.<br/><br />
<img src="/wp/wp-content/uploads/2012/01/the_puddle_7.png" alt="" title="the_puddle_7" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/the_puddle_6.png" alt="" title="the_puddle_6" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/the_puddle_5.png" alt="" title="the_puddle_5" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/02/the_puddle_4.png" alt="" title="the_puddle_4" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/02/the_puddle_3.png" alt="" title="the_puddle_3" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/02/the_puddle_2.png" alt="" title="the_puddle_2" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/02/the_puddle_1.png" alt="" title="the_puddle_1" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/the-puddle/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Puddle Builder 07</title>
		<link>http://ertdfgcvb.com/puddle-builder-07/</link>
		<comments>http://ertdfgcvb.com/puddle-builder-07/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:19:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1530</guid>
		<description><![CDATA[The tool used to create the image for the February edition of the Puddle flyer. Built with Processing and inspired by the wooden parquet floor of the flat in Berlin I&#8217;m living in right now. Designed with Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>The tool used to create the image for the February edition of the <a href="/the-puddle/">Puddle flyer</a>.<span id="more-1530"></span><br />
Built with <a href="http://processing.org" target="_blank">Processing</a> and inspired by the wooden parquet floor of the flat in Berlin I&#8217;m living in right now.<br />
Designed with Sidi Vanetti.<br />
<br/></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07.png" alt="" title="the_puddle_builder_07_test" width="100%" /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_1.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_2.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_3.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_5.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_7.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_8.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_9.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_10.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_11.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_12.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_13.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_14.png" alt="" title="the_puddle_builder_07" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2012/01/the_puddle_builder_07_test_15.png" alt="" title="the_puddle_builder_07" style="float:left; width:48%;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/puddle-builder-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Elusion (prototype)</title>
		<link>http://ertdfgcvb.com/the-elusion/</link>
		<comments>http://ertdfgcvb.com/the-elusion/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 01:19:00 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[live visuals]]></category>
		<category><![CDATA[Monome]]></category>
		<category><![CDATA[OSC]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1514</guid>
		<description><![CDATA[Live visual for “Il Domani” — The Tomorrow. People had access to a Monome and could draw their own shapes. Written in an 8h rush, this version is still lacking the foreseen beat detection and a decent color management. The last two columns of the Monome have been sacrificed for the interface: by pressing the [...]]]></description>
			<content:encoded><![CDATA[<p>Live visual for “Il Domani” — The Tomorrow.<span id="more-1514"></span><br />
People had access to a Monome and could draw their own shapes.<br />
Written in an 8h rush, this version is still lacking the foreseen beat detection and a decent color management.<br />
The last two columns of the Monome have been sacrificed for the interface: by pressing the buttons in the last column it was possible to choose the actual form, save the whole shape or eventually discard it. The second-last column was just turned off to designate a separation from the “draw area” and the “tools area”.<br />
Thanks to <a href="https://twitter.com/#!/cyphunk">@cyphunk</a> for lending me his precious.<br />
<br/><br />
<iframe class="imgborder" src="http://player.vimeo.com/video/33001795?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="496" height="279" frameborder="0"></iframe><br />
<br/><br />
Below a little Processing snippet to add OpenGL fog to the scene (works on 1.5):<br />
<br/></p>
<pre>
import java.nio.FloatBuffer;
import javax.media.opengl.GL;
import processing.opengl.*;

public void setup() {
  size(1280, 720, OPENGL);
  hint(DISABLE_DEPTH_SORT);
  hint(DISABLE_OPENGL_ERROR_REPORT);
  hint(ENABLE_OPENGL_4X_SMOOTH);
  frameRate(100);
  fog(100, 1200, 0.25f, color(0)); //just put the fog in the setup
}

public void draw() {
  background(0); //same color of the fog
  lights();
  translate(width/2, height/2, -500);
  rotateX(frameCount*0.011f);
  rotateY(frameCount*0.012f);
  rotateZ(frameCount*0.013f);
  noStroke();
  fill(255);
  box(300,500,700);
}

void fog(float near, float far, float density, int col) {
  float[] fogColor = new float[4];
  fogColor[0] = (col >> 16 &#038; 0xFF) / 255.0f; //R
  fogColor[1] = (col >> 8 &#038; 0xFF) / 255.0f;  //G
  fogColor[2] = (col &#038; 0xFF) / 255.0f;       //B
  fogColor[3] = 1.0f;                        //A

  PGraphicsOpenGL pgl = (PGraphicsOpenGL) g;
  GL gl = pgl.beginGL();
  gl.glEnable(GL.GL_FOG);
  // gl.glFogi (GL.GL_FOG_MODE, GL.GL_EXP); // exp2 FOG
  gl.glFogi(GL.GL_FOG_MODE, GL.GL_LINEAR);  // Linear FOG
  gl.glFogf(GL.GL_FOG_START, near);
  gl.glFogf(GL.GL_FOG_END, far);

  gl.glFogfv(GL.GL_FOG_COLOR, FloatBuffer.wrap(fogColor));
  gl.glFogf(GL.GL_FOG_DENSITY, density);
  gl.glHint(GL.GL_FOG_HINT, GL.GL_NICEST);
  pgl.endGL();
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/the-elusion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ball 2</title>
		<link>http://ertdfgcvb.com/ball-2/</link>
		<comments>http://ertdfgcvb.com/ball-2/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 14:48:13 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Threejs]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1455</guid>
		<description><![CDATA[Paint a ball. Canvas version of the 2006 program which was written in Lingo. Also a first test of the excellent and lightweight Three.js Javascript 3D Engine. Writing code in Javascript is fun although I’m not really used to the prototype model, yet. Play the little Buckminster Fuller and build your own ball or browse [...]]]></description>
			<content:encoded><![CDATA[<p>Paint a ball.<span id="more-1455"></span><br />
Canvas version of the <a href="/ball/" title="Ball">2006 program</a> which was written in Lingo.<br />
Also a first test of the excellent and lightweight <a href="https://github.com/mrdoob/three.js/" title="Three.js" target="_blank">Three.js</a> Javascript 3D Engine.<br />
Writing code in Javascript is fun although I’m not really used to the prototype model, yet.<br />
Play the little Buckminster Fuller and <a href="/p2/ball">build your own ball</a> or browse the archive with the ‘P’ and ‘N’ buttons.<br />
<br/><br />
<a href="/p2/ball"><img src="/wp/wp-content/uploads/2011/09/ball2_1.png" alt="" title="ball2_1" class="imgborder full" ></a></p>
<p><a href="/p2/ball/#57"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_4.png" class="left"/></a><a href="/p2/ball/#39"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_1.png" class="right"/></a></p>
<p><a href="/p2/ball/#30"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_2.png" class="left"/></a><a href="/p2/ball/#73"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_3.png" class="right"/></a></p>
<p><a href="/p2/ball/#37"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_5.png" class="left"/></a><a href="/p2/ball/#70"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_6.png" class="right"/></a></p>
<p><a href="/p2/ball/#62"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_7.png" class="left"/></a><a href="/p2/ball/#58"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_8.png" class="right"/></a></p>
<p><a href="/p2/ball/#50"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_9.png" class="left"/></a><a href="/p2/ball/#56"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_10.png" class="right"/></a></p>
<p><a href="/p2/ball/#19"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_11.png" class="left"/></a><a href="/p2/ball/#13"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_12.png" class="right"/></a></p>
<p><a href="/p2/ball/#18"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_13.png" class="left"/></a><a href="/p2/ball/#11"><img src="/wp/wp-content/uploads/2011/09/ball2_exb_14.png" class="right"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/ball-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Puddle Tees</title>
		<link>http://ertdfgcvb.com/puddle-tees/</link>
		<comments>http://ertdfgcvb.com/puddle-tees/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 12:48:21 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[t-shirt]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1442</guid>
		<description><![CDATA[First T-shirt series for the Puddle. Silkscreen print. Sold out.]]></description>
			<content:encoded><![CDATA[<p>First T-shirt series for the Puddle.<span id="more-1442"></span><br />
Silkscreen print.<br />
Sold out.<br />
<br/></p>
<p><img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_3.jpg" alt="" title="the_puddle_tees_3" width="100%"/><br />
<img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_2.jpg" alt="" title="the_puddle_tees_2" width="100%"/><br />
<img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_1.jpg" alt="" title="the_puddle_tees_1" width="100%"/></p>
<p><img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_3_det.jpg" alt="" title="the_puddle_tees_2_det" style="float:left; width:48%;"/><img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_2_det.jpg" alt="" title="the_puddle_tees_2_det" style="float:right; width:48%;"/></p>
<p><img src="/wp/wp-content/uploads/2011/09/the_puddle_tees_1_det.jpg" alt="" title="the_puddle_tees_1_det" style="float:left; width:48%;"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/puddle-tees/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Puddle Builder 06</title>
		<link>http://ertdfgcvb.com/puddle-builder-06/</link>
		<comments>http://ertdfgcvb.com/puddle-builder-06/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 14:14:54 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1378</guid>
		<description><![CDATA[The tool used to create the image for the August edition of the Puddle flyer. Built with Processing and inspired by the chess game. After all the tests we did the final image was built by hand (adapted from a real game). In the editor (below): knight trails. Designed with Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>The tool used to create the image for the August edition of the<a href="/the-puddle/"> Puddle flyer</a>.<span id="more-1378"></span><br />
Built with <a href="http://processing.org" target="_blank">Processing</a> and inspired by the chess game.<br />
After all the tests we did the final image was built by hand (adapted from a real game).<br />
In the editor (below): knight trails.<br />
Designed with Sidi Vanetti.<br />
<br/></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_0.png" alt="" title="the_puddle_builder_06_1" width="100%" /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_1.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_2.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_3.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_4.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_5.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_6.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_7.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_8.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_9.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_10.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_11.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_12.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_13.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_14.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_15.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_16.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_17.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_18.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_19.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_20.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_21.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_22.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_23.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_24.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_25.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_26.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_27.png" alt="" title="the_puddle_builder_06_test" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/07/the_puddle_builder_06_28.png" alt="" title="the_puddle_builder_06_test" style="float:right; width:48%;"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/puddle-builder-06/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Anthem of Hearts (Unfinished)</title>
		<link>http://ertdfgcvb.com/anthem-of-hearts/</link>
		<comments>http://ertdfgcvb.com/anthem-of-hearts/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 20:26:47 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1254</guid>
		<description><![CDATA[An (attempt of an) interactive particle system based music video. Peter Kernel asked me to build an interactive video for their upcoming album. I was really tempted to write the program in JavaScript (Canvas or WebGL) but I didn&#8217;t feel agile enough to deliver in a very short time so I decided to build it [...]]]></description>
			<content:encoded><![CDATA[<p>An (attempt of an) interactive  particle system based music video.<span id="more-1254"></span><br />
<a href="http://www.peterkernel.com/" target="_blank">Peter Kernel</a> asked me to build an interactive video for their upcoming album.<br />
I was really tempted to write the program in JavaScript (Canvas or WebGL) but I didn&#8217;t feel agile enough to deliver in a very short time so I decided to build it up with Processing and to depoly it via the crippled Java plugin (a decision which I now regret, for the plugin part—not Processing!).<br />
And yes: sound and Java always sucked.<br />
But I didn&#8217;t think so badly.<br />
I had so many problems by embedding the fullscreen applet on different browsers and platforms without dramatic frame-rate drops and sound hick-ups that at the end I decided to abandon the project without any time left for a new one. We (the band and I) also felt that the whole project didn’t really take off, so any extra effort to make it run seemed useless. Sorry guys.<br />
Anyway: it was fun to rewrite the particle engine I was working on and to test different behaviors and colorings. I tried to overcome the “organic” feel of force driven systems with grid snapping and other “smart” distribution rules.<br />
It was interesting to sync the animation to the sound. I also tried to sync videos with a constant framerate to the main system: it worked quite well but later I abandoned the whole idea of working with video feeds.<br />
The main idea was to visualize the word-lists in the song but I didn’t want to introduce a font directly into the scene so it was kind of obvious to form words with the particles… as in any dot-matrix display.<br />
Oh and the particles: simple (bitmap-cached) circles. I tried different shapes and always came back to a plain circle. But in a moment I tested with donut kind of shapes and the result was simple but interesting:<br/><br/><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/06/aoh_colors.png" alt="" title="aoh_colors" width="169" height="25" /><br />
The only part where I had time to implement the sum of those shapes was in the beginning sequence. </p>
<p>The choreography is unfinished (especially at the end), the color-scheme is inaccurate, the mouse interaction is kind of dull, and there is (or was) still work to do but you can <a href="http://vimeo.com/24719222" target="_blank">enjoy my failure by watching the captured frames on Vimeo</a> if you feel brave enough:<br />
<br/><br />
<iframe class="imgborder" src="http://player.vimeo.com/video/24719222?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="496" height="279" frameborder="0"></iframe><br />
<br/><br />
<img src="/wp/wp-content/uploads/2011/06/aoh_797.png" alt="" title="aoh_797" width="100%" class="imgborder" /><br />
<img src="/wp/wp-content/uploads/2011/06/aoh_1008.png" alt="" title="aoh_1008" width="100%" class="imgborder" /><br />
<img src="/wp/wp-content/uploads/2011/06/aoh_1785.png" alt="" title="aoh_1785" width="100%" class="imgborder" /><br />
<img src="/wp/wp-content/uploads/2011/06/aoh_3271.png" alt="" title="aoh_3271" width="100%" class="imgborder" /><br />
<img src="/wp/wp-content/uploads/2011/06/aoh_4992.png" alt="" title="aoh_4992" width="100%" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/anthem-of-hearts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Studio Pedrozzi</title>
		<link>http://ertdfgcvb.com/studio-pedrozzi/</link>
		<comments>http://ertdfgcvb.com/studio-pedrozzi/#comments</comments>
		<pubDate>Tue, 03 May 2011 13:54:57 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1173</guid>
		<description><![CDATA[New website for Studio d’Architettura Martino Pedrozzi. Visit pedrozzi.com. Designed with Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>New website for Studio d’Architettura Martino Pedrozzi.<span id="more-1173"></span><br />
Visit <a href="http://pedrozzi.com" target="_blank">pedrozzi.com</a>.<br />
Designed with Sidi Vanetti.<br />
<br/><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/05/pedrozzi_1.png" alt="" title="pedrozzi_1" width="100%"  class="imgborder" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/05/pedrozzi_2.png" alt="" title="pedrozzi_2" width="100%"  class="imgborder" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/05/pedrozzi_3.png" alt="" title="pedrozzi_3" width="100%"  class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/studio-pedrozzi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple forces 1 &amp; 2</title>
		<link>http://ertdfgcvb.com/simple-forces-1-2/</link>
		<comments>http://ertdfgcvb.com/simple-forces-1-2/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 00:38:54 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1154</guid>
		<description><![CDATA[A simple, easy to implement and very fast particle system. Old school effects built on the two days workshop at Processing Paris 2011 with Hartmut Bohnacker. Click images for Vimeo video.]]></description>
			<content:encoded><![CDATA[<p>A simple, easy to implement and very fast particle system.<br />
<span id="more-1154"></span>Old school effects built on the two days workshop at <a href="http://www.processingparis.org" target="_blank">Processing Paris</a> 2011 with Hartmut Bohnacker.<br />
Click images for Vimeo video.<br />
<br/><br />
<a href="http://vimeo.com/22851490" target="_blank"><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/04/PP_2011_day_1a.png" alt="" title="PP_2011_day_1a" width="100%" /></a><br />
<a href="http://vimeo.com/22999007" target="_blank"><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/04/PP_2011_day_2.png" alt="" title="PP_2011_day_2" width="100%" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/simple-forces-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puddle Builder 05</title>
		<link>http://ertdfgcvb.com/puddle-builder-05/</link>
		<comments>http://ertdfgcvb.com/puddle-builder-05/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 11:16:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1125</guid>
		<description><![CDATA[The new tool used to create the image for the May edition of the Puddle flyer. Built with Processing and Toxi’s Voronoi class (part of the huge toxiclibs compilation). To avoid the usual organic feel of the Voronoi diagrams we decided to snap the points to a grid; we intentionally left some little asymmetries, tough. [...]]]></description>
			<content:encoded><![CDATA[<p>The new tool used to create the image for the May edition of the<a href="/the-puddle/"> Puddle flyer</a>.<span id="more-1125"></span><br />
Built with <a href="http://processing.org" target="_blank">Processing</a> and Toxi’s Voronoi class (part of the huge <a href="http://toxiclibs.org/" target="_blank">toxiclibs</a> compilation).<br />
To avoid the usual organic feel of the Voronoi diagrams we decided to snap the points to a grid; we intentionally left some little asymmetries, tough.<br />
The final results reminds me of some afghan carpet designs.<br />
Designed with Sidi Vanetti.<br />
<br/><br />
<img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_1.png" alt="" title="the_puddle_builder_05_1" width="100%" /></p>
<p><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_1.png" alt="" title="the_puddle_builder_05_test_1" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_2.png" alt="" title="the_puddle_builder_05_test_2" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_3.png" alt="" title="the_puddle_builder_05_test_3" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_4.png" alt="" title="the_puddle_builder_05_test_4" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_5.png" alt="" title="the_puddle_builder_05_test_5" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_6.png" alt="" title="the_puddle_builder_05_test_6" style="float:right; width:48%;"  /></p>
<p><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_7.png" alt="" title="the_puddle_builder_05_test_7" style="float:left; width:48%;" /><img src="/wp/wp-content/uploads/2011/04/the_puddle_builder_05_test_8.png" alt="" title="the_puddle_builder_05_test_8" style="float:right; width:48%;"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/puddle-builder-05/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zero Button Game</title>
		<link>http://ertdfgcvb.com/zero-button-game/</link>
		<comments>http://ertdfgcvb.com/zero-button-game/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 12:51:03 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1347</guid>
		<description><![CDATA[A workshop about interaction. After last year’s One Button Workshop (with mouse-hacking) we tried a new approach with very constrained interaction: “design a game with zero buttons”. Good projects emerged featuring audio input, accelerometer (both: from iPhone or the computer itself), mouse and multiple-mice, analog-sticks, trackpads, cameras, etc. Focus was on interaction so the first [...]]]></description>
			<content:encoded><![CDATA[<p>A workshop about interaction. <span id="more-1347"></span><br />
After last year’s One Button Workshop (with mouse-hacking) we tried a new approach with very constrained interaction: “design a game with zero buttons”. Good projects emerged featuring audio input, accelerometer (both: from iPhone or the computer itself), mouse and multiple-mice, analog-sticks, trackpads, cameras, etc.<br />
Focus was on interaction so the first two days were used to experiment with different input devices and on how to smooth noisy signals (for example data coming from accelerometer inputs).<br />
Very handy came <a href="http://www.brianhpratt.net/cms/index.php?page=accsim" target="_blank">AccSim</a> for iPhone-computer communication.<br />
<br/><br />
<iframe class="imgborder" src="http://player.vimeo.com/video/25083431?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="496" height="279" frameborder="0"></iframe><br />
<br/><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_1.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_2.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_5.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_6.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_ben.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_meltz_3.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_pierre_3.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_pierre_5.jpg" alt="" title="Zero Button Game at ECAL" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/04/zero_button_ecal_thomas_1.png" alt="" title="Zero Button Game at ECAL" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/zero-button-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puddle Builder 03</title>
		<link>http://ertdfgcvb.com/puddle-builder-03/</link>
		<comments>http://ertdfgcvb.com/puddle-builder-03/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 11:32:59 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[the puddle]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1026</guid>
		<description><![CDATA[The tool used to create the image for the March edition of the Puddle flyer. Built with Processing and a modified version of Toxi’s cp5magic. Try the applet version of the Puddle Builder 03 (PDF export is disabled).]]></description>
			<content:encoded><![CDATA[<p>The tool used to create the image for the March edition of the<a href="/the-puddle/"> Puddle flyer</a>.<span id="more-1026"></span><br />
Built with <a href="http://processing.org" target="_blank">Processing</a> and a modified version of Toxi’s <a href="http://hg.postspectacular.com/cp5magic"  target="_blank">cp5magic</a>.<br />
Try the applet version of the <a href="/p2/puddle_builder_03">Puddle Builder 03</a> (PDF export is disabled).<br />
<br/><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_1.png" alt="" title="the_puddle_builder_03_1" width="100%"  /></p>
<p><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_1.png" alt="" style="float:left; width:48%;" title="the_puddle_builder_03_test_1" /><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_2.png" alt="" title="the_puddle_builder_03_test_2" style="float:right; width:48%;"/></p>
<p><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_4.png" alt="" title="the_puddle_builder_03_test_4" style="float:left; width:48%;"  /><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_5.png" alt="" title="the_puddle_builder_03_test_5" style="float:right; width:48%;"  /></p>
<p><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_6.png" alt="" title="the_puddle_builder_03_test_6" style="float:left; width:48%;" /><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_7.png" alt="" title="the_puddle_builder_03_test_7" style="float:right; width:48%;"  /></p>
<p><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_8.png" alt="" title="the_puddle_builder_03_test_8" style="float:left; width:48%;" /><img src="http://ertdfgcvb.com/wp/wp-content/uploads/2011/03/the_puddle_builder_03_test_3.png" alt="" title="the_puddle_builder_03_test_3" style="float:right; width:48%;"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/puddle-builder-03/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Abyss</title>
		<link>http://ertdfgcvb.com/the-abyss/</link>
		<comments>http://ertdfgcvb.com/the-abyss/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 10:34:12 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=948</guid>
		<description><![CDATA[A Processing workshop about polymorphism and reflection. The idea behind The Abyss project was to build a system and then let everyone contribute, with a good balance between individual and collaborative work. Students could build new creatures or expand features of the abyss itself. For beginners it was easy enough to contribute with a basic [...]]]></description>
			<content:encoded><![CDATA[<p>A Processing workshop about polymorphism and reflection.<span id="more-948"></span><br />
The idea behind The Abyss project was to build a system and then let everyone contribute, with a good balance between individual and collaborative work.<br />
Students could build new creatures or expand features of the abyss itself. For beginners it was easy enough to contribute with a basic creature, more advanced students could train their graphic skills or even build creatures which interacted with other creatures.<br />
After several requests I decided to publish the (far from perfect) source code of The Abyss.<br />
I left a few of my own example creatures but student’s creatures are not included as I didn&#8217;t ask their permission to publish the code.<br />
Feel free to use the concept and code for your own workshops or lectures or contribute with your own leviathan on github:<br />
<a href="https://github.com/ertdfgcvb/TheAbyss" target="_blank">github.com/ertdfgcvb/TheAbyss</a><br/><br/></p>
<p>Rules:</p>
<ol>
<li>Extend the SuperCreature class and build your own creature.</li>
<li>Allowed colors are white with alpha shades. Not a strict rule. </li>
<li>Each creature must implement the &#8220;move()&#8221; and &#8220;draw()&#8221; methods. (see the SuperCreature class for details).</li>
<li>Transforms should use the pos, rot, sca vectors.</li>
<li>Animations can be timed with frames or actual time.</li>
<li>The name of the new creature class is built with the authors initals and the creature name (not an optimal naming convention but it works with 10-20 people).</li>
<li>The .pde file must have the same name of the class (for example: AGCubus.pde).</li>
<li>Insert your name, the creature name and the version in the constructor (to do: annotations?).</li>
<li>Break all rules and build something new.</li>
</ol>
<p><br/></p>
<p>During a workshop in december 2010, students of the 1st and 3rd year at ECAL in Lausanne learned how to create and then extended a generic &#8220;SuperCreature&#8221; class. A creature manager took care of the creatures (via Java reflection) and added them to The Abyss. 52 different types of creatures populated the deep waters at the end of the five days workshop.<br/><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_3.jpg" alt="" title="the_abyss_3" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_4.jpg" alt="" title="the_abyss_4" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_5.jpg" alt="" title="the_abyss_5" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_2.jpg" alt="" title="the_abyss_2" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_6.jpg" alt="" title="the_abyss_6" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_1.jpg" alt="" title="the_abyss_1" width="100%"  /><br />
<img src="/wp/wp-content/uploads/2011/02/the_abyss_7.jpg" alt="" title="the_abyss_7" width="100%"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/the-abyss/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Missiles</title>
		<link>http://ertdfgcvb.com/missiles/</link>
		<comments>http://ertdfgcvb.com/missiles/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 11:11:04 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=884</guid>
		<description><![CDATA[A morphing shape study. View the applet version with aliased graphics.]]></description>
			<content:encoded><![CDATA[<p>A morphing shape study.<span id="more-884"></span><br />
View the <a href="/p2/missiles">applet version</a> with aliased graphics.<br />
<br/><br />
<img src="/wp/wp-content/uploads/2010/11/missiles_grid_8x8.png" alt="" title="missiles_grid_8x8" width="100%" /><br />
<iframe class="imgborder" src="http://player.vimeo.com/video/17891322?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="496" height="372" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/missiles/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Civimatic</title>
		<link>http://ertdfgcvb.com/civimatic/</link>
		<comments>http://ertdfgcvb.com/civimatic/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 08:47:45 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[graphic-design]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=895</guid>
		<description><![CDATA[The new 2010 edition of Civimatic has just been published. Civimatic outlines, in form of graphs, the mechanism of swiss civics. The view-detail can be adjusted as the amount of information for each node. More than 100 diagrams on three levels (federal, cantonal and municipal) are featured. The project has been commissioned by the swiss-italian [...]]]></description>
			<content:encoded><![CDATA[<p>The new 2010 edition of <em>Civimatic</em> has just been published.<span id="more-895"></span><br />
<em>Civimatic</em> outlines, in form of graphs, the mechanism of swiss civics.<br />
The view-detail can be adjusted as the amount of information for each node.<br />
More than 100 diagrams on three levels (federal, cantonal and municipal) are featured.<br />
The project has been commissioned by the swiss-italian government.<br />
With Sidi Vanetti.<br />
Order a cd-rom copy (italian only): <a href="http://www.ti.ch/civica" target="_blank">www.ti.ch/civica</a><br />
<br/><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_1.png" alt="" title="civimatic_1" width="100%" /><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_2.png" alt="" title="civimatic_2" width="100%" /><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_3.png" alt="" title="civimatic_3" width="100%" /><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_5.png" alt="" title="civimatic_5" width="100%" /><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_6.png" alt="" title="civimatic_6" width="100%" /><br />
<img src="/wp/wp-content/uploads/2010/10/civimatic_7.png" alt="" title="civimatic_7" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/civimatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joy</title>
		<link>http://ertdfgcvb.com/joy/</link>
		<comments>http://ertdfgcvb.com/joy/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 09:06:57 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=867</guid>
		<description><![CDATA[A quick fullscreen-physics test with the excellent Fisica JBox2D wrapper. Enjoy joy. Press ‘1’ for some options. .]]></description>
			<content:encoded><![CDATA[<p>A quick fullscreen-physics test with the excellent <a href="http://www.ricardmarxer.com/fisica/" target="_blank">Fisica</a> JBox2D wrapper.<span id="more-867"></span><br />
Enjoy <a href="/p2/joy">joy</a>.<br />
Press ‘1’ for some options.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/10/joy_2.png" alt="" title="joy_2"  class="imgborder" width="100%" />.</p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/joy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wish</title>
		<link>http://ertdfgcvb.com/wish/</link>
		<comments>http://ertdfgcvb.com/wish/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 10:23:58 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1424</guid>
		<description><![CDATA[Website for the Workshops on International Social Housing of the Accademia di Architettura, Mendrisio The site was designed in 2003 and is updated since then once a year with the workshop description and results. Each year fits in one huge page. The background colors are derived from the colors of the actual nation’s flag. Visit [...]]]></description>
			<content:encoded><![CDATA[<p>Website for the Workshops on International Social Housing of the Accademia di Architettura, Mendrisio<span id="more-1424"></span><br />
The site was designed in 2003 and is updated since then once a year with the workshop description and results.<br />
Each year fits in one huge page. The background colors are derived from the colors of the actual nation’s flag.<br />
Visit <a href="http://wish.arch.unisi.ch" target="_blank">wish.arch.unisi.ch</a>.<br />
<br/><br />
<img src="/wp/wp-content/uploads/2011/08/wish_home.png" title="Wish home" width="48%" /><br />
<img src="/wp/wp-content/uploads/2011/08/wish_2010.png" title="Wish 2010" width="48%" /><br />
<img src="/wp/wp-content/uploads/2011/08/wish_2009.png" title="Wish 2009" width="48%" /><br />
<img src="/wp/wp-content/uploads/2011/08/wish_2008.png" title="Wish 2008" width="48%" /><br />
<img src="/wp/wp-content/uploads/2011/08/wish_2007.png" title="Wish 2007" width="48%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/wish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Face to Face</title>
		<link>http://ertdfgcvb.com/face-to-face/</link>
		<comments>http://ertdfgcvb.com/face-to-face/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 17:05:20 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=788</guid>
		<description><![CDATA[A five days workshop at doc:LAB in Istanbul. “In how many ways and with what techniques can one produce variations on the human faces seen from the front? The graphic designer works without set limits and without rejecting any possible combinations and methods in order to arrive at the precise image he needs for the [...]]]></description>
			<content:encoded><![CDATA[<p>A five days workshop at <a href="http://www.dotdoclab.org/" target="_blank">doc:LAB</a> in Istanbul.<br />
<span id="more-788"></span><br />
“In how many ways and with what techniques can one produce variations on the human faces seen from the front? The graphic designer works without set limits and without rejecting any possible combinations and methods in order to arrive at the precise image he needs for the job in hand, and no other.<br />
Looking at the technique of the past we notice that a human face made in mosaic has a different structure from one painted on the wall, drawn in chiaroscuro, carved in stone, and so on.<br />
The features—eyes, nose and mouth—are ‘structured’ differently. In the same way if one is thinking of making a face out of glass, wire, folded paper, woven straw, inflatable rubber, strips of woods, plastic, fiberglass, or wire netting.<br />
The relationship between the features will have to be adapted to each material.”<br />
in Bruno Munari, <em>Arte come mestiere</em>, 1966<br />
(english version, <em>Design as Art</em>, Penguin Books)<br />
&nbsp;<br />
For the first three days we (Alain Bellet from ECAL and me) used <a href="http://processing.org" traget="_blank">processing</a> to build some very basic (almost trivial) tools to cover a set of six topics we identified around the human face:</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Pareidolia" target="_blank">Pareidolia</a></li>
<li>Symmetry</li>
<li>Expression (not explored)</li>
<li>Proportion</li>
<li>Mirror</li>
<li>Mask (not explored)</li>
</ol>
<p>In the last two days students were then asked to explore one of the subjects and to develop a personal project around it.</p>
<p>For more images and an overview of the five workshops held visit <a href="http://www.dotdoclab.org/blog">doc:LAB’s blog</a>.<br />
<br/><br />
<object width="496" height="397"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13620175&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13620175&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="496" height="397"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/face-to-face/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I love you</title>
		<link>http://ertdfgcvb.com/i-love-you/</link>
		<comments>http://ertdfgcvb.com/i-love-you/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 14:18:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[electronic typewriter]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=680</guid>
		<description><![CDATA[Second electronic typewriter. Be romantic.]]></description>
			<content:encoded><![CDATA[<p>Second electronic typewriter.<br />
<span id="more-680"></span><a href="/p2/etw/iloveyou">Be romantic</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/iloveyou_9_crop.png" alt="" title="iloveyou_9_crop" width="496" height="433" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/i-love-you/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Processing book–covers</title>
		<link>http://ertdfgcvb.com/processing-book-covers/</link>
		<comments>http://ertdfgcvb.com/processing-book-covers/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:31:47 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=643</guid>
		<description><![CDATA[Fresh out of print the new book for the Museo Cantonale d’Arte of the “Sguardi” series. Every book features works from the collection of the museum. The semi-irregular background patterns are generated with the aid of Processing. 2 colors offset print on colored paper. With Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>Fresh out of print the new book for the <a target="_blank" href="http://www.museo-cantonale-arte.ch/">Museo Cantonale d’Arte</a> of the “Sguardi” series.<br />
Every book features works from the collection of the museum.<br />
<span id="more-643"></span><br />
The semi-irregular background patterns are generated with the aid of <a href="http://processing.org" target="_blank">Processing</a>.<br />
2 colors offset print on colored paper.<br />
With Sidi Vanetti.<br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/sguardi_1-496x372.jpg" alt="" title="sguardi_1"  /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/sguardi_2-496x372.jpg" alt="" title="sguardi_2" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/sguardi_3-496x179.png" alt="" title="sguardi_3"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/processing-book-covers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stopmotion experiments</title>
		<link>http://ertdfgcvb.com/stopmotion-experiments/</link>
		<comments>http://ertdfgcvb.com/stopmotion-experiments/#comments</comments>
		<pubDate>Sun, 30 May 2010 12:13:55 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[cigarettes]]></category>
		<category><![CDATA[clouds]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[stopmotion]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=43</guid>
		<description><![CDATA[An ongoing collection of stopmotion clips. nb1 gysin 2 gysin 1 parisienne_2 n22 n20 n18 n15 n14 n13 n12 n11 n10 n6 n5 n3 n2]]></description>
			<content:encoded><![CDATA[<p>An ongoing collection of stopmotion clips.<br />
<span id="more-43"></span><br />
<a href="/p2/sm/play/nb1">nb1</a><br />
<a href="/p2/sm/play/gysin_2">gysin 2</a><br />
<a href="/p2/sm/play/gysin_1">gysin 1</a><br />
<a href="/p2/sm/play/parisienne_2">parisienne_2</a><br />
<a href="/p2/sm/play/n22">n22</a><br />
<a href="/p2/sm/play/n20">n20</a><br />
<a href="/p2/sm/play/n18">n18</a><br />
<a href="/p2/sm/play/n15">n15</a><br />
<a href="/p2/sm/play/n14">n14</a><br />
<a href="/p2/sm/play/n13">n13</a><br />
<a href="/p2/sm/play/n12">n12</a><br />
<a href="/p2/sm/play/n11">n11</a><br />
<a href="/p2/sm/play/n10">n10</a><br />
<a href="/p2/sm/play/n6">n6</a><br />
<a href="/p2/sm/play/n5">n5</a><br />
<a href="/p2/sm/play/n3">n3</a><br />
<a href="/p2/sm/play/n2">n2</a></p>
<p><br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/stopmotion_n6.jpg"   alt="" title="stopmotion_n6" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/stopmotion-experiments/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Race! 2</title>
		<link>http://ertdfgcvb.com/race-2/</link>
		<comments>http://ertdfgcvb.com/race-2/#comments</comments>
		<pubDate>Fri, 07 May 2010 10:02:20 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=284</guid>
		<description><![CDATA[Second edition of the Race! workshop. This time for three days in a beautiful villa in Vico-Morcote over the lake. Thanks to all the participants, to MAInD for the organisation, to Renato and Serena.]]></description>
			<content:encoded><![CDATA[<p>Second edition of the <a href="http://ertdfgcvb.ch/race/">Race!</a> workshop. This time for three days in a beautiful villa in Vico-Morcote over the lake.<br />
Thanks to all the participants, to <a href="http://www.maind.supsi.ch/" target="_blank">MAInD</a> for the organisation, to Renato and Serena.<br />
<span id="more-284"></span><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_7.jpg" alt="" title="ws_race_2_7" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_9.jpg" alt="" title="ws_race_2_9" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_5.jpg" alt="" title="ws_race_2_5" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_2.jpg" alt="" title="ws_race_2_2" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_1.jpg" alt="" title="ws_race_2_1" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/05/ws_race_2_6.jpg" alt="" title="ws_race_2_6" width="100%" /><br />
<object width="496" height="306"><param name="movie" value="http://www.youtube.com/v/8T-OaBIwb_Q&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8T-OaBIwb_Q&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="496" height="306"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/race-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Studio Vacchini</title>
		<link>http://ertdfgcvb.com/studiovacchini/</link>
		<comments>http://ertdfgcvb.com/studiovacchini/#comments</comments>
		<pubDate>Sat, 01 May 2010 00:59:16 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=50</guid>
		<description><![CDATA[New website for Studio di Architettura Vacchini. Founder of the studio was architect Livio Vacchini but the studio is now ruled by his daughter Eloisa and the former team. The site features thirty-six projects and complete bibliography and project lists. With Sidi Vanetti. Visit: studiovacchini.ch]]></description>
			<content:encoded><![CDATA[<p>New website for Studio di Architettura Vacchini.<br />
<span id="more-50"></span>Founder of the studio was architect <a href="http://en.wikipedia.org/wiki/Livio_Vacchini" traget="_blank">Livio Vacchini</a> but the studio is now ruled by his daughter Eloisa and the former team.<br />
The site features thirty-six projects and complete bibliography and project lists.<br />
With Sidi Vanetti.<br />
Visit: <a href="http://studiovacchini.ch/index/lan:en">studiovacchini.ch</a><br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/studiovacchini_0-496x720.png" alt="" title="studiovacchini_0"  /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/studiovacchini_1-496x1188.png" alt="" title="studiovacchini_1" class="imgborder"  /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/studiovacchini_3-496x858.jpg" alt="" title="studiovacchini_3" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/studiovacchini_4-496x856.jpg" alt="" title="studiovacchini_4" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/studiovacchini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Un vero amico</title>
		<link>http://ertdfgcvb.com/un-vero-amico/</link>
		<comments>http://ertdfgcvb.com/un-vero-amico/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 16:11:25 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=81</guid>
		<description><![CDATA[A website for a campaign which aims to protect the ears of the youngsters. Visit: unveroamico.ch]]></description>
			<content:encoded><![CDATA[<p>A website for a campaign which aims to protect the ears of the youngsters.<br />
<span id="more-81"></span>Visit: <a href="http://unveroamico.ch">unveroamico.ch</a><br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/unveroamico_0.png" alt="" title="unveroamico_0" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/unveroamico_1.png" alt="" title="unveroamico_1" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/unveroamico_2.png" alt="" title="unveroamico_2" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/unveroamico_3.png" alt="" title="unveroamico_3" width="100%"  class="imgborder"/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/unveroamico_4.png" alt="" title="unveroamico_4" width="100%" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/un-vero-amico/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Race!</title>
		<link>http://ertdfgcvb.com/race/</link>
		<comments>http://ertdfgcvb.com/race/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 20:48:32 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=130</guid>
		<description><![CDATA[Race! was a five days programming workshop at ECAL in Lausanne. I asked the students to develop a race game. A video-game is a very good subject if you want to experiment with interaction, but I was scared about the complexity even a basic a.i. system could achieve. So the game had to be for [...]]]></description>
			<content:encoded><![CDATA[<p>Race! was a five days programming workshop at ECAL in Lausanne.<br />
<span id="more-130"></span>I asked the students to develop a race game. A video-game is a very good subject if you want to experiment with interaction, but I was scared about the complexity even a basic a.i. system could achieve. So the game had to be for two (or more) players, this simplified the code a lot and it also was a lot more fun.<br />
I also didn&#8217;t want the students to invest too much time in developing graphics, sceneries, backdrops: we used real objects/architecture as &#8220;levels&#8221; and simply mapped the software around it. This approach is very fast and can produce some interesting concepts.<br />
Technical aspects touched:<br />
Input devices (joypads, keyboard, microphone, etc)<br />
Video projection and mapping<br />
Interactivity<br />
Graphics and kinematics<br />
As programming environment we used <a href="http://processing.org" target="_blank">Processing</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/03/ws_race_1_1.jpg" alt="" title="ws_race_1_1" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/03/ws_race_1_3.jpg" alt="" title="ws_race_1_3" width="100%" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/03/ws_race_1_2.jpg" alt="" title="ws_race_1_2" width="100%" /><br />
<object width="496" height="279"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11651564&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11651564&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="496" height="279"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/race/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hms</title>
		<link>http://ertdfgcvb.com/hms/</link>
		<comments>http://ertdfgcvb.com/hms/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 21:01:19 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=384</guid>
		<description><![CDATA[A project started with Sidi Vanetti a few months ago. Now also on iPhone and iPad. Built with openFrameworks, rewritten for retina display with Cinder. Read some user reviews. Video by CreativeApplications.net]]></description>
			<content:encoded><![CDATA[<p>A project started with Sidi Vanetti a few months ago. Now also on <a href="http://itunes.apple.com/app/hms/id355014509">iPhone and iPad</a>.<br />
Built with <a href="http://openframeworks.cc/" target="_blank">openFrameworks</a>, rewritten for retina display with <a href="http://libcinder.org/" target="_blank">Cinder</a>.</p>
<p><span id="more-384"></span>Read some <a href="http://lab.hakim.se/appview/#355014509" target="_blank">user reviews</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/03/hms_iphone4.gif" alt="" title="hms_iphone4" width="300" /><br />
<img src="http://ertdfgcvb.com/wp/wp-content/uploads/2010/03/hms_function.png" alt="" title="hms_function" /><br />
<iframe class="imgborder" src="http://player.vimeo.com/video/9414302?title=0&amp;byline=0&amp;portrait=0&amp;color=59a5d1" width="496" height="279" frameborder="0"></iframe><br />
Video by <a href="http://www.creativeapplications.net/iphone/hms-iphone/" target="_blank">CreativeApplications.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/hms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ertdfgcvb</title>
		<link>http://ertdfgcvb.com/ertdfgcvb-2001-2009/</link>
		<comments>http://ertdfgcvb.com/ertdfgcvb-2001-2009/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 17:41:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=116</guid>
		<description><![CDATA[The old site is gone. I migrated some of the projects to the new layout, they are archived in “past”. Nostalgia: ertdfgcvb.ch (2001-2009)]]></description>
			<content:encoded><![CDATA[<p>The old site is gone.<br />
I migrated some of the projects to the new layout, they are archived in “<a href="/category/past/">past</a>”.<br />
<span id="more-116"></span>Nostalgia: <a href="http://ertdfgcvb.ch/p1">ertdfgcvb.ch (2001-2009)</a><br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/01/ertdfgcvb_1.png" alt="" title="ertdfgcvb_1" width="100%"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/ertdfgcvb-2001-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C&#8217;era due volte una nonna</title>
		<link>http://ertdfgcvb.com/cera-due-volte-una-nonna/</link>
		<comments>http://ertdfgcvb.com/cera-due-volte-una-nonna/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 16:22:05 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[stage design]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=492</guid>
		<description><![CDATA[Stage design for a piece written for children with one actor. The whole set had to fit in a car: 17 foldable cardboard boxes, a 5000 ansi-lumen projector, a laptop, clothes and a chair. The software is written in processing and features 15 different realtime animated scenes with different transitions that are mapped on the [...]]]></description>
			<content:encoded><![CDATA[<p>Stage design for a piece written for children with one actor. The whole set had to fit in a car: 17 foldable cardboard boxes, a 5000 ansi-lumen projector, a laptop, clothes and a chair.<br />
The software is written in <a href="http://procressing.org" target="_blank">processing</a> and features 15 different realtime animated scenes with different transitions that are mapped on the boxes. Mapping settings can be stored on a text file and managed trough an integrated editor.<br />
<span id="more-492"></span><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/due_nonne_1-496x372.jpg" alt="" title="due_nonne_1" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/due_nonne_2-496x372.jpg" alt="" title="due_nonne_2" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/due_nonne_3-496x372.jpg" alt="" title="due_nonne_3" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/due_nonne_4-496x372.jpg" alt="" title="due_nonne_4" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/cera-due-volte-una-nonna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kong</title>
		<link>http://ertdfgcvb.com/kong/</link>
		<comments>http://ertdfgcvb.com/kong/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 13:44:25 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[play]]></category>
		<category><![CDATA[electronic typewriter]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=671</guid>
		<description><![CDATA[First of the electronic typewriter series. Become hollywoodian with Kong. Technical notes: the applet is embedded with Sun’s deployJava.js and is made with processing.]]></description>
			<content:encoded><![CDATA[<p>First of the electronic typewriter series.<br />
<span id="more-671"></span>Become hollywoodian with <a href="http://ertdfgcvb.ch/p2/etw/kong">Kong</a>.<br />
Technical notes: the applet is embedded with Sun’s <a href="http://www.java.com/js/deployJava.js" target="_blank">deployJava.js</a> and is made with <a href="http://processing.org" traget="_blank">processing</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/kong_1.png" alt="" title="kong_1" width="100%"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/kong/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Beam!</title>
		<link>http://ertdfgcvb.com/beam/</link>
		<comments>http://ertdfgcvb.com/beam/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 10:25:54 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[workshops]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=293</guid>
		<description><![CDATA[A five days workshop at ECAL, Lausanne.]]></description>
			<content:encoded><![CDATA[<p>A five days workshop at ECAL, Lausanne.<br />
<span id="more-293"></span><br />
<object width="496" height="397"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11228524&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00be00&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11228524&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00be00&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="496" height="397"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/beam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mae</title>
		<link>http://ertdfgcvb.com/mae/</link>
		<comments>http://ertdfgcvb.com/mae/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 16:26:26 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[fashion]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=154</guid>
		<description><![CDATA[A website for swiss-belt-manufacturer mae. I wanted to display the feel of the exclusive fabric by reproducing the belts in actual size. If you lost some weight order a new belt at maemade.ch.]]></description>
			<content:encoded><![CDATA[<p>A website for swiss-belt-manufacturer mae.<br />
I wanted to display the feel of the exclusive fabric by reproducing the belts in actual size.<br />
<span id="more-154"></span>If you lost some weight order a new belt at <a href="http://maemade.ch">maemade.ch</a>.<br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/mae_1.png" alt="" title="mae_1" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/mae_2.png" alt="" title="mae_2" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/mae_6.jpg" alt="" title="mae_6" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/mae_7.jpg" alt="" title="mae_7" width="100%" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/mae/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The wall</title>
		<link>http://ertdfgcvb.com/the-wall/</link>
		<comments>http://ertdfgcvb.com/the-wall/#comments</comments>
		<pubDate>Thu, 01 May 2008 11:07:45 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=266</guid>
		<description><![CDATA[Colors in precarious equilibrium. Destroy the wall]]></description>
			<content:encoded><![CDATA[<p>Colors in precarious equilibrium.<br />
<span id="more-266"></span>Destroy <a href="http://ertdfgcvb.ch/p2/past/the_wall">the wall</a><br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/the_wall_3.png" alt="" title="the_wall_3" width="100%" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/the-wall/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Processing flyers</title>
		<link>http://ertdfgcvb.com/processing-flyers/</link>
		<comments>http://ertdfgcvb.com/processing-flyers/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 19:30:27 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[graphic-design]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=120</guid>
		<description><![CDATA[Series of 4 posters and event-programs. The motive of the first poster is inspired by—and is a hommage to—Nobuo Nakagaki’s experimental digital map of Africa. The patterns are computed with Processing. 3 colors offset print, versions for A0 and A4. With Sidi Vanetti.]]></description>
			<content:encoded><![CDATA[<p>Series of 4 posters and event-programs. The motive of the first poster is inspired by—and is a hommage to—Nobuo Nakagaki’s experimental digital map of Africa.<span id="more-120"></span><br />
The patterns are computed with <a href="http://processing.org" target="_blank">Processing</a>.<br />
3 colors offset print, versions for A0 and A4.<br />
With Sidi Vanetti.<br />
<br/><br />
<img src="/wp/wp-content/uploads/npc_flyers_1.jpg" alt="" title="npc_flyers_1" width="100%" /><br />
<img src="/wp/wp-content/uploads/2008/04/npc_lux_1.png" alt="" title="npc_lux_1" width="100%" class="imgborder"/><br />
<img src="/wp/wp-content/uploads/2008/04/npc_lux_2.png" alt="" title="npc_lux_2" width="100%" class="imgborder"/><br />
<img src="/wp/wp-content/uploads/2008/04/npc_lux_3.png" alt="" title="npc_lux_3" width="100%" class="imgborder"/><br />
<img src="/wp/wp-content/uploads/2008/04/npc_lux_4.png" alt="" title="npc_lux_4" width="100%" class="imgborder"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/processing-flyers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EBSCO visual-search prototypes</title>
		<link>http://ertdfgcvb.com/ebsco-visual-search-prototypes/</link>
		<comments>http://ertdfgcvb.com/ebsco-visual-search-prototypes/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 08:17:25 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[data visualization]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=184</guid>
		<description><![CDATA[I was asked to create two prototypes to graphically display the search results of the powerful EBSCOhost online research databases. “Blocks” prototype: “Columns” prototype:]]></description>
			<content:encoded><![CDATA[<p>I was asked to create two prototypes to graphically display the search results of the powerful <a href="http://www.ebscohost.com/" traget="_blank">EBSCOhost</a> online research databases.<br />
<span id="more-184"></span><br />
“Blocks” prototype:<br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_a_2.png" alt="" title="ebsco_a_2" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_a_3.png" alt="" title="ebsco_a_3" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_a_4.png" alt="" title="ebsco_a_4" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_a_10.png" alt="" title="ebsco_a_10" width="100%" class="imgborder" /><br />
<br/><br />
“Columns” prototype:<br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_b_3.png" alt="" title="ebsco_b_3" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_b_6.png" alt="" title="ebsco_b_6" width="100%" class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/ebsco_b_8.png" alt="" title="ebsco_b_8" width="100%" class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/ebsco-visual-search-prototypes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VW Golf</title>
		<link>http://ertdfgcvb.com/vw-golf/</link>
		<comments>http://ertdfgcvb.com/vw-golf/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 19:07:57 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=344</guid>
		<description><![CDATA[The idea of the dashed trace left by the the car has made it trough for the launch campaign of a new VW Golf in Brazil. The website opened with a 3d interactive animation, featuring a Golf and, of course, the black dashes. Drive a non-polluting VW Golf.]]></description>
			<content:encoded><![CDATA[<p>The idea of the dashed trace left by the <a href="/the-car/">the car</a> has made it trough for the launch campaign of a new VW Golf in Brazil.<br />
<span id="more-344"></span>The website opened with a 3d interactive animation, featuring a Golf and, of course, the black dashes.<br />
Drive a non-polluting <a href="http://ertdfgcvb.ch/p2/vw_golf">VW Golf</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/vw_golf_1.png" alt="" title="vw_golf_1" width="100%" class="imgborder"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/vw_golf_2.png" alt="" title="vw_golf_2" width="100%" class="imgborder"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/vw_golf_3.png" alt="" title="vw_golf_3" width="100%" class="imgborder"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/vw_golf_4.png" alt="" title="vw_golf_4" width="100%" class="imgborder"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/vw_golf_5.png" alt="" title="vw_golf_5" width="100%" class="imgborder"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/vw-golf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stopmotion experiments</title>
		<link>http://ertdfgcvb.com/stopmotion-experiments-1/</link>
		<comments>http://ertdfgcvb.com/stopmotion-experiments-1/#comments</comments>
		<pubDate>Thu, 04 May 2006 10:26:55 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[exhibition design]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[stopmotion]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=825</guid>
		<description><![CDATA[Proof of concept for a series of 360° stopmotion animations for an interactive exhibition-installation. Several very little archeological objetcs and jewels where physically showcased at the exhibition. A huge projection on a wall acted as a magnifying glass: users could select an object and observe it at different angles. The final objects where still photographed [...]]]></description>
			<content:encoded><![CDATA[<p>Proof of concept for a series of 360° stopmotion animations for an interactive exhibition-installation.<span id="more-825"></span><br />
Several very little archeological objetcs and jewels where physically showcased at the exhibition. A huge projection on a wall acted as a magnifying glass: users could select an object and observe it at different angles. The final objects where still photographed on the same turntable but with better lights and camera.<br />
Below some toy prototypes with 75 frames each, realized in 2006 for <a href="http://theredbox.ch". traget="_blank">theredbox</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog1">protog1</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog2">protog2</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog3">protog3</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog4">protog4</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog5">protog5</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog6">protog6</a><br />
<a href="http://ertdfgcvb.ch/p2/sm/play/protog7">protog7</a><br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/09/protog2.png" alt="" title="protog" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/09/protog3.png" alt="" title="protog" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/09/protog_making_of_1.jpg" alt="" title="protog" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/09/protog_making_of_2.jpg" alt="" title="protog" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/stopmotion-experiments-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ball</title>
		<link>http://ertdfgcvb.com/ball/</link>
		<comments>http://ertdfgcvb.com/ball/#comments</comments>
		<pubDate>Sat, 04 Mar 2006 10:48:14 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.com/?p=1002</guid>
		<description><![CDATA[User created balls. More than 4000 balls have been generated between 2006 and 2007.]]></description>
			<content:encoded><![CDATA[<p>User created balls.<span id="more-1002"></span><br />
More than 4000 balls have been generated between 2006 and 2007.<br />
<br/><br />
<img src="/wp/wp-content/uploads/2011/03/balls_1.png" alt="" title="balls_1" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/03/balls_2.png" alt="" title="balls_2" width="100%" /><br />
<img src="/wp/wp-content/uploads/2011/03/balls_3.png" alt="" title="balls_3" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/ball/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sky</title>
		<link>http://ertdfgcvb.com/sky/</link>
		<comments>http://ertdfgcvb.com/sky/#comments</comments>
		<pubDate>Tue, 07 Jun 2005 17:09:18 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[clouds]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=319</guid>
		<description><![CDATA[A particle experiment. Fly in the blue sky.]]></description>
			<content:encoded><![CDATA[<p>A particle experiment.<br />
<span id="more-319"></span>Fly in the blue <a href="http://ertdfgcvb.ch/p2/past/sky">sky</a>.<br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/sky_2-496x276.jpg" alt="" title="sky_2"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/sky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homedrive</title>
		<link>http://ertdfgcvb.com/homedrive/</link>
		<comments>http://ertdfgcvb.com/homedrive/#comments</comments>
		<pubDate>Wed, 20 Apr 2005 10:10:55 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=208</guid>
		<description><![CDATA[A mini-racing game developed for Radix. Features 9 levels, lo-fi vector graphics and a global high-score table. Written in Lingo and published as a bonus for a “don’t drink&#038;drive” campaign. The name of the game was inspired by a computer virus.]]></description>
			<content:encoded><![CDATA[<p>A mini-racing game developed for Radix. Features 9 levels, lo-fi vector graphics and a global high-score table.<br />
Written in Lingo and published as a bonus for a “don’t drink&#038;drive” campaign.<br />
The name of the game was inspired by a computer virus.<br />
<span id="more-208"></span><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_1.png" alt="" title="homedrive_cover_1" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_2.png" alt="" title="homedrive_cover_2" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_3.png" alt="" title="homedrive_cover_3" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_4.png" alt="" title="homedrive_cover_4" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_5.png" alt="" title="homedrive_cover_5" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_cover_6.png" alt="" title="homedrive_cover_6" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_1.png" alt="" title="homedrive_gameplay_1" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_2.png" alt="" title="homedrive_gameplay_2" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_3.png" alt="" title="homedrive_gameplay_3" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_4.png" alt="" title="homedrive_gameplay_4" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_5.png" alt="" title="homedrive_gameplay_5" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_7.png" alt="" title="homedrive_gameplay_7" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_8.png" alt="" title="homedrive_gameplay_8" width="100%"  class="imgborder" /><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/homedrive_gameplay_10.png" alt="" title="homedrive_gameplay_10" width="100%"  class="imgborder" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/homedrive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Worms</title>
		<link>http://ertdfgcvb.com/worms/</link>
		<comments>http://ertdfgcvb.com/worms/#comments</comments>
		<pubDate>Mon, 28 Mar 2005 22:03:08 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=708</guid>
		<description><![CDATA[A lot of black worms. They are part of your life. Once loaded press any key for slow-as-hell-anti-aliased graphics.]]></description>
			<content:encoded><![CDATA[<p>A lot of black worms.<br />
<span id="more-708"></span><a href="/p2/past/worms">They</a> are part of <a href="http://facebook.com" target="_blank">your life</a>.<br />
Once loaded press any key for slow-as-hell-anti-aliased graphics.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/07/worms_antialias_64_half.gif" alt="" title="worms_antialias_64_half" width="450" height="300" class="imgborder"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/worms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>F/a-18</title>
		<link>http://ertdfgcvb.com/fa-18/</link>
		<comments>http://ertdfgcvb.com/fa-18/#comments</comments>
		<pubDate>Wed, 05 Jan 2005 11:46:25 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=303</guid>
		<description><![CDATA[Fly in the black sky. Take off with an F/a-18]]></description>
			<content:encoded><![CDATA[<p>Fly in the black sky.<br />
<span id="more-303"></span>Take off with an <a href="http://ertdfgcvb.ch/p2/past/fa-18">F/a-18</a><br />
<br/><br />
<img src="/wp/wp-content/uploads/fa-18_1.png" alt="" title="fa-18_1" width="100%" /><br />
<img src="/wp/wp-content/uploads/fa-18_2.png" alt="" title="fa-18_2" width="100%" /><br />
<img src="/wp/wp-content/uploads/fa-18_3.png" alt="" title="fa-18_3" width="100%" /><br />
<img src="/wp/wp-content/uploads/fa-18_4.png" alt="" title="fa-18_4" width="100%" /><br />
<img src="/wp/wp-content/uploads/fa-18_5.png" alt="" title="fa-18_5" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/fa-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magneto 2</title>
		<link>http://ertdfgcvb.com/magneto-2/</link>
		<comments>http://ertdfgcvb.com/magneto-2/#comments</comments>
		<pubDate>Sun, 26 Dec 2004 18:04:49 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://www.ertdfgcvb.ch/wp/?p=314</guid>
		<description><![CDATA[Dark cubes, light. Play with Magneto 2]]></description>
			<content:encoded><![CDATA[<p>Dark cubes, light.<br />
<span id="more-314"></span>Play with <a href="http://ertdfgcvb.ch/p2/past/magneto_2">Magneto 2</a><br />
<br/><br />
<img src="http://www.ertdfgcvb.ch/wp/wp-content/uploads/2010/06/magneto_2_3.png" alt="" title="magneto_2_3" width="100%"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/magneto-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dialer</title>
		<link>http://ertdfgcvb.com/dialer/</link>
		<comments>http://ertdfgcvb.com/dialer/#comments</comments>
		<pubDate>Fri, 26 Nov 2004 21:46:21 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=533</guid>
		<description><![CDATA[More a sketch than a project of a kind of audio-visual toy… Try your chance with the dialer.]]></description>
			<content:encoded><![CDATA[<p>More a sketch than a project of a kind of audio-visual toy…<br />
<span id="more-533"></span>Try your chance with the <a href="http://ertdfgcvb.ch/p2/past/dialer">dialer</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/dialer_01.png" alt="" title="dialer_01" width="100%" class="imgborder"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/dialer_07.png" alt="" title="dialer_07" width="100%" class="imgborder"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/dialer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Molecule</title>
		<link>http://ertdfgcvb.com/molecule/</link>
		<comments>http://ertdfgcvb.com/molecule/#comments</comments>
		<pubDate>Fri, 29 Oct 2004 09:59:42 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=424</guid>
		<description><![CDATA[Spring connected spheres, mutating color-schemes. Get scientific with the molecule.]]></description>
			<content:encoded><![CDATA[<p>Spring connected spheres, mutating color-schemes.<br />
<span id="more-424"></span>Get scientific with the <a href="http://ertdfgcvb.ch/p2/past/molecule">molecule</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/molecule_1.png" alt="" title="molecule_1" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/molecule_2.png" alt="" title="molecule_2" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/molecule_3.png" alt="" title="molecule_3" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/molecule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Me</title>
		<link>http://ertdfgcvb.com/me/</link>
		<comments>http://ertdfgcvb.com/me/#comments</comments>
		<pubDate>Thu, 27 May 2004 13:32:03 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=701</guid>
		<description><![CDATA[About me and my dumb face (of 2004). Simply enjoying the smooth embedding of Processing applets via deployJava.js… Come and play with me.]]></description>
			<content:encoded><![CDATA[<p>About me and my dumb face (of 2004).<br />
Simply enjoying the smooth embedding of Processing applets via <a href="http://www.java.com/js/deployJava.js" target="_blank">deployJava.js</a>…<br />
<span id="more-701"></span>Come and play with <a href="/p2/past/me">me</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/07/me_1.png" alt="" title="me_1" width="251" height="379" class="alignnone size-full wp-image-702" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wires</title>
		<link>http://ertdfgcvb.com/wires/</link>
		<comments>http://ertdfgcvb.com/wires/#comments</comments>
		<pubDate>Fri, 14 May 2004 10:08:22 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=429</guid>
		<description><![CDATA[A visceral animation. Be a modern Theseus an play with the wires.]]></description>
			<content:encoded><![CDATA[<p>A visceral animation.<br />
<span id="more-429"></span>Be a modern Theseus an play with the <a href="/p2/past/wires">wires</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/wires_1.png" alt="" title="wires_1" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/wires_2.png" alt="" title="wires_2" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/wires_3.png" alt="" title="wires_3" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/wires_4.png" alt="" title="wires_4" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/wires/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missile</title>
		<link>http://ertdfgcvb.com/missile/</link>
		<comments>http://ertdfgcvb.com/missile/#comments</comments>
		<pubDate>Tue, 04 May 2004 11:20:25 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=460</guid>
		<description><![CDATA[A weapon in outer space. Become peaceful with the missile.]]></description>
			<content:encoded><![CDATA[<p>A weapon in outer space.<br />
<span id="more-460"></span>Become peaceful with the <a href="http://ertdfgcvb.ch/p2/past/missile">missile</a>.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/missile_1.png" alt="" title="missile_1" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/missile_2.png" alt="" title="missile_2" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/missile_3.png" alt="" title="missile_3" width="100%" /><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2004/05/missile_4.png" alt="" title="missile_4" width="100%" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/missile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hidden landscapes</title>
		<link>http://ertdfgcvb.com/hidden-landscapes/</link>
		<comments>http://ertdfgcvb.com/hidden-landscapes/#comments</comments>
		<pubDate>Mon, 19 Jan 2004 22:19:40 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[past]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[shockwave]]></category>

		<guid isPermaLink="false">http://ertdfgcvb.ch/?p=557</guid>
		<description><![CDATA[Hi-resolution scans of common objects. Fulfill your wildest dream and become an insect and fly over a leaf or a 50chf bill.]]></description>
			<content:encoded><![CDATA[<p>Hi-resolution scans of common objects.<br />
<span id="more-557"></span>Fulfill your wildest dream and become an insect and fly over a <a href="/p2/past/lanscape_leaf">leaf</a> or a <a href="http://ertdfgcvb.ch/p2/past/lanscape_50chf">50chf</a> bill.<br />
<br/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/landscape_50chf_03-496x317.jpg" alt="" title="landscape_50chf_03" width="100%"/><br />
<img src="http://ertdfgcvb.ch/wp/wp-content/uploads/2010/06/landscape_leaf_02-496x317.jpg" alt="" title="landscape_leaf_02" width="100%"/></p>
]]></content:encoded>
			<wfw:commentRss>http://ertdfgcvb.com/hidden-landscapes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

