<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Processing Tutorial: Spherical Coordinates</title>
	<atom:link href="http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates</link>
	<description>Jer Thorp &#124; There is an art to evolution...</description>
	<lastBuildDate>Mon, 30 Jan 2012 23:06:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Gauden Galea</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-12900</link>
		<dc:creator>Gauden Galea</dc:creator>
		<pubDate>Wed, 06 Jul 2011 09:10:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-12900</guid>
		<description>Thanks for this tutorial. It was invaluable in creating a dynamic logo that has been well-received: 
  &lt;a href=&quot;http://blog.gaudengalea.com/2011/07/ncd-identity-in-processing/&quot; rel=&quot;nofollow&quot;&gt;http://blog.gaudengalea.com/2011/07/ncd-identity-...&lt;/a&gt;  
 
You are credited in the code and in my blog post about it. </description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial. It was invaluable in creating a dynamic logo that has been well-received:</p>
<p>  <a href="http://blog.gaudengalea.com/2011/07/ncd-identity-in-processing/" rel="nofollow">http://blog.gaudengalea.com/2011/07/ncd-identity-&#8230;</a>  </p>
<p>You are credited in the code and in my blog post about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NCD Identity in Processing &#124; Hacking Public Health</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-12899</link>
		<dc:creator>NCD Identity in Processing &#124; Hacking Public Health</dc:creator>
		<pubDate>Tue, 05 Jul 2011 20:46:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-12899</guid>
		<description>[...] The sketch shows a wireframe globe rotating in three dimensions above the logo of the Global Action Plan on NCDs, and fragments of the logo are randomly distributed over the surface. The sketch was intended to embody the idea of a &#8216;global movement&#8217; on NCDs. The sphere is based on a tutorial by Jer Thorp. [...]</description>
		<content:encoded><![CDATA[<p>[...] The sketch shows a wireframe globe rotating in three dimensions above the logo of the Global Action Plan on NCDs, and fragments of the logo are randomly distributed over the surface. The sketch was intended to embody the idea of a &#8216;global movement&#8217; on NCDs. The sphere is based on a tutorial by Jer Thorp. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Lucas</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-6778</link>
		<dc:creator>Charles Lucas</dc:creator>
		<pubDate>Fri, 11 Feb 2011 08:54:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-6778</guid>
		<description>It&#039;s a small thing, but you neglect to declare mySphere in the example above.  So, the first few lines of the main Spherical Coordinate file should be: 
 
import processing.opengl.*; 
import java.util.*; 
 
Sphere mySphere;  // Declare mySphere 
 
void setup() { 
 // Code here is executed once, when the app initializes </description>
		<content:encoded><![CDATA[<p>It&#039;s a small thing, but you neglect to declare mySphere in the example above.  So, the first few lines of the main Spherical Coordinate file should be: </p>
<p>import processing.opengl.*;<br />
import java.util.*; </p>
<p>Sphere mySphere;  // Declare mySphere </p>
<p>void setup() {<br />
 // Code here is executed once, when the app initializes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-2052</link>
		<dc:creator>Sergio</dc:creator>
		<pubDate>Wed, 18 Aug 2010 15:03:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-2052</guid>
		<description>Messamessa </description>
		<content:encoded><![CDATA[<p>Messamessa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ellobobobo</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-1854</link>
		<dc:creator>ellobobobo</dc:creator>
		<pubDate>Tue, 11 May 2010 02:36:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-1854</guid>
		<description>Michael, I am getting the same NulPointerException on the online version. It &#039;works&#039; here locally with processing-184. I suspect the compiled class is slightly different from the actual code. 
 
Also, there is some OPENGL rendering bug that makes the spheres appear with the right colour for a few seconds, then they become cresents, i.e. completely white except for a small gray cresent. Changing the renderer to P3D works fine. 
 
Personally, I don&#039;t like the trails and prefer to have background(255); as the first statement in draw() because it looks &#039;better&#039; to me :) </description>
		<content:encoded><![CDATA[<p>Michael, I am getting the same NulPointerException on the online version. It &#39;works&#39; here locally with processing-184. I suspect the compiled class is slightly different from the actual code. </p>
<p>Also, there is some OPENGL rendering bug that makes the spheres appear with the right colour for a few seconds, then they become cresents, i.e. completely white except for a small gray cresent. Changing the renderer to P3D works fine. </p>
<p>Personally, I don&#39;t like the trails and prefer to have background(255); as the first statement in draw() because it looks &#39;better&#39; to me <img src='http://blog.blprnt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-1693</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 10 Apr 2010 22:08:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-1693</guid>
		<description>Maybe its just me, but your sketch is returning a Null Pointer exception. I&#039;m also getting one when replicating the code, any idea why this is? </description>
		<content:encoded><![CDATA[<p>Maybe its just me, but your sketch is returning a Null Pointer exception. I&#039;m also getting one when replicating the code, any idea why this is?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nik</title>
		<link>http://blog.blprnt.com/blog/blprnt/processing-tutorial-spherical-coordinates/comment-page-1#comment-278</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Fri, 29 Aug 2008 17:17:52 +0000</pubDate>
		<guid isPermaLink="false">#comment-278</guid>
		<description>Thanks for posting this tutorial - it was very helpful!
And thanks for the inspiration this year at Flashbelt ;)</description>
		<content:encoded><![CDATA[<p>Thanks for posting this tutorial &#8211; it was very helpful!<br />
And thanks for the inspiration this year at Flashbelt <img src='http://blog.blprnt.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

