<?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>M.I.B.D.W.</title>
	<atom:link href="http://meedoenisbelangrijkerdanwinnen.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://meedoenisbelangrijkerdanwinnen.nl</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 24 Jan 2012 07:59:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>LIV/OBJ 001</title>
		<link>http://meedoenisbelangrijkerdanwinnen.nl/livobj001/</link>
		<comments>http://meedoenisbelangrijkerdanwinnen.nl/livobj001/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 22:10:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://meedoenisbelangrijkerdanwinnen.nl/?p=11</guid>
		<description><![CDATA[]]></description>
	<script type="text/processing" data-processing-target="processingcanvas">	color kleur = color(255, 0, 0, 15);
	color lijn = color(255, 0, 0, 25);
	float gewicht = 1;

	float r1; float r2; float r3; float r4;
	float p1 = random(8000, 10000); float p2 = 0.001; 
	float q1 = random(50, 100); float q2 = 0.05;
	float o1 = random(50, 100); float o2 = -0.04;
	float m1 = random(50, 100); float m2 = 0.02;
	float n1 = random(50, 100); float n2 = -0.05;

	float a1 = random(-40, 88); float a2 = 0.05; float a3 = random(-40, 88); float a4 = 0.05;
	float b1 = random(-40, 88); float b2 = 0.04; float b3 = random(-40, 88); float b4 = 0.06;
	float c1 = random(-40, 88); float c2 = 0.11; float c3 = random(-40, 88); float c4 = 0.07;
	float d1 = random(-40, 88); float d2 = 0.08; float d3 = random(-40, 88); float d4 = 0.12;

	void setup()  {
	 size(800, 800);
	 smooth();
	 frameRate(24);
	}

	void draw()  {
	  background(0, 0);
	  
	  pushMatrix();
	  translate(width/2, height/2);
	  rotate(r1);

	  for(float i = 0; i < TWO_PI - (TWO_PI/q1)/2; i = i + TWO_PI/q1)  {
		pushMatrix();
		translate(0, 0);
		rotate(i);
		fill(kleur);
		stroke(lijn);
		strokeWeight(gewicht);
		
		  beginShape();
		  vertex(a1, a3);
		  vertex(a3*1.82, a3*1.9);
		  vertex(a1*1.85, a1*1.83);
		  endShape(CLOSE);
		  
		popMatrix();
	  }

	  popMatrix();
	  pushMatrix();
	  translate(width/2, height/2);
	  rotate(-r2*2);

	  for(float i = TWO_PI; i > (TWO_PI/o1)/2; i = i - TWO_PI/o1)  {
		pushMatrix();
		translate(0, 0);
		rotate(i);
		fill(kleur);
		stroke(lijn);
		strokeWeight(gewicht);
		
		  beginShape();
		  vertex(b1, b3);
		  vertex(b1*1.88, b3*1.95);
		  vertex(b3*1.36, b1*1.87);
		  endShape(CLOSE);
		  
		popMatrix();
	  }

	  popMatrix();
	  pushMatrix();
	  translate(width/2, height/2);
	  rotate(r3*2);

	  for(float i = 0; i < TWO_PI - (TWO_PI/m1)/2;i = i + TWO_PI/m1)  {
		pushMatrix();
		translate(0, 0);
		rotate(i);
		fill(kleur);
		stroke(lijn);
		strokeWeight(gewicht);
		
		  beginShape();
		  vertex(c3, c1);
		  vertex(c3*1.09, c1*1.75);
		  vertex(c1*1.62, c3*1.64);
		  endShape(CLOSE);
		  
		popMatrix();
	  }

	  popMatrix();
	  pushMatrix();
	  translate(width/2, height/2);
	  rotate(-r4);
	  
	  for(float i = TWO_PI; i > (TWO_PI/n1)/2; i = i - TWO_PI/n1)  {
		pushMatrix();
		translate(0, 0);
		rotate(i);
		fill(kleur);
		stroke(lijn);
		strokeWeight(gewicht);
		
		  beginShape();
		  vertex(d1, d3);
		  vertex(d3*1.71, d1*1.42);
		  vertex(d1*1.79, d3*2.04);
		  endShape(CLOSE);
		  
		popMatrix();
	  }
	  
	  popMatrix();

	  r1 = r1 + (TWO_PI/p1);
	  r2 = r2 + (TWO_PI/(p1*1.2));
	  r3 = r3 + (TWO_PI/(p1*0.9));
	  r4 = r4 + (TWO_PI/(p1*1.1));
	  
	  a1 = a1 + a2; if(a1 >= 88) { a2 = -0.14; } if(a1 <= -40) { a2 = 0.11; }
	  a3 = a3 + a4; if(a3 >= 88) { a4 = -0.03; } if(a3 <= -40) { a4 = 0.04; }
	  b1 = b1 + b2; if(b1 >= 88) { b2 = -0.11; } if(b1 <= -40) { b2 = 0.17; }
	  b3 = b3 + b4; if(b3 >= 88) { b4 = -0.02; } if(b3 <= -40) { b4 = 0.06; }
	  c1 = c1 + c2; if(c1 >= 88) { c2 = -0.12; } if(c1 <= -40) { c2 = 0.13; }
	  c3 = c3 + c4; if(c3 >= 88) { c4 = -0.06; } if(c3 <= -40) { c4 = 0.08; }
	  d1 = d1 + d2; if(d1 >= 88) { d2 = -0.12; } if(d1 <= -40) { d2 = 0.05; }
	  d3 = d3 + d4; if(c3 >= 88) { d4 = -0.02; } if(d3 <= -40) { d4 = 0.11; }
	  
	  p1 = p1 + p2; if(p1 >= 8000) { p2 = -0.001; } if(p1 <= 10000) { p2 = 0.001; }
	  q1 = q1 + q2; if(q1 >= 100) { q2 = -0.01; } if(q1 <= 50) { q2 = 0.01; }
	  o1 = o1 + o2; if(o1 >= 100) { o2 = -0.03; } if(o1 <= 50) { o2 = 0.02; }
	  m1 = m1 + m2; if(m1 >= 100) { m2 = -0.01; } if(m1 <= 50) { m2 = 0.03; }
	  n1 = n1 + n2; if(n1 >= 100) { n2 = -0.02; } if(n1 <= 50) { n2 = 0.01; }
		
	  
	}</script><canvas id="processingcanvas"></canvas>			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://meedoenisbelangrijkerdanwinnen.nl/livobj001/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
