<?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>Randomizing Discovery // Life :: Work :: Play &#187; particles</title>
	<atom:link href="http://www.randomizingdiscovery.com/tag/particles/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.randomizingdiscovery.com</link>
	<description>Exploring basic programmatic concepts to create complex visualizations. The work and experiments of Corey Hankey. Processing, Actionscript,  Web Development.</description>
	<lastBuildDate>Sat, 06 Mar 2010 19:39:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Brownian Curves</title>
		<link>http://www.randomizingdiscovery.com/2008/02/15/brownian-curves/</link>
		<comments>http://www.randomizingdiscovery.com/2008/02/15/brownian-curves/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 08:20:48 +0000</pubDate>
		<dc:creator>chankey</dc:creator>
				<category><![CDATA[Discoveries]]></category>
		<category><![CDATA[brownian movement]]></category>
		<category><![CDATA[lines]]></category>
		<category><![CDATA[particles]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://www.coreyhankey.com/?p=12</guid>
		<description><![CDATA[
The randomSeed method allows for patterns to be formed from the random numbers.


I achieved some pretty cool results by using brownian particles to create curves. I found this examples interesting because I was able to introduced the randomSeed method into the equation and began to see consistent patterns from the numbers that were randomly generated. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/hankeys/2265924117/" title="Brownian Movement Lines by Corey Hankey, on Flickr"><img src="http://farm3.static.flickr.com/2396/2265924117_d86a45b99e.jpg" alt="Brownian Movement Lines" height="317" width="500" /></a><br />
The randomSeed method allows for patterns to be formed from the random numbers.<br />
<a href="http://www.flickr.com/photos/hankeys/2266710804/" title="Brownian Lines. by Corey Hankey, on Flickr"><img src="http://farm3.static.flickr.com/2385/2266710804_ef4f5d79ec.jpg" alt="Brownian Lines." height="317" width="500" /></a><br />
<a href="http://www.flickr.com/photos/hankeys/2265923961/" title="Brownian Movement Lines by Corey Hankey, on Flickr"><img src="http://farm3.static.flickr.com/2228/2265923961_5d66f58082.jpg" alt="Brownian Movement Lines" height="317" width="500" /></a><br />
I achieved some pretty cool results by using brownian particles to create curves. I found this examples interesting because I was able to introduced the randomSeed method into the equation and began to see consistent patterns from the numbers that were randomly generated. This is a huge discovery for me because it provides a simple solution to get consistent results with the visuals that the particles are creating.<br />
As I mentioned in a previous post, I said that I would provide some source for the ideas behind brownian movement. Here is a super basic example that provides a nice example of how simple the concept is:</p>
<pre name="code" class="java">// basic brownian movement

float xPos;
float yPos;

void setup()
{
size(200,200);
background(255);
fill(100);

yPos = height/2;
xPos = width/2;

}

void draw()
{

// randomly change the position on every cycle =====
yPos += random(-5,5);
xPos += random(-5,5);
ellipse(xPos, yPos, 10, 10);

}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.randomizingdiscovery.com/2008/02/15/brownian-curves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
