<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>un didi</title>
	<atom:link href="http://dimitrie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimitrie.wordpress.com</link>
	<description>while ( 1 ) run ( );</description>
	<pubDate>Mon, 16 Jun 2008 08:40:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>StuFo 6</title>
		<link>http://dimitrie.wordpress.com/2008/06/15/stufo-6/</link>
		<comments>http://dimitrie.wordpress.com/2008/06/15/stufo-6/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 09:41:08 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[109017]]></category>

		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=160</guid>
		<description><![CDATA[I had some fun some time ago with plexiglass, a laser printer, rhino, and a very limited and buggy script that made &#8220;ribs&#8221; out of a surface.
The results were nice, so I decided to share:

Here&#8217;s the bugged up script (it&#8217;s quite useless, but people may find inspiration where I didn&#8217;t):
Option Explicit
&#8216;

&#8216;Script written by Dimitrie Stefanescu
&#8216;Released [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I had some fun some time ago with plexiglass, a laser printer, rhino, and a very limited and buggy script that made &#8220;ribs&#8221; out of a surface.</p>
<p>The results were nice, so I decided to share:</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/pl2_web.jpg"><img class="alignnone size-thumbnail wp-image-162" src="http://dimitrie.files.wordpress.com/2008/06/pl2_web.jpg?w=128&h=90" alt="" width="128" height="90" /></a><a href="http://dimitrie.files.wordpress.com/2008/06/pl1_web.jpg"><img class="alignnone size-thumbnail wp-image-161" src="http://dimitrie.files.wordpress.com/2008/06/pl1_web.jpg?w=128&h=90" alt="" width="128" height="90" /></a></p>
<p>Here&#8217;s the bugged up script (it&#8217;s quite useless, but people may find inspiration where I didn&#8217;t):</p>
<p><em>Option Explicit<br />
&#8216;</em></p>
<p><em><span id="more-160"></span><br />
&#8216;Script written by Dimitrie Stefanescu<br />
&#8216;Released under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0<br />
&#8216;№ 5:28:35 AMW ednesday, May 21, 2008</em></p>
<p><em>Call Main()<br />
Sub Main()</em></p>
<p><em>Dim surf : surf = Rhino.GetObject(&#8221;sel surf &#8220;, 8, True)</em></p>
<p><em>Dim detailLevel : detailLevel = Rhino.GetInteger(&#8221;det lev &#8220;, 10, 5, 50)<br />
Dim matTh : matTh = Rhino.GetReal(&#8221;mat thickness &#8220;, .4, .1, 2)<br />
Dim hght : hght = Rhino.GetReal(&#8221;rib height &#8220;, 1.5,  matTh, 10)</em></p>
<p><em>Dim uDomain : uDomain = Rhino.SurfaceDomain(surf, 0)<br />
Dim uStep : uStep = (uDomain(1) - uDomain(0))/detailLevel</em></p>
<p><em>Dim vDomain : vDomain = Rhino.SurfaceDomain(surf, 1)<br />
Dim vStep : vStep = (vDomain(1) - vDomain(0))/detailLevel</em></p>
<p><em>Call rhino.enableredraw(False)</em></p>
<p><em>Dim pts : pts = Array()<br />
ReDim pts(detailLevel)</em></p>
<p><em>Dim i, j, k : k = -1<br />
Dim rib</em></p>
<p><em>&#8216;<br />
&#8216;U direction<br />
&#8216;</em></p>
<p><em>For i=uDomain(0) To uDomain(1) Step uStep<br />
For j=vDomain(0) To vDomain(1) Step vStep<br />
k = k + 1<br />
ReDim Preserve pts(k)<br />
pts(k) = Rhino.EvaluateSurface(surf, Array(i, j))<br />
Next<br />
rib = addRib(pts, matTh, hght)<br />
k = -1<br />
Next</em></p>
<p><em>&#8216;<br />
&#8216;V direction<br />
&#8216;</em></p>
<p><em>&#8216;k = -1<br />
&#8216;For j=uDomain(0) To uDomain(1) Step uStep<br />
&#8216;    For i=vDomain(0) To vDomain(1) Step vStep<br />
&#8216;        k = k + 1<br />
&#8216;        ReDim Preserve pts(k)<br />
&#8216;        pts(k) = Rhino.EvaluateSurface(surf, Array(i, j))<br />
&#8216;    Next<br />
&#8216;    rib = addRib(pts, matTh, hght)<br />
&#8216;    k = -1<br />
&#8216;Next</em></p>
<p><em>Call rhino.enableredraw(True)</em></p>
<p><em>End Sub</em></p>
<p><em>Function addRib(pts, matThickness, height)</em></p>
<p><em>Dim crv, crvPlane, norm, ppp, art, crvOff, arrCrvs, ribb, perpFrame, fff, dirV, extSurf</em></p>
<p><em>crv = Rhino.AddInterpCurve(pts)</em></p>
<p><em>crvPlane = Rhino.CurvePlane(crv)</em></p>
<p><em>If Not isArray(crvPlane) Then<br />
Call rhino.print(&#8221;Surface not ribbable by this script. SORRY!&#8221;)<br />
End If</em></p>
<p><em>norm = Rhino.CurveNormal(crv)<br />
ppp = Rhino.AddPlaneSurface(crvPlane, 1, 1)<br />
art = Rhino.SurfacePoints(ppp)</em></p>
<p><em>crvOff = Rhino.OffsetCurve(crv, art(1) , height , norm)<br />
arrCrvs = Array(crv, crvOff(0))</em></p>
<p><em>ribb = Rhino.AddEdgeSrf(arrCrvs)</em></p>
<p><em>perpFrame = Rhino.CurvePerpFrame(crv, 0)<br />
fff = Rhino.AddPlaneSurface(perpFrame, matThickness, matThickness)<br />
art = Rhino.SurfacePoints(fff)<br />
dirV = Rhino.AddLine(art(0), art(2))</em></p>
<p><em>extSurf = Rhino.ExtrudeSurface(ribb, dirV)</em></p>
<p><em>Call Rhino.DeleteObjects(Array(fff, ppp, dirV, ribb))</em></p>
<p><em>addRib = extSurf<br />
End Function</em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/160/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/160/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=160&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/06/15/stufo-6/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/pl2_web.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/pl1_web.jpg?w=128" medium="image" />
	</item>
		<item>
		<title>Scripts (RhinoScript): Adaptive Fenestration and Massive Unroll</title>
		<link>http://dimitrie.wordpress.com/2008/06/13/scripts-rhinoscript-adaptive-fenestration-and-massive-unroll/</link>
		<comments>http://dimitrie.wordpress.com/2008/06/13/scripts-rhinoscript-adaptive-fenestration-and-massive-unroll/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 21:54:30 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<category><![CDATA[algorithm]]></category>

		<category><![CDATA[algoritmic architecture]]></category>

		<category><![CDATA[computational architecture]]></category>

		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=157</guid>
		<description><![CDATA[As I promised, I hand out some of the scripts I&#8217;ve written in the course of the latest project.

Massive unroll Script:
Select as many surfaces as you like and then unroll each one of them.
Download it.

Adaptive fenestration script:
An interesting script that cuts holes in a surface based on the relation with a given attractor(point). I used [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As I promised, I hand out some of the scripts I&#8217;ve written in the course of the latest project.</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/ribsunrolscrpscrn.jpg"><img class="alignnone size-medium wp-image-158" src="http://dimitrie.files.wordpress.com/2008/06/ribsunrolscrpscrn.jpg?w=300&h=195" alt="" width="300" height="195" /></a></p>
<p><span style="text-decoration:underline;">Massive unroll Script:</span></p>
<p>Select as many surfaces as you like and then unroll each one of them.</p>
<p><span style="color:#ff0000;"><strong><a href="http://improved.ro/RhinoScripts/massiveUnroll.rvb">Download it.</a></strong></span></p>
<hr /><a href="http://dimitrie.files.wordpress.com/2008/06/adaaaa.jpg"><img class="alignnone size-medium wp-image-159" src="http://dimitrie.files.wordpress.com/2008/06/adaaaa.jpg?w=300&h=242" alt="" width="300" height="242" /></a></p>
<p><span style="text-decoration:underline;">Adaptive fenestration script:</span></p>
<p>An interesting script that cuts holes in a surface based on the relation with a given attractor(point). I used it to generate a porous membrane for my <a href="http://dimitrie.wordpress.com/2008/06/13/architectural-organism/">latest project</a>.</p>
<p><strong><a href="http://improved.ro/RhinoScripts/faceting_rev.rvb">Download it.</a></strong></p>
<hr />Those were some scripts that have actually proven to be quite stable&#8230;</p>
<p>Here are some other potentially super-bugged scripts:</p>
<p><strong><a href="http://improved.ro/RhinoScripts/faceting.rvb">Faceting.</a></strong> - Does the same as the adaptive fenestration script only it also &#8220;facets&#8221; the seed surface.</p>
<p><strong><a href="http://improved.ro/RhinoScripts/ribs_hex.rvb">Ribs.</a></strong> - My attempt (quite sucesefull) at writing a <a href="http://www.materialsystems.org/?page_id=384">honeycomb script</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/157/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/157/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=157&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/06/13/scripts-rhinoscript-adaptive-fenestration-and-massive-unroll/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/ribsunrolscrpscrn.jpg?w=300" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/adaaaa.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>architectural organism</title>
		<link>http://dimitrie.wordpress.com/2008/06/13/architectural-organism/</link>
		<comments>http://dimitrie.wordpress.com/2008/06/13/architectural-organism/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 10:43:40 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<category><![CDATA[porosity]]></category>

		<category><![CDATA[single-family house]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=148</guid>
		<description><![CDATA[home/house: an architectural organism
The house must not be seen as an opaque shell, but as an osmotic membrane.
The built environment intersects with the living environment.
Create a formal and functional interdependence between the architectural object (building) and the subjective object (home).

So you can see what porosity led to.

And here are some pictures of the model:



Balsa wood [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3><strong><em>home/house: an architectural organism</em></strong></h3>
<p><em>The house must not be seen as an opaque shell, but as an </em><em><strong>osmotic membrane</strong>.</em></p>
<p><em>The built environment <strong>intersects </strong>with the </em><em>living environment.</em></p>
<p><em>Create a </em><em><strong>formal and functional interdependence</strong> between the </em>architectural <em>object (building) and the </em>subjective <em>object (home).</em></p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/plansa1_web.jpg"><img class="alignnone size-full wp-image-149" src="http://dimitrie.files.wordpress.com/2008/06/plansa1_web.jpg?w=500&h=700" alt="" width="500" height="700" /></a></p>
<p>So you can see what porosity led to.</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/plansa2_web.jpg"><img class="alignnone size-full wp-image-150" src="http://dimitrie.files.wordpress.com/2008/06/plansa2_web.jpg?w=500&h=700" alt="" width="500" height="700" /></a></p>
<p>And here are some pictures of the model:</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/wclipboard01.jpg"><img class="alignnone size-thumbnail wp-image-151" src="http://dimitrie.files.wordpress.com/2008/06/wclipboard01.jpg?w=128&h=96" alt="" width="128" height="96" /></a><a href="http://dimitrie.files.wordpress.com/2008/06/wp1060651.jpg"><img class="alignnone size-thumbnail wp-image-152" src="http://dimitrie.files.wordpress.com/2008/06/wp1060651.jpg?w=128&h=96" alt="" width="128" height="96" /></a></p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/wp1060667.jpg"><img class="alignnone size-thumbnail wp-image-153" src="http://dimitrie.files.wordpress.com/2008/06/wp1060667.jpg?w=128&h=96" alt="" width="128" height="96" /></a><a href="http://dimitrie.files.wordpress.com/2008/06/wp1060669.jpg"><img class="alignnone size-thumbnail wp-image-154" src="http://dimitrie.files.wordpress.com/2008/06/wp1060669.jpg?w=128&h=96" alt="" width="128" height="96" /></a></p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/wp1060672.jpg"><img class="alignnone size-thumbnail wp-image-156" src="http://dimitrie.files.wordpress.com/2008/06/wp1060672.jpg?w=128&h=96" alt="" width="128" height="96" /></a><a href="http://dimitrie.files.wordpress.com/2008/06/wp1060671.jpg"><img class="alignnone size-thumbnail wp-image-155" src="http://dimitrie.files.wordpress.com/2008/06/wp1060671.jpg?w=128&h=96" alt="" width="128" height="96" /></a></p>
<p>Balsa wood and plexiglass, nicely cut by CO2 laser.</p>
<p><a href="http://dimitrie.wordpress.com/2008/06/12/single-family-home/">First step of the project is here.</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/148/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/148/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=148&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/06/13/architectural-organism/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/plansa1_web.jpg" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/plansa2_web.jpg" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wclipboard01.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wp1060651.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wp1060667.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wp1060669.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wp1060672.jpg?w=128" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/wp1060671.jpg?w=128" medium="image" />
	</item>
		<item>
		<title>single-family home</title>
		<link>http://dimitrie.wordpress.com/2008/06/12/single-family-home/</link>
		<comments>http://dimitrie.wordpress.com/2008/06/12/single-family-home/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 20:14:34 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[fractal]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=145</guid>
		<description><![CDATA[(1of2)
First set of drawings from a single-family home project for school.
Getting a grip on the surroundings:

After an initial study of the surroundings, several ways of tackling this project have been bouncing up and down in my head. I won&#8217;t go through all the urban analysis of the area, suffice to say that taking into account [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>(1of2)</p>
<p>First set of drawings from a <a href="http://en.wikipedia.org/wiki/Single-family_home">single-family home</a> project for <a href="http://iaim.ro">school</a>.</p>
<p>Getting a grip on the surroundings:</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/plansaanaliza_web.jpg"><img class="alignnone size-full wp-image-147" src="http://dimitrie.files.wordpress.com/2008/06/plansaanaliza_web.jpg?w=500&h=700" alt="" width="500" height="700" /></a></p>
<p>After an initial study of the <a href="http://kmap.org/n9dmu">surroundings</a>, several ways of tackling this project have been bouncing up and down in my head. I won&#8217;t go through all the urban analysis of the area, suffice to say that taking into account the general characteristics (building regulations, urban tissue, the relation between buildings and their respective lots) and specific characteristics (how much sun do I get and from where? how much privacy? what role does vegetation play?) I was able to identify some &#8220;core variables&#8221; around which I could start working.</p>
<p>The site is a corner site. This must be reflected in the construction.</p>
<p>I  can&#8217;t <em>directly attack </em>the corner due to the constraint pushed by the general characteristic mentioned above - the relation between buildings and their respective lots - they all are free-standing separate objects.</p>
<p><a href="http://images.google.ro/images?q=sunlight&amp;ie=UTF-8&amp;oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;sa=N&amp;tab=wi">Sunlight</a>. The south is blocked by high-rise (10 stories) buildings. I must get the most out of what reaches the site while still offering a decent level of privacy (imagine 20 apartments looking down into your house).</p>
<p>The program was a classical <a href="http://en.wikipedia.org/wiki/Single-family_home">single-family home</a> (living room, kitchen, dining, 3 bedrooms, study/library, garage). I also wanted to open up the spaces inside towards the garden and the trees (which act as a natural privacy shield) surrounding the lot.</p>
<p>Air must come in and then out (get as much natural ventilation as possible).</p>
<p>Porosity sprang to mind. What if I can create a living, adaptive <a href="http://images.google.ro/images?q=porosity&amp;ie=UTF-8&amp;oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;sa=N&amp;tab=wi">porous</a> <a href="http://en.wikipedia.org/wiki/Menger_sponge">block</a> that acts as a retreat and yet still opens up to let in fresh air, sunlight, perspective and, most important, a family? I investigated a little bit of <a href="http://en.wikipedia.org/wiki/Fractal">fractals</a>, went through to fractal architecture and, most important early-on in the design process, (<a href="http://www.stevenholl.com/">Steven Holl</a>&#8217;s) <a href="http://www.stevenholl.com/project-detail.php?id=41&amp;worldmap=true">porosity</a> <a href="http://images.google.ro/images?hl=ro&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;hs=41s&amp;q=porosity%20architecture&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;tab=wi">architecture</a>.</p>
<p>Initial concept (working towards porosity): <em>*note: this is not how the final project looks like. the img below is just a concept sketch.</em></p>
<p><a href="http://dimitrie.files.wordpress.com/2008/06/plansaconceptchestii_web.jpg"><img class="alignnone size-full wp-image-146" src="http://dimitrie.files.wordpress.com/2008/06/plansaconceptchestii_web.jpg?w=500&h=700" alt="" width="500" height="700" /></a></p>
<p>So, all talk and no scripts? Wait, no!</p>
<p>More to come in the next post. I promise you adaptive (in relation to an attractor/point) porosity on a given surface and a massive unroll script.</p>
<p>Here&#8217;s a nifty script to create a <a href="http://en.wikipedia.org/wiki/Menger_sponge" target="_blank">menger sponge</a> in <a href="http://rhino3d.com">Rhino:<br />
</a></p>
<p><em>Option Explicit</em></p>
<p><em>&#8216;<br />
&#8216;Script written by Dimitrie Stefanescu<br />
&#8216;Released under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0<br />
&#8216;</em></p>
<p><em>Call sponge()</em></p>
<p><span id="more-145"></span><br />
<em>Sub sponge()<br />
&#8216;<br />
&#8216;Set var &#8220;menger&#8221; to 0 if you want just a plain divide<br />
&#8216;else if &#8220;menger&#8221; is 1 you will get a menger sponge<br />
&#8216;<br />
Dim menger : menger = 1</em></p>
<p><em>Dim objs : objs = Rhino.GetObjects(&#8221;select cubes to divide:&#8221;, 16, True, True)<br />
Dim obj<br />
Dim scale : scale = 1/3</em></p>
<p><em>For Each obj In objs<br />
Dim faces : faces = Rhino.ExplodePolysurfaces(obj)<br />
Dim points : points = Rhino.SurfacePoints(faces(0))<br />
Dim orig : orig = points(0)<br />
Dim L : L = Rhino.Distance(points(0), points(1))<br />
Dim ll : ll = L /3<br />
Dim nobj : nobj = Rhino.ScaleObject(obj, orig, Array(scale, scale, scale))<br />
Dim i, j, k<br />
Dim loc</em></p>
<p><em>Call rhino.EnableRedraw(False)</em></p>
<p><em>For i = 0 To 2 Step 1<br />
For j = 0 To 2 Step 1<br />
For k = 0 To 2 Step 1<br />
If menger = 1 Then<br />
If Not((i=1 And j=1) Or (j=1 And k=1) Or (i=1 And k=1)) Then<br />
loc = Array(orig(0) + ll * i, orig(1) + ll * j, orig(2) + ll * k)<br />
Call Rhino.CopyObject(nobj, orig, loc)<br />
End If<br />
End If<br />
Next</em></p>
<p><em>Next<br />
Next</em></p>
<p><em>Call rhino.DeleteObjects(faces)<br />
Next</em></p>
<p><em>Call rhino.EnableRedraw(True)</em></p>
<p><em>End Sub</em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/145/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/145/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=145&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/06/12/single-family-home/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/plansaanaliza_web.jpg" medium="image" />

		<media:content url="http://dimitrie.files.wordpress.com/2008/06/plansaconceptchestii_web.jpg" medium="image" />
	</item>
		<item>
		<title>Protected: Urbn bctr (concept)</title>
		<link>http://dimitrie.wordpress.com/2008/06/10/urban-bacteria-concept/</link>
		<comments>http://dimitrie.wordpress.com/2008/06/10/urban-bacteria-concept/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 11:13:05 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[109017]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=134</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://dimitrie.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-134">Password:<br />
<input name="post_password" id="pwbox-134" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/134/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/134/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=134&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/06/10/urban-bacteria-concept/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>
	</item>
		<item>
		<title>Constanta - design proposal for the waterfront of the leisure port</title>
		<link>http://dimitrie.wordpress.com/2008/03/29/constanta/</link>
		<comments>http://dimitrie.wordpress.com/2008/03/29/constanta/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 11:19:20 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[boids]]></category>

		<category><![CDATA[circle packing]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[processing.org]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<category><![CDATA[circulation study]]></category>

		<category><![CDATA[computational architecture]]></category>

		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=113</guid>
		<description><![CDATA[     
We started out on this by analyzing the area and its surroundings from the point of view of circulation (more on how we did this). How would people move around? The conclusions from this study where integrated later on in the project.

Next we took on the task of (re)creating the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a title="prezentare_1250.jpg" href="http://dimitrie.files.wordpress.com/2008/03/prezentare_1250.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/prezentare_1250.thumbnail.jpg" alt="prezentare_1250.jpg" /></a> <a title="mobilier-copy.jpg" href="http://dimitrie.files.wordpress.com/2008/03/mobilier-copy.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/mobilier-copy.thumbnail.jpg" alt="mobilier-copy.jpg" /></a> <a title="plansafinala3_1200.jpg" href="http://dimitrie.files.wordpress.com/2008/03/plansafinala3_1200.jpg"> <img src="http://dimitrie.files.wordpress.com/2008/03/plansafinala3_1200.thumbnail.jpg" alt="plansafinala3_1200.jpg" /></a> <a title="plandesfasurate_1200.jpg" href="http://dimitrie.files.wordpress.com/2008/03/plandesfasurate_1200.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/plandesfasurate_1200.thumbnail.jpg" alt="plandesfasurate_1200.jpg" /> </a></p>
<p>We started out on this by analyzing the <a href="http://kmap.org/o4dgv">area and its surroundings</a> from the point of view of circulation (<a href="http://dimitrie.wordpress.com/circulation-study/">more on how we did this</a>). How would people move around? The conclusions from this study where integrated later on in the project.</p>
<p><a title="vederi_1200.jpg" href="http://dimitrie.files.wordpress.com/2008/03/vederi_1200.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/vederi_1200.jpg" alt="vederi_1200.jpg" width="465" height="328" /></a></p>
<p>Next we took on the task of (re)creating the landscape - modify the terrain in a functional yet unobtrusive way. Formal concepts revolved around <a href="http://nestlaboratory.com/images/contentimages/50.gif">radiolaria</a>, <a href="http://upload.wikimedia.org/wikipedia/commons/f/f4/Foam_-_big.jpg">foam</a>, water, waves etc. Luckily we had a working circle packing applet in <a href="http://processing.org">processing</a> ready (which was used for <a href="http://dimitrie.wordpress.com/2007/10/08/circle-packing-a-book-cover/">this</a>). From here on, it was quite straightforward: expand the circles to smooth spherical caps and smartly transform them into urban furniture.</p>
<p>The interstitial space that remained between the&#8221;bubbles&#8221; is packed with wood alongside the routes we discovered to be ideal using the circulation study. The rest is  English lawn <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> pure green smartly-cut grass.</p>
<p>This project is a collaboration between Veronica and me.</p>
<p><strong><span style="text-decoration:underline;"><span style="color:#000000;">Tools we used include:</span></span></strong><br />
<a href="http://processing.org">Processing</a> was VERY important early on in the design process - we used it for the <a href="http://dimitrie.wordpress.com/circulation-study/">circulation study</a> as well as for the early circle packing experiments (size, density, spread etc).</p>
<p><a href="http://rhino3d.com">Rhino</a> and <a href="http://en.wiki.mcneel.com/default.aspx/McNeel/RhinoScript.html">RhinoScript</a>: RhinoScript is great - we used it extensively (create spherical caps based on the generating circle&#8217;s radius, expand circles, contract circles, import circles which the processing applet generated, etc.). <a href="http://rhino3d.com">Rhino</a> was used for everything else - 3D modelling and, of course, making valid STL files for the <a href="http://mazarom.ro">3D printer</a> and also exporting the right things for the laser printer.</p>
<p><a title="macheta1.jpg" href="http://dimitrie.files.wordpress.com/2008/04/macheta1.jpg"><img src="http://dimitrie.files.wordpress.com/2008/04/macheta1.thumbnail.jpg" alt="macheta1.jpg" /></a><a title="macheta4.jpg" href="http://dimitrie.files.wordpress.com/2008/04/macheta4.jpg"><img src="http://dimitrie.files.wordpress.com/2008/04/macheta4.thumbnail.jpg" alt="macheta4.jpg" width="186" height="128" /></a><a title="macheta2.jpg" href="http://dimitrie.files.wordpress.com/2008/04/macheta2.jpg"><img src="http://dimitrie.files.wordpress.com/2008/04/macheta2.thumbnail.jpg" alt="macheta2.jpg" width="229" height="129" /></a></p>
<p>Laser cutting was done <a href="http://machetelaser.ro">here</a> (as always).</p>
<p>3D wax models were kindly made for us by <a href="http://www.mazarom.ro">mazarom</a> (at the moment the only 3D printing service in Bucharest). If you need a complicated model, don&#8217;t hesitate to contact <a href="http://www.mazarom.ro">them</a>!</p>
<p>Plotting the final presentation was done at studio spot. They don&#8217;t have a <a href="http://duostudio.ro/" target="_blank">webiste</a>&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/113/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/113/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=113&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/03/29/constanta/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/prezentare_1250.thumbnail.jpg" medium="image">
			<media:title type="html">prezentare_1250.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/mobilier-copy.thumbnail.jpg" medium="image">
			<media:title type="html">mobilier-copy.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/plansafinala3_1200.thumbnail.jpg" medium="image">
			<media:title type="html">plansafinala3_1200.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/plandesfasurate_1200.thumbnail.jpg" medium="image">
			<media:title type="html">plandesfasurate_1200.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/vederi_1200.jpg" medium="image">
			<media:title type="html">vederi_1200.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/04/macheta1.thumbnail.jpg" medium="image">
			<media:title type="html">macheta1.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/04/macheta4.thumbnail.jpg" medium="image">
			<media:title type="html">macheta4.jpg</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/04/macheta2.thumbnail.jpg" medium="image">
			<media:title type="html">macheta2.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>We are happy to announce</title>
		<link>http://dimitrie.wordpress.com/2008/03/29/we-are-happy-to-announce-2/</link>
		<comments>http://dimitrie.wordpress.com/2008/03/29/we-are-happy-to-announce-2/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 09:09:49 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[bucharest]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[romania]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=111</guid>
		<description><![CDATA[To have found someone in a 50km radius that is sharing the same interest in architecture. You can find him Here.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To have found <acronym title="Ionut anton">someone</acronym> in a 50km radius that is sharing the same interest in architecture. You can find him <a href="http://idzarhitectura.idz.ro/drupal/">Here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/111/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/111/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=111&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/03/29/we-are-happy-to-announce-2/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>
	</item>
		<item>
		<title>State of the union no2</title>
		<link>http://dimitrie.wordpress.com/2008/03/23/state-of-the-uniron-no2/</link>
		<comments>http://dimitrie.wordpress.com/2008/03/23/state-of-the-uniron-no2/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 08:51:44 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[boids]]></category>

		<category><![CDATA[circle packing]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[now]]></category>

		<category><![CDATA[portfolio]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[rhinoscript]]></category>

		<category><![CDATA[portul tomis]]></category>

		<category><![CDATA[proiect]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=110</guid>
		<description><![CDATA[Things evolve:

Veronica and me (Dimitrie). This could have looked better, but alas, we had to make a 1m  x 1.3m model in the same time.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Things evolve:</p>
<p><a title="portul tomis plansa prezentare" href="http://dimitrie.files.wordpress.com/2008/03/chinciebou-copy.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/chinciebou-copy.jpg?w=471&h=660" alt="portul tomis plansa prezentare" width="471" height="660" /></a></p>
<p>Veronica and me (Dimitrie). This could have looked better, but alas, we had to make a 1m  x 1.3m model in the same time.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/110/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/110/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=110&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/03/23/state-of-the-uniron-no2/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/chinciebou-copy.jpg" medium="image">
			<media:title type="html">portul tomis plansa prezentare</media:title>
		</media:content>
	</item>
		<item>
		<title>State of the union</title>
		<link>http://dimitrie.wordpress.com/2008/03/08/state-of-the-union/</link>
		<comments>http://dimitrie.wordpress.com/2008/03/08/state-of-the-union/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 21:55:31 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[circle packing]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[processing.org]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=107</guid>
		<description><![CDATA[How things are going on:

Work done for the current school project by Veronica and me. This is just a snapshot, stay tuned for more. I&#8217;ve written 2 pretty interesting scripts for this one&#8230; so stay tuned.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How things are going on:</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/03/desk22.jpg" title="desk22.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/desk22.jpg" alt="desk22.jpg" /></a></p>
<p>Work done for the current school project by <a href="http://www.iaim.ro/galerie/proiecte/302/">Veronica </a>and me. This is just a snapshot, stay tuned for more. I&#8217;ve written 2 pretty interesting scripts for this one&#8230; so stay tuned.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/107/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/107/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=107&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/03/08/state-of-the-union/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/desk22.jpg" medium="image">
			<media:title type="html">desk22.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Urban circulation study&#8230;</title>
		<link>http://dimitrie.wordpress.com/2008/03/01/urban-circulation-study/</link>
		<comments>http://dimitrie.wordpress.com/2008/03/01/urban-circulation-study/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 17:12:22 +0000</pubDate>
		<dc:creator>dimitrie</dc:creator>
		
		<category><![CDATA[architecture]]></category>

		<category><![CDATA[arhitectura]]></category>

		<category><![CDATA[boids]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[computational]]></category>

		<category><![CDATA[processing.org]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[circulation study]]></category>

		<category><![CDATA[intelligence]]></category>

		<category><![CDATA[processing]]></category>

		<category><![CDATA[swarm]]></category>

		<category><![CDATA[urban study]]></category>

		<category><![CDATA[urbanism]]></category>

		<guid isPermaLink="false">http://dimitrie.wordpress.com/?p=102</guid>
		<description><![CDATA[ or swarm intelligence?
Using processing to make a circulation study in a public area. It&#8217;s for the current school project. More details later.

I&#8217;ve used Shiffman&#8217;s boids sketch as a start, and gradually started building up with some attractors, Point Obstacles (which are attractors with negative pull basically), and Linear Obstacles (which were a little bit tricky, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> or <a href="http://en.wikipedia.org/wiki/Swarm_intelligence">swarm intelligence</a>?</p>
<p>Using <a href="http://processing.org" target="_blank">processing</a> to make a circulation study in a public area. It&#8217;s for the current <a href="http://iaim.ro" target="_blank">school</a> project. More details later.</p>
<p><a href="http://dimitrie.files.wordpress.com/2008/03/plansa1-copy.jpg" title="plansa1-copy.jpg"><img src="http://dimitrie.files.wordpress.com/2008/03/plansa1-copy.jpg" alt="plansa1-copy.jpg" /></a></p>
<p>I&#8217;ve used <a href="http://shiffman.net" target="_blank">Shiffman</a>&#8217;s boids sketch as a start, and gradually started building up with some attractors, Point Obstacles (which are attractors with negative pull basically), and Linear Obstacles (which were a little bit tricky, but <a href="http://local.wasp.uwa.edu.au/~pbourke/geometry/pointline/" target="_blank">this</a> helped out a lot). Also very inspirational were <a href="http://kokkugia.com">kokkugia</a>&#8217;s experiments.</p>
<p>When it&#8217;s nice and propper, I will  add some details and upload the code/sketch.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dimitrie.wordpress.com/102/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dimitrie.wordpress.com/102/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimitrie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimitrie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimitrie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimitrie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimitrie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimitrie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimitrie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimitrie.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimitrie.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimitrie.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimitrie.wordpress.com&blog=163090&post=102&subd=dimitrie&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimitrie.wordpress.com/2008/03/01/urban-circulation-study/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/dimitrie-128.jpg" medium="image">
			<media:title type="html">dimitrie</media:title>
		</media:content>

		<media:content url="http://dimitrie.files.wordpress.com/2008/03/plansa1-copy.jpg" medium="image">
			<media:title type="html">plansa1-copy.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>