<?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: New library: unlekkerLib</title>
	<atom:link href="http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/feed/" rel="self" type="application/rss+xml" />
	<link>http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/</link>
	<description>Computational aesthetics and programming for artists and designers.</description>
	<lastBuildDate>Tue, 31 Jan 2012 05:39:21 -0500</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: marius watz</title>
		<link>http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/comment-page-1/#comment-241220</link>
		<dc:creator>marius watz</dc:creator>
		<pubDate>Thu, 17 Jun 2010 00:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/#comment-241220</guid>
		<description>unlekkerLib includes an example showing how to read STL files:

&lt;pre&gt;// unlekkerLib - Marius Watz, workshop.evolutionzone.com 
//
// Example showing how to write geometry to a STL file 
// and then load it back in and render it using 
// unlekker.geom.PolyData.
//
// Compatible with unlekkerLib-0002

import unlekker.data.*;
import unlekker.geom.*;

STL stl;
FaceList poly;

void setup() {
  size(400,400, P3D);
  frameRate(25);
  readSTL();
}

void draw() {
  background(0);
  translate(width/2,height/2);

  noStroke();
  lights();
  rotateY(radians(frameCount));
  rotateX(radians(frameCount*0.25f));

  fill(0,200,255, 128);

  poly.draw(this);
}

void readSTL() {
  // Read STL file
  stl=new STL(this,dataPath(&quot;Boxes.stl&quot;));

  // Get polygon data
  poly=stl.getPolyData();

  poly.normalize(400); // normalize object to 400 diameter
  poly.center(); // center it around world origin
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>unlekkerLib includes an example showing how to read STL files:</p>
<pre>// unlekkerLib - Marius Watz, workshop.evolutionzone.com
//
// Example showing how to write geometry to a STL file
// and then load it back in and render it using
// unlekker.geom.PolyData.
//
// Compatible with unlekkerLib-0002

import unlekker.data.*;
import unlekker.geom.*;

STL stl;
FaceList poly;

void setup() {
  size(400,400, P3D);
  frameRate(25);
  readSTL();
}

void draw() {
  background(0);
  translate(width/2,height/2);

  noStroke();
  lights();
  rotateY(radians(frameCount));
  rotateX(radians(frameCount*0.25f));

  fill(0,200,255, 128);

  poly.draw(this);
}

void readSTL() {
  // Read STL file
  stl=new STL(this,dataPath("Boxes.stl"));

  // Get polygon data
  poly=stl.getPolyData();

  poly.normalize(400); // normalize object to 400 diameter
  poly.center(); // center it around world origin
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/comment-page-1/#comment-235338</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 17 May 2010 08:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://workshop.evolutionzone.com/2007/09/24/unlekkerlib/#comment-235338</guid>
		<description>Excuse me

I have a &quot;.stl&quot; but I can&#039;t read it on processing.

How do I to read it on processing.

Can you tell me?

Sorry , my English is poor.</description>
		<content:encoded><![CDATA[<p>Excuse me</p>
<p>I have a &#8220;.stl&#8221; but I can&#8217;t read it on processing.</p>
<p>How do I to read it on processing.</p>
<p>Can you tell me?</p>
<p>Sorry , my English is poor.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

