<?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>Barcinski &#38; Jeanjean &#187; Anaglyph</title>
	<atom:link href="http://barcinskijeanjean.wordpress.com/category/anaglyph/feed/" rel="self" type="application/rss+xml" />
	<link>http://barcinskijeanjean.wordpress.com</link>
	<description>Flash 'n stuff</description>
	<lastBuildDate>Wed, 07 Mar 2012 15:04:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='barcinskijeanjean.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Barcinski &#38; Jeanjean &#187; Anaglyph</title>
		<link>http://barcinskijeanjean.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://barcinskijeanjean.wordpress.com/osd.xml" title="Barcinski &#38; Jeanjean" />
	<atom:link rel='hub' href='http://barcinskijeanjean.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Making of Part III &#8211; Anaglyph</title>
		<link>http://barcinskijeanjean.wordpress.com/2008/10/17/making-of-part-iii-anaglyph/</link>
		<comments>http://barcinskijeanjean.wordpress.com/2008/10/17/making-of-part-iii-anaglyph/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 11:45:02 +0000</pubDate>
		<dc:creator>Adrien Jeanjean</dc:creator>
				<category><![CDATA[Anaglyph]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://barcinskijeanjean.wordpress.com/?p=143</guid>
		<description><![CDATA[In the previous article we talked about how we shot our footage in stereo. Now we are going to talk about how to render those stereo images for 3D glasses. And how to render Papervision3D for 3D glasses. There are many techniques for displaying stereoscopic 3D images. We opted for Anaglyph, the one you need [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=143&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.barcinski-jeanjean.com/2008/10/17/making-of-part-iii-anaglyph/"><img src="http://barcinskijeanjean.files.wordpress.com/2008/10/anaglyph.gif?w=450&h=104" alt="" title="Anaglyph" width="450" height="104" class="alignnone size-full wp-image-151" /></a></p>
<p>In the previous article we talked about how we shot our footage in stereo. Now we are going to talk about how to render those stereo images for 3D glasses. And how to render Papervision3D for 3D glasses.</p>
<p><span id="more-143"></span>There are <a href="http://en.wikipedia.org/wiki/Stereo_photography" target="_blank">many techniques</a> for displaying stereoscopic 3D images. We opted for <a href="http://en.wikipedia.org/wiki/Anaglyph_image" target="_blank">Anaglyph</a>, the one you need the red/cyan glasses to view, since those are the glasses people are most likely to have laying around somewhere. Also these are the least expensive glasses of the lot and that mattered since we were also going to do a mailing of Barcinski &amp; Jeanjean 3D glasses.</p>
<p><img src="http://barcinskijeanjean.files.wordpress.com/2008/10/glasses.jpg?w=450&h=300" alt="" title="Anaglyph Glasses" width="450" height="300" class="alignnone size-full wp-image-144" /></p>
<p>In short, an anaglyph image is obtained by taking the red color channel from the left camera and combining it with the blue &amp; green color channels from the right camera. The drawback of this technique however, is the loss of color information, mostly affecting the red color component. So that was an issue we had to take into account as to what colors we would use in the website. Black doesn’t suffer in any way by anaglyph, so that kind of pushed us towards a basic graphic black &amp; white design for the intro and menu cube.</p>
<p>On to rendering Papervision3D in anaglyph! For our website we have created an AnaglyphView class which offers anaglyph renedering in Papervision3D with the ease of use of the BasicView class. Click on the image below to view the demo. Toggle anaglyph rendering on and off by clicking on the Stage.</p>
<p><a href="http://www.barcinski-jeanjean.com/entries/anaglyphview/" target="_blank"><img src="http://barcinskijeanjean.files.wordpress.com/2008/10/anaglyphview.gif?w=450&h=307" alt="" title="anaglyphview" width="450" height="307" class="alignnone size-full wp-image-145" /></a></p>
<p>The AnaglyphView has one camera and two viewports. For each frame it moves the camera to the left, renders the camera projection to the left viewport, then moves the camera to the right, renders the camera projection to the right viewport and finally moves the camera back to it’s initial position. This way you still have complete freedom of camera movement in between the renders. Best is to use a Target Camera and move the target object to the focus point, creating the same mechanics as our eyes when focusing. </p>
<p>The left and right viewports are combined using ColorTransforms and BlendModes. While this offers a fast way of combining the two channels to an anaglyph image it is important to note that the viewports will not render correctly when not completely opaque. That’s why the AnaglyphView uses extended Viewport3D classes that make sure the viewports have a background filled with the supplied background color. </p>
<p>To combine 2D stereo images with 3D stereo rendering you need to attach the 2D stereo images to their respective viewports. That’s what we did in our website. The left panorama video is added to the DisplayList of the left viewport and the right video to the DisplayList of the right viewport.</p>
<p>Needless to say stereo rendering in Papervision3D can be very heavy. Your aim would be to keep the scene as simple is possible and limit the redraw regions as much as possible. We’ll be going into some optimization tricks in our article covering the Papervision3D side of our website.</p>
<p>Feel free to <a href="http://www.barcinski-jeanjean.com/entries/anaglyphview/AnaglyphView.zip">download</a> the AnaglyphView class and start playing with it. The example above is also included in the package.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/barcinskijeanjean.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/barcinskijeanjean.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/barcinskijeanjean.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=143&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://barcinskijeanjean.wordpress.com/2008/10/17/making-of-part-iii-anaglyph/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c5f659a75a84a19005f22c0ccc2133e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Adrien Jeanjean</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/anaglyph.gif" medium="image">
			<media:title type="html">Anaglyph</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/glasses.jpg" medium="image">
			<media:title type="html">Anaglyph Glasses</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/anaglyphview.gif" medium="image">
			<media:title type="html">anaglyphview</media:title>
		</media:content>
	</item>
		<item>
		<title>Making of Part II &#8211; Stereo Photography</title>
		<link>http://barcinskijeanjean.wordpress.com/2008/10/14/making-of-part-ii-stereo-photography/</link>
		<comments>http://barcinskijeanjean.wordpress.com/2008/10/14/making-of-part-ii-stereo-photography/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 11:35:21 +0000</pubDate>
		<dc:creator>Adrien Jeanjean</dc:creator>
				<category><![CDATA[Anaglyph]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://barcinskijeanjean.wordpress.com/?p=101</guid>
		<description><![CDATA[Finally, with some delay, we continue with our series of articles about the making of our website. One of the objectives of the panorama scene was to capture as much information as possible. So besides capturing the scene itself we captured the motion of the subjects in the scene by creating a stop motion panorama. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=101&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.barcinski-jeanjean.com/2008/10/14/making-of-part-ii-stereo-photography/"><img src="http://barcinskijeanjean.files.wordpress.com/2008/10/photography1.jpg?w=450&h=104" alt="" title="Stereo Photography" width="450" height="104" border="0" class="alignnone size-full wp-image-113" /></a></p>
<p>Finally, with some delay, we continue with our series of articles about the making of <a href="http://www.barcinski-jeanjean.com">our website</a>.</p>
<p><span id="more-101"></span>One of the objectives of the panorama scene was to capture as much information as possible. So besides capturing the scene itself we captured the motion of the subjects in the scene by creating a stop motion panorama. By shooting in stereo (with two camera’s instead of one) we also captured the depth in the scene.</p>
<div id="attachment_108" class="wp-caption aligncenter" style="width: 435px"><img class="size-full wp-image-108" title="3D lens in a cap" src="http://barcinskijeanjean.files.wordpress.com/2008/10/lens.jpg?w=425" alt="Package with Loreo 3D Lens In A Cap in it" width="425" height="177" /><p class="wp-caption-text">Package with Loreo 3D Lens In A Cap in it</p></div>
<p>I started experimenting with stereo photography in December last year when I first bought a <a href="http://www.loreo.com/pages/products/loreo_3dcap.html">3D lens in a cap</a> from <a href="http://www.loreo.com">Loreo</a>. A Hong Kong based company that manufactures some unusual photo accessories. This lens was great fun experimenting with, but has some serious drawbacks by design. First off it’s fairly cheap, so the quality of the lens is quite low. Secondly you can only shoot in portrait mode with a very small field of view.</p>
<div id="attachment_109" class="wp-caption aligncenter" style="width: 435px"><a href="http://barcinskijeanjean.files.wordpress.com/2008/10/loreo.jpg"><img class="size-medium wp-image-109" title="loreo" src="http://barcinskijeanjean.files.wordpress.com/2008/10/loreo.jpg?w=425&h=283" alt="Picture taken with the Loreo 3D-lens-in-a-cap" width="425" height="283" /></a><p class="wp-caption-text">Picture taken with the Loreo 3D-lens-in-a-cap</p></div>
<p>A far better way of capturing stereo imagery is by using two identical camera’s outfitted with identical lenses. That’s the solution we opted for. Mark owned a Canon 350D and I was already wanting to buy an DSLR for a long time, so decided to buy the same. So maybe it wasn’t the latest DSLR technology available but since this model had already been replaced with a newer one it was actually a bargain.</p>
<p>The two cameras were mounted on a tripod with an adjustable distance bar, allowing to slide the camera’s closer or further apart from each other depending on the desired effect. We synchronized the two shutters by using two sets of RF remote controls dialed in on the same channel. That way we could fire the two shutters simultaneously with one remote control.</p>
<p>For ease of production we decided to shoot us and the panorama separately. The Amsterdam panorama shoot presented quite a few challenges. Since we wanted a very dynamic scene with lots of movement we had to do the shoot during a busy time of the day. Add to that the fact that we had to stand in the middle of the bridge, forcing cars and vans to drive past our tripod with just a few inches of clearance and you’re starting to get an idea of the difficulty of the task. See, since we were going to add us in the scene later on we had to make sure no objects or people would appear at the spot we’re supposed to stand, forcing us to wait for an object to clear that area before continuing our circle. But at the same time we needed to keep a constant interval between the 144 frames to avoid people and moving objects to suddenly warp ahead in time.</p>
<p>The second shoot of us was way less stressing. We had purchased a green screen fabric from <a href="http://www.eefx.com/">EEFX</a> a few months before and asked photographers Géraldine Jeanjean &amp; Ringel Goslinga to help us out with the lighting. Instead of moving the camera’s around us, requiring a green room rather then just a green screen, it is actually us that are rotating by 2.5° for each frame. Notice the printed circle on the floor which we used as reference to position our feet.</p>
<p><img class="alignnone size-full wp-image-102" title="Photo shoot" src="http://barcinskijeanjean.files.wordpress.com/2008/10/us_shoot.jpg?w=450&h=337" alt="" width="450" height="337" /></p>
<p>At this point I would like to point out that we had no budget to produce this website and therefore chose for the DIY approach and took a lot of shortcuts. If we were to do this with sufficient budget the end result could be really polished and consistent throughout. Yes, for the ones that noticed; correct camera perspective, consistent lighting etc.</p>
<p>Also, stereo photography is way more complicated then it initially looks. There are quite a few things to take into account, some of them we have omitted. However, the intention is to produce new panorama’s for the website in the future, so we’ll have some more opportunities to improve our stereo photography.</p>
<p>Next post I’ll write about what to do with those stereo images. How do you turn them into images that can be viewed with those fancy retro 3D glasses? And we&#8217;ll be sharing some code on how to render Papervision3D in anaglyph.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/barcinskijeanjean.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/barcinskijeanjean.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/barcinskijeanjean.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=101&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://barcinskijeanjean.wordpress.com/2008/10/14/making-of-part-ii-stereo-photography/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c5f659a75a84a19005f22c0ccc2133e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Adrien Jeanjean</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/photography1.jpg" medium="image">
			<media:title type="html">Stereo Photography</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/lens.jpg?w=425" medium="image">
			<media:title type="html">3D lens in a cap</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/loreo.jpg?w=425" medium="image">
			<media:title type="html">loreo</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/10/us_shoot.jpg" medium="image">
			<media:title type="html">Photo shoot</media:title>
		</media:content>
	</item>
		<item>
		<title>New Barcinski &amp; Jeanjean Website</title>
		<link>http://barcinskijeanjean.wordpress.com/2008/09/06/new-barcinski-jeanjean-website/</link>
		<comments>http://barcinskijeanjean.wordpress.com/2008/09/06/new-barcinski-jeanjean-website/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 20:12:20 +0000</pubDate>
		<dc:creator>Adrien Jeanjean</dc:creator>
				<category><![CDATA[Anaglyph]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[Vectorvision]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://barcinskijeanjean.wordpress.com/?p=80</guid>
		<description><![CDATA[Well, here it is. After 3 months of hard work fun our “Coming Soon” page has finally been replaced by a brand new website. The coming weeks we will be posting a series of “Making of” articles about our use of Papervision3D, Vectorvision, 3D Physics, Photography and more. Today a few lines on the general [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=80&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.barcinski-jeanjean.com"><img class="size-full wp-image-82" title="Barcinski &amp; Jeanjean" src="http://barcinskijeanjean.files.wordpress.com/2008/09/bnj.jpg?w=450&h=104" alt="Barcinski &amp; Jeanjean" width="450" height="104" /></a></p>
<p><span>Well, here it is. After 3 months of </span><span><span style="text-decoration:line-through;">hard work</span></span><span> fun our “Coming Soon” page has finally been replaced by a brand new website. The coming weeks we will be posting a series of “Making of” articles about our use of Papervision3D, Vectorvision, 3D Physics, Photography and more. Today a few lines on the general concept of the website. </span></p>
<p><span><span id="more-80"></span>The vision for the panorama view came to us in november last year while we were brainstorming on another project (the one for which we prototyped a <a href="http://blog.barcinski-jeanjean.com/2007/12/17/animated-panorama/" target="_blank">spherical video panorama</a>). We would stand in one of Amsterdam’s many beautiful scenes with everybody around us walking by going about their business. Around us our portfolio work would be hanging in the air in the form of paper flyers. Envisioning viewing that with 3D glasses being able to move around us, filled us with excitement. We are already familiar with viewing photo’s and movies with 3D glasses, but I can’t really say I had had an interactive experience using 3D glasses before. </span></p>
<p><span>By creating a 360º panorama from a stop motion video rather than from multiple stills stitched together, allowed us to capture the movement of the subjects in the scene. The price to pay however was much bigger file size. To make up for the wait while the video content preloads before being granted access to the panorama view we thought it would be cool to revamp the traditional Pong waiting game into a solitary 3D version that could also benefit from viewing with 3D glasses.</span></p>
<p><span>But the added file size was worth it. When we first reached the point in development that we had a placeholder 360º video panorama overlaid with a badly keyed-out test shoot of us taken in from of a purple screen (yes, we hadn’t ordered the green screen yet), that we realized just how interesting it actually is to gently turn the 360º and observe the many people, boats and occasional “motor agent”, as they call them here in Holland, pass by.</span></p>
<p><span>The location was almost an automatic choice. Besides the fact that it’s beautiful, it’s right around the corner from our studio. But this is mearly the first panorama to feature on the site. As it’s simply a question of modifying some XML to change the panorama in the website, and, well, shooting the new footage of course, we plan on adding new panoramas to the site in the future, probably starting with a new shoot this fall.</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/barcinskijeanjean.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/barcinskijeanjean.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/barcinskijeanjean.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/barcinskijeanjean.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/barcinskijeanjean.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=80&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://barcinskijeanjean.wordpress.com/2008/09/06/new-barcinski-jeanjean-website/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c5f659a75a84a19005f22c0ccc2133e6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Adrien Jeanjean</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/09/bnj.jpg" medium="image">
			<media:title type="html">Barcinski &#38; Jeanjean</media:title>
		</media:content>
	</item>
		<item>
		<title>Barcinski &amp; Jeanjean Website Coming Soon</title>
		<link>http://barcinskijeanjean.wordpress.com/2008/04/20/barcinski-jeanjean-website-coming-soon/</link>
		<comments>http://barcinskijeanjean.wordpress.com/2008/04/20/barcinski-jeanjean-website-coming-soon/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 15:39:19 +0000</pubDate>
		<dc:creator>Barcinski &#38; Jeanjean</dc:creator>
				<category><![CDATA[Anaglyph]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Papervision3D]]></category>
		<category><![CDATA[Vectorvision]]></category>

		<guid isPermaLink="false">http://barcinskijeanjean.wordpress.com/?p=61</guid>
		<description><![CDATA[We are currently working on our own website, which is a lot of fun. Since the website still needs a lot of work we made a little Coming Soon page which gives some hints of what the website is going to contain. If you have some 3D glasses laying around you are in for a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=61&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:'Trebuchet MS';font-size:12px;line-height:16px;"><a href="http://www.barcinski-jeanjean.com/entries/comingsoon/index.html" target="_blank"><img class="alignnone size-full wp-image-64" src="http://barcinskijeanjean.files.wordpress.com/2008/04/comingsoon1.jpg?w=450" alt="Website Coming Soon" /></a></span></p>
<p>We are currently working on our own website, which is a lot of fun. Since the website still needs a lot of work we made a little Coming Soon page which gives some hints of what the website is going to contain. If you have some 3D glasses laying around you are in for a little Anaglyph treat. The 3D fonts are also quite special. These are Vector fonts rendered in the Papervision3D engine. More about vectors in Papervision3D coming in a later post. Meanwhile, check <a href="http://www.barcinski-jeanjean.com/entries/comingsoon/index.html" target="_blank">this</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/barcinskijeanjean.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/barcinskijeanjean.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/barcinskijeanjean.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/barcinskijeanjean.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/barcinskijeanjean.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barcinskijeanjean.wordpress.com&#038;blog=2094129&#038;post=61&#038;subd=barcinskijeanjean&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://barcinskijeanjean.wordpress.com/2008/04/20/barcinski-jeanjean-website-coming-soon/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/88dc6a0700c62bf70cdfea7f66a7cccb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Barcinski &#38; Jeanjean</media:title>
		</media:content>

		<media:content url="http://barcinskijeanjean.files.wordpress.com/2008/04/comingsoon1.jpg" medium="image">
			<media:title type="html">Website Coming Soon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
