<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7298928703244125427</id><updated>2011-04-21T10:48:22.708-07:00</updated><category term='Flash'/><title type='text'>Fonky flash</title><subtitle type='html'>...for fonky people, chickity check yourself!</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://fonkyflash.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7298928703244125427/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://fonkyflash.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>jannes</name><uri>http://www.blogger.com/profile/08923437241322163594</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7298928703244125427.post-934104715615317383</id><published>2007-04-11T06:05:00.000-07:00</published><updated>2007-04-12T04:31:48.851-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flash'/><title type='text'>Papervision Ase: the source!</title><content type='html'>Of course: papervision. I could not stay behind.&lt;br /&gt;&lt;br /&gt;I was playing around a bit with it and then I saw the possibility to render .ase files. This are files from 3D studio max. I got an ase-file from a colleague and I started working. I had to build a few workarounds because the objects that are created from the ase-files are no movie clips and I wanted to give them events like a rollOver.&lt;br /&gt;&lt;br /&gt;You can see the result &lt;a href="http://cases.boulevart.be/blogs/papervision.html" onclick="window.open('http://cases.boulevart.be/blogs/papervision.html','popup','width=600,height=600scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"&gt;here&lt;/a&gt; (this can take some time because the ase files need to be parsed first).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here is the code: &lt;a href="http://cases.boulevart.be/blogs/Bacterie3D.zip"&gt;Bacterie3D.as&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7298928703244125427-934104715615317383?l=fonkyflash.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://fonkyflash.blogspot.com/feeds/934104715615317383/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7298928703244125427&amp;postID=934104715615317383' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7298928703244125427/posts/default/934104715615317383'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7298928703244125427/posts/default/934104715615317383'/><link rel='alternate' type='text/html' href='http://fonkyflash.blogspot.com/2007/04/papervision.html' title='Papervision Ase: the source!'/><author><name>jannes</name><uri>http://www.blogger.com/profile/08923437241322163594</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7298928703244125427.post-3604301429971584210</id><published>2007-03-20T06:33:00.000-07:00</published><updated>2007-03-20T08:39:57.389-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flash'/><title type='text'>L-Systems</title><content type='html'>&lt;a target="_blank" href="http://seeing-is-believing.blogspot.com/"&gt;One&lt;/a&gt; of my colleagues was so kind to give me this book on L-Systems: &lt;a target="_blank" href="http://www.amazon.com/Virtual-Lab-Laboratory-Przemyslaw-Prusinkiewicz/dp/0387946764/ref=pd_bbs_2/104-0499667-1634344?ie=UTF8&amp;s=books&amp;amp;qid=1174389762&amp;sr=8-2"&gt;The algorithmic beauty of plants&lt;/a&gt; by Przemyslaw Prusinkiewicz and Aristid Lindenmayer.&lt;br /&gt;I was interested in what you could do with it and I asked google. I found &lt;a target="_blank" href="http://www.scriptable.com/blog/actionscript/2006/02/l-systems-parser.html"&gt;this site&lt;/a&gt; where a few classes were shared that I could use. Drawing with L-Systems uses a formula to describe a path. Different symbols make the pen do different actions like draw, turn or change color. A function can be composed of different other functions so we can make very difficult drawings.&lt;br /&gt;The concept of iterations is very clear with the 'Sierpinski gasket'-example. It draws a triangle upside down inside the base triangle and with this creates 3 new ones. Depending on how many iterations you want,  a new triangle is drawn in these 3 new triangles, creating again 3 new triangles for these 3 new triangles. And so on and on.&lt;br /&gt;I tried some of the formulas from the book and it worked fine. I changed the code a little bit so it is now possible to change the amount of iterations and have a better idea of what is actually going on.&lt;br/&gt;&lt;br /&gt;(Some of the examples are very processor intensive if you take more iterations. My advise is to add just 1 iteration every time. The drawing also becomes to big for the small screen if you make a lot of iterations.)&lt;br /&gt;&lt;br /&gt;&lt;object height="600" width="500"&gt;&lt;param name="movie" value="http://cases.boulevart.be/blogs/lsystem.swf"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://cases.boulevart.be/blogs/lsystem.swf" type="application/x-shockwave-flash" wmode="transparent" height="600" width="500"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;L-systems are much more than what I show here. Now we change directions and angles of the pen, but we can also change colors and add a 3rd dimension.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BUL7Keej-eQ/Rf_k9CrgX0I/AAAAAAAAAAM/HCW9Okc19U8/s1600-h/lsystem.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_BUL7Keej-eQ/Rf_k9CrgX0I/AAAAAAAAAAM/HCW9Okc19U8/s320/lsystem.png" alt="" id="BLOGGER_PHOTO_ID_5044001845020745538" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Well... we have to start somewhere.&lt;br /&gt;&lt;br /&gt;For those who are interested: &lt;a href="http://cases.boulevart.be/blogs/lsystems.zip"&gt;the source&lt;/a&gt;. Special thanks to Mitch Allen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7298928703244125427-3604301429971584210?l=fonkyflash.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7298928703244125427/posts/default/3604301429971584210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7298928703244125427/posts/default/3604301429971584210'/><link rel='alternate' type='text/html' href='http://fonkyflash.blogspot.com/2007/03/l-systems.html' title='L-Systems'/><author><name>jannes</name><uri>http://www.blogger.com/profile/08923437241322163594</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BUL7Keej-eQ/Rf_k9CrgX0I/AAAAAAAAAAM/HCW9Okc19U8/s72-c/lsystem.png' height='72' width='72'/></entry></feed>
