<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/templates/xsl/lab.xsl"?>
<entry>
	<title>M7 Strange Variation, The Feather - haXe &amp; flash 10</title>
	<swf>
		<url>Random.swf</url>
		<width>800</width>
		<height>450</height>
	</swf>
	<info>
		<p>based on <a href="/experiments/basic-3d-particles/mashed-up-7/">M7</a> this strange variation is effectively an inverted version of m7 which produces a kind of feather shape, another variation of m7 nicknamed <a href="/experiments/basic-3d-particles/m7-strange-variation-the-eye/">the eye</a> is worth a look.</p>
	</info>
	<sources>
		<snip>
<pre>for( i in 0...PARTICLES ) {
    a = (360/PARTICLES)*i;
    r = (i/PARTICLES) * Math.PI;
    x = Math.sin(a) / Math.cos(r);
    y = Math.cos(a) * Math.sin(r);
    z = Math.tan( x );
}</pre>
		</snip>
	</sources>
</entry>
