<?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>iestyn.net &#187; as3</title>
	<atom:link href="http://www.iestyn.net/wp/category/as3/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iestyn.net/wp</link>
	<description>"the concrete world is starting to get ya."</description>
	<lastBuildDate>Tue, 18 May 2010 11:08:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MinimalDesigner &#8211; Layout tool for Bit101&#8217;s MinimalComps</title>
		<link>http://www.iestyn.net/wp/2009/08/12/minimaldesigner-layout-tool-for-bit101s-minimalcomps</link>
		<comments>http://www.iestyn.net/wp/2009/08/12/minimaldesigner-layout-tool-for-bit101s-minimalcomps#comments</comments>
		<pubDate>Wed, 12 Aug 2009 08:08:29 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[minimalcomps]]></category>
		<category><![CDATA[minimaldesigner]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=549</guid>
		<description><![CDATA[Keith has released a layout tool for the excellent MinimalComps.

I prefer to write pure AS3 inFlashDevelop, using the Flex SDK to compile. I&#8217;ve used MinimalComps on occasion, and I&#8217;ve been happy with the results. However when it comes to laying out anything particularly complex, I&#8217;ve had to fall back to Flex or CS3.
The release of [...]]]></description>
			<content:encoded><![CDATA[<p>Keith has <a href="http://www.bit-101.com/blog/?p=2328" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.bit-101.com/blog/?p=2328');">released a layout tool</a> for the excellent <a href="http://www.bit-101.com/blog/?p=1126" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.bit-101.com/blog/?p=1126');">MinimalComps</a>.</p>
<p><a href="http://www.bit-101.com/MinimalDesigner/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.bit-101.com/MinimalDesigner/');"><img class="alignnone size-full wp-image-550" title="MinimalDesigner" src="http://www.iestyn.net/wp/wp-content/uploads/2009/08/minimaldesigner.jpg" alt="MinimalDesigner" width="408" height="324" /></a></p>
<p>I prefer to write pure AS3 inFlashDevelop, using the Flex SDK to compile. I&#8217;ve used MinimalComps on occasion, and I&#8217;ve been happy with the results. However when it comes to laying out anything particularly complex, I&#8217;ve had to fall back to Flex or CS3.</p>
<p>The release of MinimalDesigner should make using MinimalComps even easier now. Thanks Keith!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/08/12/minimaldesigner-layout-tool-for-bit101s-minimalcomps/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AS3 BitmapData.hitTest() with rotation</title>
		<link>http://www.iestyn.net/wp/2009/06/23/as3-bitmapdata-hittest-with-rotation-matrix</link>
		<comments>http://www.iestyn.net/wp/2009/06/23/as3-bitmapdata-hittest-with-rotation-matrix#comments</comments>
		<pubDate>Tue, 23 Jun 2009 09:59:26 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[bitmapdata]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[hittest]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=436</guid>
		<description><![CDATA[I saw a tweet from @mesh today, asking about hitTest when one object is rotated. A bit of horrible hackery, and here&#8217;s the result. Warning, nasty thrown-together code!  
var red:Sprite = new Sprite();
red.graphics.beginFill(0xFF0000);
red.graphics.lineTo(40, 0);
red.graphics.lineTo(40, 150);
red.graphics.lineTo(0,150);
red.graphics.lineTo(0,0);

red.x = 40;
red.y = 40;

addChild(red);

var green:Sprite = new Sprite();

green.graphics.beginFill(0x00FF00);
green.graphics.lineTo(40, 0);
green.graphics.lineTo(40, 150);
green.graphics.lineTo(0,150);
green.graphics.lineTo(0,0);

green.x = 300;
green.y = 40;

addChild(green);

var useRotation:Number=10;

var redBmpData = new BitmapData(red.width, [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a tweet from <a href="http://twitter.com/mesh/statuses/2291551870" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://twitter.com/mesh/statuses/2291551870');">@mesh</a> today, asking about hitTest when one object is rotated. A bit of horrible hackery, and here&#8217;s the result. Warning, nasty thrown-together code! <img src='http://www.iestyn.net/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre name="code" class="js">var red:Sprite = new Sprite();
red.graphics.beginFill(0xFF0000);
red.graphics.lineTo(40, 0);
red.graphics.lineTo(40, 150);
red.graphics.lineTo(0,150);
red.graphics.lineTo(0,0);

red.x = 40;
red.y = 40;

addChild(red);

var green:Sprite = new Sprite();

green.graphics.beginFill(0x00FF00);
green.graphics.lineTo(40, 0);
green.graphics.lineTo(40, 150);
green.graphics.lineTo(0,150);
green.graphics.lineTo(0,0);

green.x = 300;
green.y = 40;

addChild(green);

var useRotation:Number=10;

var redBmpData = new BitmapData(red.width, red.height, true, 0);
redBmpData.draw(red);

var useDimension:int = Math.ceil(Math.sqrt((green.width * green.width) + (green.height * green.height)));
var diffWidth:int = useDimension - green.width;
var diffHeight:int = useDimension - green.height;
var newBD:BitmapData = new BitmapData(useDimension,useDimension,true,0);
var angle_in_radians:Number = Math.PI * 2 * (useRotation / 360);
var m:Matrix = new Matrix();
m.translate((green.width / 2) * -1, (green.height / 2) * -1);
m.rotate(angle_in_radians);
m.translate(green.width / 2, green.height / 2);
m.translate(diffWidth / 2, diffHeight / 2);
var translatedPoint:Point = m.transformPoint(new Point(0,0));

trace(useDimension);
var greenBmpData = new BitmapData(useDimension,useDimension,true,0);
greenBmpData.draw(green,m);

/*var sampleGreen:Bitmap =new Bitmap(greenBmpData);
addChild(sampleGreen);
sampleGreen.x=200;
sampleGreen.y=200;
*/
green.rotation=useRotation;

stage.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);

function onMouseMove(e:MouseEvent):void {
	green.x = mouseX;
	green.y = mouseY;

	if (redBmpData.hitTest(new Point(red.x, red.y),
	255,
	greenBmpData,
	new Point(green.x-translatedPoint.x, green.y-translatedPoint.y),
	255

	  )) {
		trace("hit");
		red.filters = [new GlowFilter()];
	} else {
		red.filters = [];
	}
}</pre>
<p>I&#8217;ll blog a better example of this, with comments and an explanation of what it&#8217;s doing in the next few days. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/06/23/as3-bitmapdata-hittest-with-rotation-matrix/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Useful stuff: Papervision GUI, AS3 Code Snippet, UML editor, Firefox Plugin</title>
		<link>http://www.iestyn.net/wp/2009/06/14/useful-stuff-papervision-gui-as3-code-snippet-uml-editor-firefox-plugin</link>
		<comments>http://www.iestyn.net/wp/2009/06/14/useful-stuff-papervision-gui-as3-code-snippet-uml-editor-firefox-plugin#comments</comments>
		<pubDate>Sun, 14 Jun 2009 18:46:41 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[papervision]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[uml]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=429</guid>
		<description><![CDATA[Here&#8217;s a few useful things I&#8217;ve seen recently. Thought I&#8217;d share..
VizualPV3D
A GUI for Papervision! It looks rather similar to Lightwave, although orders of magnitude less powerful. I&#8217;ll be interested to see how this evolves. Could come in handy one day!
http://www.juxtinteractive.com/work/vizualpv3d/

Swf Class Explorer
This was a useful utility on a recent project, as there&#8217;s no &#8220;ApplicationDomain.getAllDefinitions():Array&#8221;. Worth bookmarking.
http://flassari.is/2008/07/swf-class-explorer-for-as3/
Violet [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a few useful things I&#8217;ve seen recently. Thought I&#8217;d share..</p>
<p><strong>VizualPV3D</strong></p>
<p>A GUI for Papervision! It looks rather similar to Lightwave, although orders of magnitude less powerful. I&#8217;ll be interested to see how this evolves. Could come in handy one day!<br />
<a href="http://www.juxtinteractive.com/work/vizualpv3d/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.juxtinteractive.com/work/vizualpv3d/');">http://www.juxtinteractive.com/work/vizualpv3d/</a><br />
<object width="500" height="281" data="http://vimeo.com/moogaloop.swf?clip_id=4284870&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"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=4284870&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /></object></p>
<p><strong>Swf Class Explorer</strong></p>
<p>This was a useful utility on a recent project, as there&#8217;s no &#8220;ApplicationDomain.getAllDefinitions():Array&#8221;. Worth bookmarking.<br />
<a href="http://flassari.is/2008/07/swf-class-explorer-for-as3/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://flassari.is/2008/07/swf-class-explorer-for-as3/');">http://flassari.is/2008/07/swf-class-explorer-for-as3/</a></p>
<p><strong>Violet UML Editor</strong></p>
<p><a href="http://jonathanpace.wordpress.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://jonathanpace.wordpress.com/');">Jon</a> from <a href="http://www.unwrong.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.unwrong.com/');">Unwrong</a> showed me this rather nifty UML editor. Great for drawing quick, simple diagrams. Cross-platform, and free.<br />
<a href="http://alexdp.free.fr/violetumleditor/page.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://alexdp.free.fr/violetumleditor/page.php');">http://alexdp.free.fr/violetumleditor/page.php</a></p>
<p><strong>Talon: Firefox Plugin</strong></p>
<p>A great plugin for Firefox, which allows you to right-click and capture a page (or region). From there you can upload/share/edit on <a href="http://aviary.com/home" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://aviary.com/home');">Aviary</a>, copy to clipboard, or save to desktop.<br />
<a href="http://www.readwriteweb.com/archives/aviarys_talon_a_drool-worthy_firefox_plug-in_for_e.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.readwriteweb.com/archives/aviarys_talon_a_drool-worthy_firefox_plug-in_for_e.php');">http://www.readwriteweb.com/archives/aviarys_talon_a_drool-worthy_firefox_plug-in_for_e.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/06/14/useful-stuff-papervision-gui-as3-code-snippet-uml-editor-firefox-plugin/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fluid Dynamics in Flash</title>
		<link>http://www.iestyn.net/wp/2009/05/19/fluid-dynamics-in-flash</link>
		<comments>http://www.iestyn.net/wp/2009/05/19/fluid-dynamics-in-flash#comments</comments>
		<pubDate>Tue, 19 May 2009 21:53:26 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[fluid dynamics]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=409</guid>
		<description><![CDATA[This is one of the most entrancing Flash experiments I&#8217;ve ever seen. Eugine Zatepyakin, a Flash Developer in Moscow, has created a rather stunning fluid simulation in AS3.  It&#8217;s a fantastic toy, and really quite inspiring. I must take a look through the code when I get some time.
It&#8217;s based on work by Mehmet Akten, which in turn [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of the most entrancing Flash experiments I&#8217;ve ever seen. Eugine Zatepyakin, a Flash Developer in Moscow, has created a rather stunning fluid simulation in AS3.  It&#8217;s a fantastic toy, and really quite inspiring. I must take a look through the code when I get some time.</p>
<div id="attachment_410" class="wp-caption alignnone" style="width: 510px"><a href="http://blog.inspirit.ru/?p=248" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blog.inspirit.ru/?p=248');"><img class="size-full wp-image-410" title="Fluid dynamics" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/fluid_dynamics.jpg" alt="Fluid dynamics" width="500" height="334" /></a><p class="wp-caption-text">Simply stunning.</p></div>
<p>It&#8217;s based on work by <a href="http://www.memo.tv/ofxmsafluid" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.memo.tv/ofxmsafluid');">Mehmet Akten</a>, which in turn is based on this paper: <a href="http://www.dgp.toronto.edu/people/stam/reality/Research/pdf/GDC03.pdf" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.dgp.toronto.edu/people/stam/reality/Research/pdf/GDC03.pdf');" target="_blank">Real-Time Fluid Dynamics for Games</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/05/19/fluid-dynamics-in-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bow Street Runner up for another award</title>
		<link>http://www.iestyn.net/wp/2009/05/10/bow-street-runner-up-for-another-award</link>
		<comments>http://www.iestyn.net/wp/2009/05/10/bow-street-runner-up-for-another-award#comments</comments>
		<pubDate>Mon, 11 May 2009 06:53:00 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[bow]]></category>
		<category><![CDATA[broadcast]]></category>
		<category><![CDATA[bsr]]></category>
		<category><![CDATA[channel 4]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[runner]]></category>
		<category><![CDATA[street]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[bes]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=382</guid>
		<description><![CDATA[
It just doesn&#8217;t stop. The multiple-award-winning Bow Street Runner we made for Channel 4 is up for another award, this time it&#8217;s the Broadcast Digital Awards. We&#8217;re in the Best Use of Digital Technology category.
The nominees are:

BBC iPlayer
Bow Street Runner, Channel4.com
Current
Freesat
Mycbbc
Obama: The Inauguration, Sky News

Wow. That&#8217;s quite some company to have!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.channel4.com/bowstreetrunner" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.channel4.com/bowstreetrunner');"><img class="alignnone size-full wp-image-386" title="bsr" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/bsr.jpg" alt="bsr" width="400" height="225" /></a></p>
<p>It just doesn&#8217;t stop. The <a href="http://www.iestyn.net/wp/?s=bow+street+runner" >multiple-award-winning</a> <a href="http://www.channel4.com/bowstreetrunner" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.channel4.com/bowstreetrunner');">Bow Street Runner</a> <a href="http://littleloud.com/work/bsr/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://littleloud.com/work/bsr/');">we made for Channel 4</a> is up for another award, this time it&#8217;s the <a href="http://www.broadcastdigitalawards.co.uk/shortlist.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.broadcastdigitalawards.co.uk/shortlist.htm');">Broadcast Digital Awards</a>. We&#8217;re in the <strong>Best Use of Digital Technology </strong>category.</p>
<p>The nominees are:</p>
<ul>
<li>BBC iPlayer</li>
<li>Bow Street Runner, Channel4.com</li>
<li>Current</li>
<li>Freesat</li>
<li>Mycbbc</li>
<li>Obama: The Inauguration, Sky News</li>
</ul>
<p>Wow. That&#8217;s quite some company to have!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/05/10/bow-street-runner-up-for-another-award/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Generative art application &#8211; project screenshots</title>
		<link>http://www.iestyn.net/wp/2009/05/04/generative-art-application-screenshots</link>
		<comments>http://www.iestyn.net/wp/2009/05/04/generative-art-application-screenshots#comments</comments>
		<pubDate>Mon, 04 May 2009 16:54:27 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[abstract]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[generative]]></category>
		<category><![CDATA[papervision]]></category>
		<category><![CDATA[pv3d]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=362</guid>
		<description><![CDATA[Since being inspired by Matt&#8217;s generative art session at Flashbrighton a while back,  I&#8217;ve been occasionally working on a personal project. It&#8217;s a Flex application where you can generate interesting abstract images and animations. It&#8217;s tricky to describe exactly what it is and what it does, so you can see for yourselves when I release [...]]]></description>
			<content:encoded><![CDATA[<p>Since being inspired by <a href="http://www.iestyn.net/wp/2009/02/15/papervision-experiment-1-fire-sphere" >Matt&#8217;s generative art session at Flashbrighton a while back</a>,  I&#8217;ve been occasionally working on a personal project. It&#8217;s a Flex application where you can generate interesting abstract images and animations. It&#8217;s tricky to describe exactly what it is and what it does, so you can see for yourselves when I release it.</p>
<p>It was initially a simple idea of mine to see what something looked like when manipulated in a certain way. After playing around with it for a while and adding more functionality, I began finding myself entranced by the things I/it was accidentally creating. When I&#8217;ve added a bit more functionality I&#8217;ll release it and see if anyone else finds it as intriguing as I do <img src='http://www.iestyn.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you&#8217;re interested in helping me alpha-test this, then let me know.</p>
<p>[Edit: By the way, it's using Papervision]</p>
<p>Here&#8217;s some screenshots:</p>
<p><strong>Red<br />
<span style="font-weight: normal;"><img class="alignnone size-full wp-image-363" title="red" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/red.jpg" alt="red" width="495" height="440" /></span></strong></p>
<p> </p>
<p><strong>Lines<br />
<img class="alignnone size-full wp-image-366" title="lines" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/lines.jpg" alt="lines" width="252" height="250" /> </strong></p>
<p> </p>
<p><strong>Rainbow<br />
<img class="alignnone size-full wp-image-368" title="rainbow" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/rainbow1.jpg" alt="rainbow" width="626" height="419" /></strong></p>
<p> </p>
<p><strong>Distribution<br />
<img class="alignnone size-full wp-image-365" title="distribution" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/dist1.jpg" alt="distribution" width="561" height="546" /> </strong></p>
<p> </p>
<p><strong>Browns<br />
<img class="alignnone size-full wp-image-364" title="browns" src="http://www.iestyn.net/wp/wp-content/uploads/2009/05/browns.jpg" alt="browns" width="548" height="526" /> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/05/04/generative-art-application-screenshots/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Wallace and Gromit at the Science Museum</title>
		<link>http://www.iestyn.net/wp/2009/03/27/wallace-and-gromit-science-museum</link>
		<comments>http://www.iestyn.net/wp/2009/03/27/wallace-and-gromit-science-museum#comments</comments>
		<pubDate>Fri, 27 Mar 2009 13:10:21 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[arcade]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[gromit]]></category>
		<category><![CDATA[mini-pac]]></category>
		<category><![CDATA[wallce]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=169</guid>
		<description><![CDATA[I&#8217;ve been working on a game for the Wallace and Gromit installation at the Science Museum.
Here&#8217;s a photo I took a while back:

It was a brilliant project to work on, and one of the most fun things I&#8217;ve done for a while. Everyone involved was fantastic, and the exhibition itself looks superb. The game is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a game for the Wallace and Gromit installation at the Science Museum.</p>
<p>Here&#8217;s a photo I took a while back:<br />
<a title="My 1337 arcade controller by yezzer, on Flickr" href="http://www.flickr.com/photos/yezzer/3333140650/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flickr.com/photos/yezzer/3333140650/');"><img src="http://farm4.static.flickr.com/3613/3333140650_d063dcce21.jpg" alt="My 1337 arcade controller" width="375" height="500" /></a></p>
<p>It was a brilliant project to work on, and one of the most fun things I&#8217;ve done for a while. Everyone involved was fantastic, and the exhibition itself looks superb. The game is now installed on a row of consoles and is open to the public. The controls are made from arcade-quality components, and uses a Mini-Pac to talk to the PC via USB.</p>
<p>Here&#8217;s a very brief clip of it on BBC News 24 (00:30):</p>
<p><object width="512" height="400" data="http://news.bbc.co.uk/player/emp/2.10.7938_7967/player.swf" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="FlashVars" value="config_settings_showUpdatedInFooter=true&amp;playlist=http://news.bbc.co.uk/media/emp/7960000/7962400/7962483.xml&amp;config=http://news.bbc.co.uk/player/emp/config/default.xml?1.3.105_2.10.7938_7967_20090323125300&amp;config_settings_language=default&amp;config_settings_showFooter=true&amp;config_plugin_fmtjLiveStats_pageType=eav6" /><param name="src" value="http://news.bbc.co.uk/player/emp/2.10.7938_7967/player.swf" /><param name="flashvars" value="config_settings_showUpdatedInFooter=true&amp;playlist=http://news.bbc.co.uk/media/emp/7960000/7962400/7962483.xml&amp;config=http://news.bbc.co.uk/player/emp/config/default.xml?1.3.105_2.10.7938_7967_20090323125300&amp;config_settings_language=default&amp;config_settings_showFooter=true&amp;config_plugin_fmtjLiveStats_pageType=eav6" /><param name="allowfullscreen" value="true" /></object></p>
<p>If you&#8217;re in the area, do go and check out the exhibition, it&#8217;s great!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/03/27/wallace-and-gromit-science-museum/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision experiment #3: 3D colour cube v2</title>
		<link>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-3-3d-colour-cube-v2</link>
		<comments>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-3-3d-colour-cube-v2#comments</comments>
		<pubDate>Sun, 15 Feb 2009 17:33:50 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[papervision]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pv3d]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=158</guid>
		<description><![CDATA[A combination of the last two posts, with a few extra tweaks. This time it produces quite a pleasing blur if you click and hold down.

]]></description>
			<content:encoded><![CDATA[<p>A combination of the last two posts, with a few extra tweaks. This time it produces quite a pleasing blur if you click and hold down.</p>
<p><a rel="shadowbox;width=800;height=600" href="http://www.iestyn.net/wp/wp-content/uploads/2009/02/3d_colour_cube_blur.swf" ><img class="alignnone size-full wp-image-150" title="cube_blur" src="http://www.iestyn.net/wp/wp-content/uploads/2009/02/cube_blur.jpg" alt="cube_blur" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-3-3d-colour-cube-v2/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Papervision experiment #2: 3D colour cube</title>
		<link>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-2-3d-colour-cube</link>
		<comments>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-2-3d-colour-cube#comments</comments>
		<pubDate>Sun, 15 Feb 2009 17:28:37 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[papervision]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pv3d]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=149</guid>
		<description><![CDATA[Here&#8217;s another experiment along the same lines as the last one, with the same mouse controls. 
This time it&#8217;s 15,625 Pixel3D points, and the position in the cube defines the colour. 
I really like the moirre effect.

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another experiment along the same lines as the last one, with the same mouse controls. </p>
<p>This time it&#8217;s 15,625 Pixel3D points, and the position in the cube defines the colour. </p>
<p>I really like the moirre effect.</p>
<p><a rel="shadowbox;width=800;height=600" href="http://www.iestyn.net/wp/wp-content/uploads/2009/02/3d_colour_cube_1.swf" ><img class="alignnone size-full wp-image-153" title="cube_1" src="http://www.iestyn.net/wp/wp-content/uploads/2009/02/cube_1.jpg" alt="cube_1" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-2-3d-colour-cube/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision Experiment #1: Fire sphere</title>
		<link>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-1-fire-sphere</link>
		<comments>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-1-fire-sphere#comments</comments>
		<pubDate>Sun, 15 Feb 2009 16:41:51 +0000</pubDate>
		<dc:creator>Iestyn</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[papervision]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pv3d]]></category>

		<guid isPermaLink="false">http://www.iestyn.net/wp/?p=136</guid>
		<description><![CDATA[Recently I&#8217;ve been inspired to create some experimental things in Papervision. I think that it&#8217;s mainly down to Matt&#8217;s talk on generative art at FlashBrighton a few weeks back. 
Well, here&#8217;s the first.  in brief:
- Plot 9902 Pixel3D points evenly around the surface of a sphere
- Colour each one a random red
- Rotate the sphere depending on [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been inspired to create some experimental things in Papervision. I think that it&#8217;s mainly down to <a href="http://zenbullets.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://zenbullets.com');">Matt&#8217;s</a> talk on <a href="http://abandonedart.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://abandonedart.org/');">generative art</a> at <a href="http://www.flashbrighton.org/wordpress/?p=207" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.flashbrighton.org/wordpress/?p=207');">FlashBrighton</a> a few weeks back. </p>
<p>Well, here&#8217;s the first.  in brief:</p>
<p>- Plot 9902 Pixel3D points evenly around the surface of a sphere<br />
- Colour each one a random red<br />
- Rotate the sphere depending on where the mouse is<br />
- Apply a blur effect to a BitmapEffectLayer<br />
- Change the clippingPoint </p>
<p>I kinda liked the effect, so here we go. Hold the mouse down to push the sphere away.</p>
<p><a rel="shadowbox;width=800;height=600" href="http://www.iestyn.net/wp/wp-content/uploads/2009/02/spherepixels.swf" ><img class="alignnone size-full wp-image-139" title="Fire Sphere" src="http://www.iestyn.net/wp/wp-content/uploads/2009/02/fire-sphere.jpg" alt="Fire Sphere" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iestyn.net/wp/2009/02/15/papervision-experiment-1-fire-sphere/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
