<?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>deleteaso &#187; Tutorials</title>
	<atom:link href="http://deleteaso.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://deleteaso.com</link>
	<description>When something's not working delete aso files</description>
	<lastBuildDate>Mon, 12 Apr 2010 16:01:09 +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>Sparkfun&#8217;s 7-Segment Red 6.5&#8243; Display and Arduino</title>
		<link>http://deleteaso.com/sparkfuns-7-segment-red-65-display-and-arduino/</link>
		<comments>http://deleteaso.com/sparkfuns-7-segment-red-65-display-and-arduino/#comments</comments>
		<pubDate>Sat, 30 May 2009 20:37:13 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[publications]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=164</guid>
		<description><![CDATA[A little while ago I purchased 10 of Sparkfun&#8217;s 7-segment red 6.5&#8243; displays.
http://www.sparkfun.com/commerce/product_info.php?products_id=8530
I had been wanting to purchase them for quite some time but they had been out of stock. When I was finally notified that they had received more I instantly bought them, without really thinking what I was going to use them for. [...]]]></description>
			<content:encoded><![CDATA[<p>A little while ago I purchased 10 of Sparkfun&#8217;s 7-segment red 6.5&#8243; displays.</p>
<p><a href="http://www.sparkfun.com/commerce/product_info.php?products_id=8530" target="_blank">http://www.sparkfun.com/commerce/product_info.php?products_id=8530</a></p>
<p>I had been wanting to purchase them for quite some time but they had been out of stock. When I was finally notified that they had received more I instantly bought them, without really thinking what I was going to use them for. Once they arrived I quickly opened them up and saw that it was going to be a little bit more of a challenge then I originally thought it would be. And I also thought they would come with some fancy schematic that I could just follow, but they didn&#8217;t.</p>
<p>So the first step was just to try and get a segment to light up by just supplying power. The digits use a common anode, which means it has one lead connection and 7 ground connection for each segment. So I started running it through a 5v power supply with not luck. Then a 9v, still no luck. Finally 12v did the trick. After I soldered wires to all of the connection I was able to get all 7 segments to light up by just running the common anode to the power and each segment to a ground.</p>
<p><a href="http://www.flickr.com/photos/tfan/3579607606/?rotated=1&amp;cb=1243714573465"><img class="alignnone" title="Segement Displays" src="http://farm4.static.flickr.com/3348/3579607606_e66b7bb94c.jpg?v=1243714572" alt="" width="500" height="375" /></a></p>
<p>Ok so step one complete now to try and get it talking with Arduino. Now I wasn&#8217;t really sure how to go about doing this since each segment was connected to a ground. So I started digging around on the Arduino forums and found some similar posts on what I was trying to do. My conclusion was that I need to get a shift register to turn each segment on and off. I found some people who had some luck with this display and the <a href="http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail&amp;name=620-1165-5-ND" target="_blank">Allegro 6278EAT</a>. You can pick some up for $1.55 at Digi Key. There are lots of different LED drivers out there but the reason I chose this one was because I needed to supply 12v to my displays and it sounded like some of the others that people where recommending wouldn&#8217;t work.</p>
<p>So after a lot of experimenting and researching I was finally able to get the display to turn on and off with Arduino. This <a href="http://arduino.cc/en/Tutorial/ShiftOut" target="_blank">tutorial</a> on the Arduino site was the most helpful. And I used the following Arduino sketch which I got from this <a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1212882269;start=all" target="_blank">post</a> on the forums.</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">int</span> dataPin <span style="color: #339933;">=</span> <span style="color: #0000dd;">11</span><span style="color: #339933;">;</span>
<span style="color: #993333;">int</span> clockPin <span style="color: #339933;">=</span> <span style="color: #0000dd;">12</span><span style="color: #339933;">;</span>
<span style="color: #993333;">int</span> latchPin <span style="color: #339933;">=</span> <span style="color: #0000dd;">10</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//holders for infromation you're going to pass to shifting function</span>
byte dataRED<span style="color: #339933;">;</span>
&nbsp;
byte dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">11</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">void</span> setup<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//set pins to output because they are addressed in the main loop</span>
  pinMode<span style="color: #009900;">&#40;</span>latchPin<span style="color: #339933;">,</span> OUTPUT<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//Arduino doesn't seem to have a way to write binary straight into the code</span>
  <span style="color: #666666; font-style: italic;">//so these values are in HEX.  Decimal would have been fine, too.</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x3F</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//00111111 - 0</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x06</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//00000110 - 1</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x5B</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01011011 - 2</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x4F</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01001111 - 3</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">4</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x66</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01100110 - 4</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">5</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x6D</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01101101 - 5</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">6</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x7D</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01111101 - 6</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">7</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x07</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//00000111 - 7</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">8</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x7F</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01111111 - 8</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">9</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x67</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//01100111 - 9</span>
  dataArrayRED<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">10</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #208080;">0x80</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//decimal point</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">void</span> loop<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> i <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span><span style="color: #0000dd;">11</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
&nbsp;
  dataRED <span style="color: #339933;">=</span> dataArrayRED<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//ground latchPin and hold low for as long as you are transmitting</span>
&nbsp;
    digitalWrite<span style="color: #009900;">&#40;</span>latchPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">//move 'em out</span>
&nbsp;
    shiftOut<span style="color: #009900;">&#40;</span>dataPin<span style="color: #339933;">,</span> clockPin<span style="color: #339933;">,</span> dataRED<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">//return the latch pin high to signal chip that it</span>
    <span style="color: #666666; font-style: italic;">//no longer needs to listen for information</span>
    digitalWrite<span style="color: #009900;">&#40;</span>latchPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    delay<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">300</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  delay<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1000</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// the heart of the program</span>
<span style="color: #993333;">void</span> shiftOut<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> myDataPin<span style="color: #339933;">,</span> <span style="color: #993333;">int</span> myClockPin<span style="color: #339933;">,</span> byte myDataOut<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #666666; font-style: italic;">// This shifts 8 bits out MSB first,</span>
  <span style="color: #666666; font-style: italic;">//on the rising edge of the clock,</span>
  <span style="color: #666666; font-style: italic;">//clock idles low</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//internal function setup</span>
  <span style="color: #993333;">int</span> i<span style="color: #339933;">=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
  <span style="color: #993333;">int</span> pinState<span style="color: #339933;">;</span>
  pinMode<span style="color: #009900;">&#40;</span>myClockPin<span style="color: #339933;">,</span> OUTPUT<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  pinMode<span style="color: #009900;">&#40;</span>myDataPin<span style="color: #339933;">,</span> OUTPUT<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//clear everything out just in case to</span>
  <span style="color: #666666; font-style: italic;">//prepare shift register for bit shifting</span>
  digitalWrite<span style="color: #009900;">&#40;</span>myDataPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  digitalWrite<span style="color: #009900;">&#40;</span>myClockPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//for each bit in the byte myDataOut…</span>
  <span style="color: #666666; font-style: italic;">//NOTICE THAT WE ARE COUNTING DOWN in our for loop</span>
  <span style="color: #666666; font-style: italic;">//This means that %00000001 or &quot;1&quot; will go through such</span>
  <span style="color: #666666; font-style: italic;">//that it will be pin Q0 that lights.</span>
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span><span style="color: #0000dd;">7</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;=</span><span style="color: #0000dd;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    digitalWrite<span style="color: #009900;">&#40;</span>myClockPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//if the value passed to myDataOut and a bitmask result</span>
    <span style="color: #666666; font-style: italic;">// true then... so if we are at i=6 and our value is</span>
    <span style="color: #666666; font-style: italic;">// %11010100 it would the code compares it to %01000000</span>
    <span style="color: #666666; font-style: italic;">// and proceeds to set pinState to 1.</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> myDataOut <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#123;</span>
	pinState<span style="color: #339933;">=</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">else</span>
    <span style="color: #009900;">&#123;</span>
	pinState<span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//Sets the pin to HIGH or LOW depending on pinState</span>
    digitalWrite<span style="color: #009900;">&#40;</span>myDataPin<span style="color: #339933;">,</span> pinState<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">//register shifts bits on upstroke of clock pin</span>
    digitalWrite<span style="color: #009900;">&#40;</span>myClockPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">//zero the data pin after shift to prevent bleed through</span>
    digitalWrite<span style="color: #009900;">&#40;</span>myDataPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #666666; font-style: italic;">//stop shifting</span>
  digitalWrite<span style="color: #009900;">&#40;</span>myClockPin<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And here is a final diagram for connecting it to Arduino.</p>
<p><a href="http://www.flickr.com/photos/tfan/3579173968/"><img class="alignnone" title="1 segment diagram" src="http://farm4.static.flickr.com/3315/3579173968_2fc55360eb.jpg?v=0" alt="" width="500" height="287" /></a></p>
<p>NOTE: the diagram shows a 15kohm resistor but it may not be bright enough. If you put a 2.2kohm resistor it will be much brighter</p>
<p>And here is a video of the display counting &#8211; <a href="http://www.viddler.com/explore/julian/videos/14/" target="_blank">http://www.viddler.com/explore/julian/videos/14/</a></p>
<p>I am working on getting more then one display working and will write a new post when I do</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/sparkfuns-7-segment-red-65-display-and-arduino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Subversion locally on OSX</title>
		<link>http://deleteaso.com/installing-subversion-locally-on-osx/</link>
		<comments>http://deleteaso.com/installing-subversion-locally-on-osx/#comments</comments>
		<pubDate>Mon, 18 May 2009 23:30:51 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=156</guid>
		<description><![CDATA[I have been working on getting Subversion installed on my Mac for the last couple of days in preparation for my talk at Flashbelt on Automatic Build Systems.
&#60;Intermission&#62;
As a quick plug. Flashbelt is one of the best Flash conferences in the world and I highly recommend going if you are in the area. I have [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on getting Subversion installed on my Mac for the last couple of days in preparation for my talk at <a href="http://flashbelt.com/#/speakers/julian_dolce/" target="_blank">Flashbelt on Automatic Build Systems</a>.</p>
<p>&lt;Intermission&gt;</p>
<p>As a quick plug. Flashbelt is one of the best Flash conferences in the world and I highly recommend going if you are in the area. I have some discount codes if you are planning on getting tickets within the next couple of weeks. Just leave a comment and I will send you one.</p>
<p>&lt;/Intermission&gt;</p>
<p>Ok back on topic. There are a couple great posts out there that do a great job at explaining how to install Subversion on your Mac, but unfortunately they are a little out of date. So let&#8217;s do a little homework first.</p>
<p><strong>Step 1.</strong></p>
<p>Check what version of Subversion you are running. To do that open a Terminal window and type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> <span style="color: #7a0874; font-weight: bold;">help</span></pre></div></div>

<p>This is assuming you already have the Subversion binaries installed. If you don&#8217;t you can download them from <a href="http://subversion.tigris.org/getting.html#osx" target="_blank">here</a>.</p>
<p>In the first couple of lines in the output from that command it should say what version you are running.</p>
<p><strong>Step 2.</strong></p>
<p>Step 2 is just to follow all of the instructions on the following<a href="http://shawnboyce.wordpress.com/2008/01/06/installing-subversion-server-on-leopard/" target="_blank">Thought Stream post</a>. This takes you through the simple process of getting Subversion set up with Web DAV and working with localhost. If you have Subversion 1.4 installed then you are finished after these instructions. If you have a newer version then 1.4 come back for Step 3 after you are done.</p>
<p><strong>Step 3.</strong></p>
<p>Now we have to update the SVN Apache modules with the current version you have installed. If you kept the default path when installing Subversion navigate to /opt/subversion/lib/svn-apache.</p>
<p>In this directory there are 2 new .so files. All you need to do is overwrite the current modules in apache. To do that simply copy those 2 files to the following directory &#8211; /usr/libexec/apache</p>
<p>It may be a good idea to backup the original files but you should be ok if you didn&#8217;t. Once the new files are copied over you have successfully updated the SVN apache modules.</p>
<p><strong>Step 4.</strong></p>
<p>Now there is 1 last thing you will need to do in order to get everything working correctly. I am not even going to try and explain it because this post on <a href="http://www.thoughtspark.org/node/19" target="_blank">Thought Spark</a> explains it way better then I could ever do.</p>
<p><strong>Step 5.</strong></p>
<p>Everything should be all set now. All you have to do is restart apache and you should be able to navigate to your http://localhost/svn/games or whatever you named your repository and see the current revision.</p>
<p>To restart apache you can either un-check and check the Web Sharing checkbox in System Preferences &gt; Sharing or you can use the following command</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> apachectl restart</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/installing-subversion-locally-on-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Papervision3D tutorial</title>
		<link>http://deleteaso.com/great-papervision3d-tutorial/</link>
		<comments>http://deleteaso.com/great-papervision3d-tutorial/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 02:27:48 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://deleteaso.com/great-papervision3d-tutorial/</guid>
		<description><![CDATA[There is a great Papervision3D tutorial over at the Web Development Blog. I had the opportunity to work with Papervision3D on our Volksdragon website we did a couple of weeks back and it was pretty easy to get something up and running pretty quickly. We didn&#8217;t really use it for anything earth shattering, which had [...]]]></description>
			<content:encoded><![CDATA[<p>There is a great <a href="http://rozengain.com/?postid=28" target="_blank">Papervision3D tutorial</a> over at the Web Development Blog. I had the opportunity to work with Papervision3D on our <a href="http://www.volksdragon.com" target="_blank">Volksdragon</a> website we did a couple of weeks back and it was pretty easy to get something up and running pretty quickly. We didn&#8217;t really use it for anything earth shattering, which had to do more with not having as much time as I would have liked to play around with it, but the tutorial should get you up and running pretty quickly. I am really looking forward to getting to play around with the AS3 version of it when Flash CS3 comes out in a couple of weeks. The Papervision team has done a awesome job and I encourage everyone to give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/great-papervision3d-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
