<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Alberto&#039;s Blog &#187; Computer path</title>
	<atom:link href="http://albertoven.com/category/computer-path/feed/" rel="self" type="application/rss+xml" />
	<link>http://albertoven.com</link>
	<description>Creating and exploring procedural landscapes</description>
	<lastBuildDate>Thu, 25 Apr 2013 08:28:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='albertoven.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Alberto&#039;s Blog &#187; Computer path</title>
		<link>http://albertoven.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://albertoven.com/osd.xml" title="Alberto&#039;s Blog" />
	<atom:link rel='hub' href='http://albertoven.com/?pushpress=hub'/>
		<item>
		<title>Realike: the bendy engine</title>
		<link>http://albertoven.com/2012/12/31/realike-the-bendy-engine/</link>
		<comments>http://albertoven.com/2012/12/31/realike-the-bendy-engine/#comments</comments>
		<pubDate>Mon, 31 Dec 2012 11:13:11 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[3D video]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fabric]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[indie]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1457</guid>
		<description><![CDATA[Realike is a holistic simulation engine based upon the idea of atom that unifies what you see with what is detected (What You See Is What You Touch (WYSIWYT)) and let physic interactions emerge by themselves. It&#8217;s inspired by my previous work from 2004 Pentium IV 3000MHz II: fabric. The nominal way of making 3D games [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1457&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Realike is a holistic simulation engine based upon the idea of atom that unifies what you see with what is detected (What You See Is What You Touch (WYSIWYT)) and let physic interactions emerge by themselves. It&#8217;s inspired by my previous work from 2004 <a href="http://albertoven.com/2009/11/04/pentiumiv-3000mhz-the-number-cruncher-has-arrived-ii-fabric/" target="_blank">Pentium IV 3000MHz II: fabric</a>.</p>
<p>The nominal way of making 3D games was and is being explored thoroughly by most developers, that is: everything in the game is an empty triangle shell controllable through predefined animations. But (and this is a big but) the interactions are performed between invisible bounding volumes. Also if you want something to be breakable you must program it specifically. There&#8217;s nothing wrong with this traditional way, several of my all time favourite games fall under this category. But there are another possibilities.</p>
<p>Here is mine: every part of every interactive object in the game behaves as it should by itself. Just put out there your avatar or any interactive part of the scene and attach to it some forces applied to specific parts (= muscles) and you are ready to go. All collision detection will be performed over what you see on screen: What You See Is What You Touch (WYSIWYT). Fracture patterns will appear spontaneously whenever enough stress emerges on some part of the system.</p>
<p>One way to do this is just plagiarism of the way things are done in the real world: everything must be composed of (and exclusively of) atoms. Each atom could have position, size, mass, softness, interactions with other atoms, orientation&#8230;</p>
<p>Arising problem: the amount of atoms required to construct anything playable is going to be huge. Very careful design is going to be needed to reduce memory usage. And even more care should be put CPU wise. It could be challenging to animate at 60 fps many thousands of interacting dynamic atoms. Let&#8217;s also allow for static atoms used to create non changing parts of the game. Realike has been designed to address this issue. Some of its advantages are:</p>
<ul>
<li>Varied material properties arise by themselves from internal specific atom structure (just as in chemical compounds), examples are:
<ul>
<li>rubbery materials</li>
<li>rigid materials</li>
<li>combination of rubbery and rigid along different axis</li>
<li>fragile (easily breakable)</li>
<li>unbreakable</li>
<li>fabric</li>
<li>malleable</li>
<li>fluid</li>
</ul>
</li>
</ul>
<ul>
<li>No need for separate handling of bounding volumes for collision detection and visualization, this just happens by itself whenever something is constructed on the engine.</li>
</ul>
<ul>
<li>New exotic types of avatars are possible, for example real bipeds/quadrupeds. Watch the video for another example of a wrinkled thick-fabric like ball.</li>
</ul>
<ul>
<li>The difficult to rate advantage of an exciting new feeling. Hard to describe how enticing is to control an avatar inside an all atom world. You&#8217;ll have to trust me on this one until the game &#8216;Fathomed dodecahedron&#8217; is released.</li>
</ul>
<ul>
<li>On the game editor front whole new approaches are possible all stemming from the fact you are now dealing with real filled objects with internal structure instead of empty shells.</li>
</ul>
<ul>
<li>Potentially everything can bend and/or break without any extra effort, it will just happen under the right stress.</li>
</ul>
<ul>
<li>If individual atom behaviour is well programmed then 2 natural physic traits will emerge by themselves without having expressly been coded: precession on rotating bodies and angular momentum.</li>
</ul>
<ul>
<li>There&#8217;s an oportunity here to innovate also at visual level. How are you going to represent the particles? realtime blobs? individual polygon spheres? using the atoms as the skeleton of an empty traditional triangle shell? are you going to raytrace them? billboarding perhaps? &#8230;</li>
</ul>
<p>Here is gameplay capture of &#8216;Fathomed dodecahedron&#8217;, it runs at 150 fps on my PC:</p>
<div id="attachment_1459" class="wp-caption alignnone" style="width: 560px"><a title="'Fathomed dodecahedron'" href="http://youtu.be/K-vF0cbs-wA" target="_blank" rel="attachment wp-att-1459"><img class="size-full wp-image-1459" alt="'Fathomed dodecahedron'" src="http://albertordmr.files.wordpress.com/2012/12/fathomed-dodecahedron.png?w=550&#038;h=309" width="550" height="309" /></a><p class="wp-caption-text">&#8216;Fathomed dodecahedron&#8217;</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1457/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1457/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1457&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2012/12/31/realike-the-bendy-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2012/12/fathomed-dodecahedron.png" medium="image">
			<media:title type="html">&#039;Fathomed dodecahedron&#039;</media:title>
		</media:content>
	</item>
		<item>
		<title>Steampunk landscape</title>
		<link>http://albertoven.com/2012/10/21/steampunk-landscape/</link>
		<comments>http://albertoven.com/2012/10/21/steampunk-landscape/#comments</comments>
		<pubDate>Sun, 21 Oct 2012 19:27:34 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D video]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1438</guid>
		<description><![CDATA[The video below has been rendered with the Raydiant rendering engine, also all the geometry has been procedurally generated with Raydiant from a digital photo using http://cutemosaic.com. As you will see there are several gear floors mounted in a clock like fashion. At the beginning of the video a close-up of an emerald bearing shows [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1438&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The video below has been rendered with the Raydiant rendering engine, also all the geometry has been procedurally generated with Raydiant from a digital photo using <a href="http://cutemosaic.com" rel="nofollow">http://cutemosaic.com</a>. As you will see there are several gear floors mounted in a clock like fashion. At the beginning of the video a close-up of an emerald bearing shows refraction and reflection. The surface of the uppermost plating is bumpmapped and modelled with triangles. Also cylinders, stretched  spheres and boxes are used as geometric primitives. The gears are procedurally bumpmapped on the edges. Everything has global illumination and several material kinds with unique light scattering/dispersing profiles are used. Can you see what is depicted by the whole gear maze? Pay attention to the inscriptions along the way and make sure you watch it on HD setting.</p>
<p><a href="http://youtu.be/ppwc6AeA_j8" target="_blank"><img class="alignnone size-full wp-image-1444" title="Steampunk video" alt="" src="http://albertordmr.files.wordpress.com/2012/10/steampunk.jpg?w=550&#038;h=411" height="411" width="550" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1438&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2012/10/21/steampunk-landscape/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2012/10/steampunk.jpg" medium="image">
			<media:title type="html">Steampunk video</media:title>
		</media:content>
	</item>
		<item>
		<title>Playing across the domes</title>
		<link>http://albertoven.com/2012/01/08/playing-across-the-domes/</link>
		<comments>http://albertoven.com/2012/01/08/playing-across-the-domes/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 10:17:04 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D video]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Colorado]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Euclideon]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1429</guid>
		<description><![CDATA[The video below is composed of around 2000 renders done with Raydiant at around 1 and a half minute each one. A geometry operator that applies non homogeneous scaling and shear to any contained object is used to transform spheres into beads. Images are automatically postprocessed inside Raydiant to show lens glow on saturated spots. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1429&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The video below is composed of around 2000 renders done with Raydiant at around 1 and a half minute each one. A geometry operator that applies non homogeneous scaling and shear to any contained object is used to transform spheres into beads. Images are automatically postprocessed inside Raydiant to show lens glow on saturated spots. To that extent a subpixel accumulative scalar field parametrized by angle, distance, intensity and hue has been applied at every glowing texel. All the geometry has been procedurally generated inside Raydiant from a digital photo of an undisclosed location of the Persian Gulf (<a href="http://cutemosaic.com" rel="nofollow">http://cutemosaic.com</a>).</p>
<p><a href="http://youtu.be/AIecrdCoEZM" target="_blank"><img class="alignnone size-full wp-image-1430" title="frame-0000000930" src="http://albertordmr.files.wordpress.com/2012/01/frame-0000000930.png?w=550&#038;h=412" alt="" width="550" height="412" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1429/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1429&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2012/01/08/playing-across-the-domes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2012/01/frame-0000000930.png" medium="image">
			<media:title type="html">frame-0000000930</media:title>
		</media:content>
	</item>
		<item>
		<title>Colorado: interactive raytraced unlimited geometry</title>
		<link>http://albertoven.com/2011/09/08/colorado-interactive-raytraced-unlimited-geometry/</link>
		<comments>http://albertoven.com/2011/09/08/colorado-interactive-raytraced-unlimited-geometry/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 13:21:53 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Colorado]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Euclideon]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1323</guid>
		<description><![CDATA[Mathematical operation sequences had been described for a ray to be realtime checked against all sort of geometries, basic (spheres, polyhedron, cylinders, torus&#8230;) and complex (clouds, classical fractals, trees&#8230;). The use of procedurally generated recursively inscribed bounding volumes offers a great creative canvas to improve along this line. The following is a realtime raytraced demo [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1323&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Mathematical operation sequences had been described for a ray to be realtime checked against all sort of geometries, basic (spheres, polyhedron, cylinders, torus&#8230;) and complex (clouds, classical fractals, trees&#8230;). The use of procedurally generated recursively inscribed bounding volumes offers a great creative canvas to improve along this line. The following is a realtime raytraced demo of a mountain landscape composed of slightly more than 17 trillion truncated triangular prisms (specifically 17.592.186.044.416). Also, truncated irregular triangular prisms are used as bounding volumes. There&#8217;s currently no LOD mechanism in place, every geometry is considered each frame. The 3D procedural texture is combination of 2D and 1D fractal turbulence splines mapped to a suitable color palette and has no LOD control. The demo runs on Raydiant, a general purpose light tracer not particularly optimized for real time. The default Colorado demo quality is preview and you can take high quality radiosity snapshots at any time that, depending on resolution, can last anything from 5 minutes to several hours (so start trying it at low resolution). Camera is controlled with the keyboard. This binary executable is for Linux and uses a Qt 4.6.2 GUI. Because those 17 trillion prisms exist as a potentiality defined by an algorithm they use no RAM. That&#8217;s a good thing because to store all prisms around 1 petabyte of RAM would be required. Colorado runs entirely on CPU, so you are strongly advised to execute it on a powerful multicore processor with 4 or more kernels. Raydiant performance grows linearly with kernel count. The binary has been tested on Ubuntu 10.04. The GUI provides you with help about the camera movement and means to change resolution. As the GUI is still at alpha stage mess with it at your own risk. More info about Raydiant is available at previous posts at this blog and at <a href="http://ompf.org/forum/viewtopic.php?f=6&amp;t=1877" target="_blank">ompf</a>. To get personalized renders from the engine <a href="http://cutemosaic.com" target="_blank">this</a> online service is available. Note that Colorado is different from what Euclideon is doing. Colorado is a raytracer and could have used *any* combination of geometry types: spheres, cylinders, torus, triangles, polyhedrons, polygons, bit matrix, washers, quadrics, points&#8230;<br />
I found it difficult to grasp the meaning of elevated quantities like 17 trillion, to help me see what it amounts to this zooming sequence with a factor of approximately x4 million has been developed:</p>
<a href="http://albertoven.com/2011/09/08/colorado-interactive-raytraced-unlimited-geometry/#gallery-1323-1-slideshow">Click to view slideshow.</a>
<p>Download Colorado <a title="Colorado demo" href="http://www.box.net/shared/rkkteo1yvho2xcxmbytp" target="_blank">here</a>, execute Colorado.sh and please mind <a href="http://albertordmr.files.wordpress.com/2011/09/colorado-engine-launch2.png" target="_blank">this</a> instructions. How to select the <a href="http://albertordmr.files.wordpress.com/2011/09/colorado-engine-antialiassing1.png" target="_blank">antialiassing level</a>. How to make<a href="http://albertordmr.files.wordpress.com/2011/09/colorado-engine-high-quality-shoot-a1.png" target="_blank"> radiosity snapshots</a>.</p>
<p>Should circumstances allow it (meaning time is available) I intend to release a very simple concept game taking place on a large scenario, may be with real time completely dynamic radiosity over unlimited light sources.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1323&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/09/08/colorado-interactive-raytraced-unlimited-geometry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>
	</item>
		<item>
		<title>Golden slabs, glitter and silhouettes</title>
		<link>http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/</link>
		<comments>http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 19:41:58 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1302</guid>
		<description><![CDATA[These mosaics have been made using some filter trickery, isosurfaces, height fields, procedural 3D manipulation and lastly rendered with the Raydiant engine. Try it with your own photos at cutemosaic.com.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1302&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>These mosaics have been made using some filter trickery, isosurfaces, height fields, procedural 3D manipulation and lastly rendered with the Raydiant engine. Try it with your own photos at <a title="Cutemosaic" href="http://cutemosaic.com" target="_blank">cutemosaic.com</a>.</p>

<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/5999214574_89511fed65_o/' title='5999214574_89511fed65_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1309" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/5999214574_89511fed65_o.jpg" data-orig-size="792,1264" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="5999214574_89511fed65_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/5999214574_89511fed65_o.jpg?w=187" data-large-file="http://albertordmr.files.wordpress.com/2011/08/5999214574_89511fed65_o.jpg?w=550" width="93" height="150" src="http://albertordmr.files.wordpress.com/2011/08/5999214574_89511fed65_o.jpg?w=93&#038;h=150" class="attachment-thumbnail" alt="5999214574_89511fed65_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6042078952_1098801577_o/' title='6042078952_1098801577_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1311" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6042078952_1098801577_o.jpg" data-orig-size="1220,820" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6042078952_1098801577_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6042078952_1098801577_o.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6042078952_1098801577_o.jpg?w=550" width="150" height="100" src="http://albertordmr.files.wordpress.com/2011/08/6042078952_1098801577_o.jpg?w=150&#038;h=100" class="attachment-thumbnail" alt="6042078952_1098801577_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6045640602_e7733ec4e5_o/' title='6045640602_e7733ec4e5_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1312" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6045640602_e7733ec4e5_o.jpg" data-orig-size="867,1155" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6045640602_e7733ec4e5_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6045640602_e7733ec4e5_o.jpg?w=225" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6045640602_e7733ec4e5_o.jpg?w=550" width="112" height="150" src="http://albertordmr.files.wordpress.com/2011/08/6045640602_e7733ec4e5_o.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="6045640602_e7733ec4e5_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6046689228_4752e498fa_o/' title='6046689228_4752e498fa_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1313" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6046689228_4752e498fa_o.jpg" data-orig-size="1156,866" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6046689228_4752e498fa_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6046689228_4752e498fa_o.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6046689228_4752e498fa_o.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/6046689228_4752e498fa_o.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="6046689228_4752e498fa_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6048572827_5e551e8c87_b/' title='6048572827_5e551e8c87_b'><img data-liked='0' data-reblogged='0' data-attachment-id="1314" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6048572827_5e551e8c87_b.jpg" data-orig-size="1024,767" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6048572827_5e551e8c87_b" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6048572827_5e551e8c87_b.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6048572827_5e551e8c87_b.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/6048572827_5e551e8c87_b.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="6048572827_5e551e8c87_b" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6049009654_a09d670f7e_o/' title='6049009654_a09d670f7e_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1315" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6049009654_a09d670f7e_o.jpg" data-orig-size="1194,839" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6049009654_a09d670f7e_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6049009654_a09d670f7e_o.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6049009654_a09d670f7e_o.jpg?w=550" width="150" height="105" src="http://albertordmr.files.wordpress.com/2011/08/6049009654_a09d670f7e_o.jpg?w=150&#038;h=105" class="attachment-thumbnail" alt="6049009654_a09d670f7e_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6052022877_33ba464713_o/' title='6052022877_33ba464713_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1310" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6052022877_33ba464713_o.jpg" data-orig-size="1155,867" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6052022877_33ba464713_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6052022877_33ba464713_o.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6052022877_33ba464713_o.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/6052022877_33ba464713_o.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="6052022877_33ba464713_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6052145185_152e9c51bf_o/' title='6052145185_152e9c51bf_o'><img data-liked='0' data-reblogged='0' data-attachment-id="1316" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6052145185_152e9c51bf_o.jpg" data-orig-size="1155,867" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6052145185_152e9c51bf_o" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6052145185_152e9c51bf_o.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6052145185_152e9c51bf_o.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/6052145185_152e9c51bf_o.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="6052145185_152e9c51bf_o" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/6055566984_74242f508b_b/' title='6055566984_74242f508b_b'><img data-liked='0' data-reblogged='0' data-attachment-id="1317" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/6055566984_74242f508b_b.jpg" data-orig-size="789,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="6055566984_74242f508b_b" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/6055566984_74242f508b_b.jpg?w=231" data-large-file="http://albertordmr.files.wordpress.com/2011/08/6055566984_74242f508b_b.jpg?w=550" width="115" height="150" src="http://albertordmr.files.wordpress.com/2011/08/6055566984_74242f508b_b.jpg?w=115&#038;h=150" class="attachment-thumbnail" alt="6055566984_74242f508b_b" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/020b01/' title='Diamond silhouette'><img data-liked='0' data-reblogged='0' data-attachment-id="1303" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/020b01.jpg" data-orig-size="1024,768" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Diamond silhouette" data-image-description="&lt;p&gt;Try it with your own photo at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/020b01.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/020b01.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/020b01.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Diamond silhouette" /></a>
<a href='http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/203c01-2/' title='Golden slab'><img data-liked='0' data-reblogged='0' data-attachment-id="1305" data-orig-file="http://albertordmr.files.wordpress.com/2011/08/203c011.jpg" data-orig-size="1024,768" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Golden slab" data-image-description="&lt;p&gt;Try it with your own photo at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/08/203c011.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/08/203c011.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/08/203c011.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Golden slab" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1302&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/08/18/golden-slabs-glitter-and-silhouettes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/5999214574_89511fed65_o.jpg?w=93" medium="image">
			<media:title type="html">5999214574_89511fed65_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6042078952_1098801577_o.jpg?w=150" medium="image">
			<media:title type="html">6042078952_1098801577_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6045640602_e7733ec4e5_o.jpg?w=112" medium="image">
			<media:title type="html">6045640602_e7733ec4e5_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6046689228_4752e498fa_o.jpg?w=150" medium="image">
			<media:title type="html">6046689228_4752e498fa_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6048572827_5e551e8c87_b.jpg?w=150" medium="image">
			<media:title type="html">6048572827_5e551e8c87_b</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6049009654_a09d670f7e_o.jpg?w=150" medium="image">
			<media:title type="html">6049009654_a09d670f7e_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6052022877_33ba464713_o.jpg?w=150" medium="image">
			<media:title type="html">6052022877_33ba464713_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6052145185_152e9c51bf_o.jpg?w=150" medium="image">
			<media:title type="html">6052145185_152e9c51bf_o</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/08/6055566984_74242f508b_b.jpg?w=115" medium="image">
			<media:title type="html">6055566984_74242f508b_b</media:title>
		</media:content>
	</item>
		<item>
		<title>Cute mosaic grows</title>
		<link>http://albertoven.com/2011/04/20/cute-mosaic-growing/</link>
		<comments>http://albertoven.com/2011/04/20/cute-mosaic-growing/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 17:01:40 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1289</guid>
		<description><![CDATA[Thank you all for the support. Cute mosaic is getting popular and it seems many people want to get creative making mosaics from their photos. We have several interesting suggestions to improve the web (like making mosaics out of buttons, integration with PayPal, more materials&#8230;) that are being implemented right now. In the mean time [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1289&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Thank you all for the support. <a title="Cute mosaic" href="http://cutemosaic.com" target="_blank">Cute mosaic</a> is getting popular and it seems many people want to get creative making mosaics from their photos. We have several interesting suggestions to improve the web (like making mosaics out of buttons, integration with PayPal, more materials&#8230;) that are being implemented right now. In the mean time here are some articles about the web and 3D engine:</p>
<p><a title="Cute mosaic at wwwhatsnew.com" href="http://wwwhatsnew.com/2011/04/20/cutemosaic-aplicacion-para-crear-mosaicos-con-nuestras-fotos-personales" target="_blank">wwwhatsnew.com</a></p>
<p><a title="Cute mosaic at crunchbase" href="http://www.crunchbase.com/company/crackelure" target="_blank">www.crunchbase.com</a></p>
<p><a title="Cute mosaic 3D engine" href="http://ompf.org/forum/viewtopic.php?f=6&amp;t=1877" target="_blank">ompf.org</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1289&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/04/20/cute-mosaic-growing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>
	</item>
		<item>
		<title>Make a 3D radiosity rendered mosaic and win an iPod</title>
		<link>http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/</link>
		<comments>http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 10:39:14 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[cutemosaic]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1267</guid>
		<description><![CDATA[At cutemosaic.com we have a brand new bunch of mosaic types, better and prettier than the previous ones. To celebrate we are making a contest. So if you are creative just go to cutemosaic.com, make a mosaic for free, upload it to facebook and wait for the people to vote. If you win an iPod [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1267&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>At <a title="Cutemosaic" href="http://cutemosaic.com" target="_blank">cutemosaic.com</a> we have a brand new bunch of mosaic types, better and prettier than the previous ones. To celebrate we are making a <a title="Cutemosaic contest" href="http://www.facebook.com/pages/cutemosaiccom/196454397032220?v=app_79458893817" target="_blank">contest</a>. So if you are creative just go to cutemosaic.com, make a mosaic for free, upload it to <a title="Cutemosaic contest" href="http://www.facebook.com/pages/cutemosaiccom/196454397032220?v=app_79458893817" target="_blank">facebook</a> and wait for the people to vote. If you win an iPod will be yours!. Here are some of the new mosaics:</p>

<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/011201/' title='011201'><img data-liked='0' data-reblogged='0' data-attachment-id="1269" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/011201.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="011201" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/011201.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/011201.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/011201.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="011201" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/011601/' title='011601'><img data-liked='0' data-reblogged='0' data-attachment-id="1270" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/011601.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="011601" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/011601.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/011601.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/011601.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="011601" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/012001/' title='012001'><img data-liked='0' data-reblogged='0' data-attachment-id="1274" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/012001.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="012001" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/012001.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/012001.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/012001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="012001" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/013501/' title='013501'><img data-liked='0' data-reblogged='0' data-attachment-id="1271" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/013501.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="013501" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/013501.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/013501.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/013501.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="013501" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/113001-2/' title='113001'><img data-liked='0' data-reblogged='0' data-attachment-id="1276" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/1130011.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="113001" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/1130011.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/1130011.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/1130011.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="113001" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/113101/' title='113101'><img data-liked='0' data-reblogged='0' data-attachment-id="1275" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/113101.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="113101" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/113101.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/113101.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/113101.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="113101" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/113301/' title='113301'><img data-liked='0' data-reblogged='0' data-attachment-id="1283" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/113301.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="113301" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/113301.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/113301.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/113301.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="113301" /></a>
<a href='http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/attachment/120501/' title='120501'><img data-liked='0' data-reblogged='0' data-attachment-id="1278" data-orig-file="http://albertordmr.files.wordpress.com/2011/03/120501.jpg" data-orig-size="744,558" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="120501" data-image-description="" data-medium-file="http://albertordmr.files.wordpress.com/2011/03/120501.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/03/120501.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/03/120501.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="120501" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1267/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1267/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1267&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/03/26/make-a-3d-radiosity-rendered-mosaic-and-win-an-ipod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/011201.jpg?w=150" medium="image">
			<media:title type="html">011201</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/011601.jpg?w=150" medium="image">
			<media:title type="html">011601</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/012001.jpg?w=150" medium="image">
			<media:title type="html">012001</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/013501.jpg?w=150" medium="image">
			<media:title type="html">013501</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/1130011.jpg?w=150" medium="image">
			<media:title type="html">113001</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/113101.jpg?w=150" medium="image">
			<media:title type="html">113101</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/113301.jpg?w=150" medium="image">
			<media:title type="html">113301</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2011/03/120501.jpg?w=150" medium="image">
			<media:title type="html">120501</media:title>
		</media:content>
	</item>
		<item>
		<title>Mosaics mosaics mosaics</title>
		<link>http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/</link>
		<comments>http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 17:36:18 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1250</guid>
		<description><![CDATA[After some fine tuning, the mosaics produced by the Raydiant engine at http://cutemosaic.com are now showing for what they are: full radiosity 3D renders. Try any of this images at full resolution and see for yourself. And remember to do it with your photos for free at cutemosaic.com. Also there is a new improved web [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1250&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After some fine tuning, the mosaics produced by the Raydiant engine at <a title="cutemosaic.com" href="http://cutemosaic.com"><br />
http://cutemosaic.com<br />
</a> are now showing for what they are: full radiosity 3D renders. Try any of this images at full resolution and see for yourself. And remember to do it with your photos for free at <a href="http://cutemosaic.com">cutemosaic.com</a>. Also there is a new improved web interface.</p>

<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/claramosaico6/' title='Clara mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1252" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/claramosaico6.jpg" data-orig-size="2829,2122" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Clara mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/claramosaico6.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/claramosaico6.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/claramosaico6.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Clara mosaic" /></a>
<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/puente/' title='Chinese bridge mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1255" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/puente.jpg" data-orig-size="2000,1500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Chinese bridge mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/puente.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/puente.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/puente.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Chinese bridge mosaic" /></a>
<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/palmera/' title='Palm tree mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1254" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/palmera.jpg" data-orig-size="2000,1500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Palm tree mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/palmera.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/palmera.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/palmera.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Palm tree mosaic" /></a>
<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/macao/' title='Macao mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1253" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/macao.jpg" data-orig-size="2000,1500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Macao mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/macao.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/macao.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/macao.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Macao mosaic" /></a>
<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/buda/' title='Buda mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1251" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/buda.jpg" data-orig-size="1024,768" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Buda mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/buda.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/buda.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/buda.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Buda mosaic" /></a>
<a href='http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/camino_palmeras/' title='Palm tree way mosaic'><img data-liked='0' data-reblogged='0' data-attachment-id="1257" data-orig-file="http://albertordmr.files.wordpress.com/2011/02/camino_palmeras.jpg" data-orig-size="2000,1500" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Palm tree way mosaic" data-image-description="&lt;p&gt;Do this for free to your photos at http://cutemosaic.com&lt;/p&gt;
" data-medium-file="http://albertordmr.files.wordpress.com/2011/02/camino_palmeras.jpg?w=300" data-large-file="http://albertordmr.files.wordpress.com/2011/02/camino_palmeras.jpg?w=550" width="150" height="112" src="http://albertordmr.files.wordpress.com/2011/02/camino_palmeras.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Palm tree way mosaic" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1250&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/02/21/mosaics-mosaics-mosaics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>
	</item>
		<item>
		<title>Cute mosaic for you</title>
		<link>http://albertoven.com/2011/01/29/cute-mosaic-for-you/</link>
		<comments>http://albertoven.com/2011/01/29/cute-mosaic-for-you/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 17:55:57 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[mosaic]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1235</guid>
		<description><![CDATA[After some time at last a public server is ready to attend petitions for personalized mosaics rendered with Raydiant engine. There are almost 300 different configurations to choose from. The resulting mosaic can have up to 24 megapixels. No need to register, just configure your mosaic (the finnish method &#8216;Realistic&#8217; is a full-fledge-no-tricks radiosity render [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1235&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After some time at last a public server is ready to attend petitions for personalized mosaics rendered with Raydiant engine. There are almost 300 different configurations to choose from. The resulting mosaic can have up to 24 megapixels. No need to register, just configure your mosaic (the finnish method &#8216;Realistic&#8217; is a full-fledge-no-tricks radiosity render of the composed mosaic), upload your photo and specify the mail where you want to receive the finished mosaic. Your feedback is most welcome. The web in question is <a href="http://cutemosaic.com" target="_blank">cutemosaic.com</a>. Let me know if you find it fun!</p>
<p style="text-align:center;"><img class="alignnone" title="Taj -mahal" src="http://cutemosaic.com/targetImage/taj_mahal/fullScreen/010101.jpg" alt="" width="1024" height="768" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1235&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2011/01/29/cute-mosaic-for-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://cutemosaic.com/targetImage/taj_mahal/fullScreen/010101.jpg" medium="image">
			<media:title type="html">Taj -mahal</media:title>
		</media:content>
	</item>
		<item>
		<title>matArte</title>
		<link>http://albertoven.com/2010/09/26/matarte/</link>
		<comments>http://albertoven.com/2010/09/26/matarte/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 17:02:52 +0000</pubDate>
		<dc:creator>albertordmr</dc:creator>
				<category><![CDATA[Computer path]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[procedural]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[pseudorandom]]></category>
		<category><![CDATA[radiosity]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[ray tracing]]></category>
		<category><![CDATA[raydiant]]></category>
		<category><![CDATA[raytracing]]></category>
		<category><![CDATA[realtime]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://albertoven.com/?p=1222</guid>
		<description><![CDATA[Next Thursday begins matArte exhibit. It is hosted by &#8216;Cafe de la prensa&#8217; at Seville, c/Betis 8. Features 13 synthetic images obtained through maths and patience. Below is the official poster, also rendered with the Raydiant engine. I&#8217;ll be there October the second from 6:00 PM. It&#8217;s exciting to have this opportunity to share visual [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1222&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Next Thursday begins matArte exhibit. It is hosted by &#8216;Cafe de la prensa&#8217; at Seville, c/Betis 8. Features 13 synthetic images obtained through maths and patience. Below is the official poster, also rendered with the Raydiant engine. I&#8217;ll be there October the second from 6:00 PM. It&#8217;s exciting to have this opportunity to share visual maths though computer power. Perhaps those who know numbers are beautiful will enjoy it and those who still don&#8217;t could shift their belief.</p>
<p><a href="http://albertordmr.files.wordpress.com/2010/09/matarte_banner_800x1067.png"><img class="alignnone size-full wp-image-1223" title="matarte_banner_800x1067" src="http://albertordmr.files.wordpress.com/2010/09/matarte_banner_800x1067.png?w=550&#038;h=733" alt="" width="550" height="733" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/albertordmr.wordpress.com/1222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/albertordmr.wordpress.com/1222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=albertoven.com&#038;blog=10066377&#038;post=1222&#038;subd=albertordmr&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://albertoven.com/2010/09/26/matarte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c0ce3fd8c1691bb79e70bb7efd76a82e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">albertordmr</media:title>
		</media:content>

		<media:content url="http://albertordmr.files.wordpress.com/2010/09/matarte_banner_800x1067.png" medium="image">
			<media:title type="html">matarte_banner_800x1067</media:title>
		</media:content>
	</item>
	</channel>
</rss>