<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/templates/xsl/lab.xsl"?>
<entry>
	<title>Random 3D Particle Plane Warped by atan2 - haXe &amp; flash 10</title>
	<swf>
		<url>Random.swf</url>
		<width>800</width>
		<height>450</height>
	</swf>
	<info>
		<p>This example shows the effect of atan2 against 2 random values; The exact formula / method used is under Simplified &amp; Snipped Code below.</p>
	</info>
	<sources>
		<snip>
<pre>for( i in 0...PARTICLES ) {
	x = Math.random();
	y = Math.random();
	z = Math.atan2( x , y );
}</pre>
		</snip>
	</sources>
</entry>
