<?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/"
	>

<channel>
	<title>MrPingouin&#039;s Igloo</title>
	<atom:link href="http://laurentchea.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://laurentchea.com</link>
	<description>Laurent CHEA : 3D animator, Technical Artist</description>
	<lastBuildDate>Thu, 26 Jan 2012 23:36:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Happy new year</title>
		<link>http://laurentchea.com/2012/01/27/happy-new-year/</link>
		<comments>http://laurentchea.com/2012/01/27/happy-new-year/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 23:36:03 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=230</guid>
		<description><![CDATA[Happy Year of the Dragon ! Rha, I love image grain so much.]]></description>
			<content:encoded><![CDATA[<p><a href="http://laurentchea.com/blog/wp-content/uploads/2012/01/Negative0-19-18A21.jpg"><img class="alignleft size-full wp-image-232" title="Negative0-19-18A(2)" src="http://laurentchea.com/blog/wp-content/uploads/2012/01/Negative0-19-18A21.jpg" alt="" width="1468" height="980" /></a><span>Happy Year of the Dragon !<br />
</span>Rha, I love image grain so much.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2012/01/27/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building python scripts</title>
		<link>http://laurentchea.com/2011/08/20/building-python-scripts-2/</link>
		<comments>http://laurentchea.com/2011/08/20/building-python-scripts-2/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 14:30:23 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[The Box]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=193</guid>
		<description><![CDATA[Someone once commented on the  Camera Mixer&#8217;s scriptspot page, that the tool sounded interesting, but unless an installer is provided he wouldn&#8217;t even try to use it. Indeed : you have to install python, then pywin32 and wxPython, and just &#8230; <a href="http://laurentchea.com/2011/08/20/building-python-scripts-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Package" src="http://findicons.com/files/icons/1233/somatic_rebirth_apps/128/package.png" alt="" width="128" height="128" />Someone once commented on the  Camera Mixer&#8217;s scriptspot page, that the tool sounded interesting, but unless an installer is provided he wouldn&#8217;t even try to use it.</p>
<p>Indeed : you have to install python, then pywin32 and wxPython, and just trying to find the correct compatible versions on the web is a hassle.</p>
<p>So I decided to have a look on py2exe and other tools to &#8220;build&#8221; python scripts.</p>
<p>This post will deal with all my researches, and will be often updated.</p>
<p>It doesn&#8217;t intend to be a tutorial at all.</p>
<p><span id="more-193"></span></p>
<ol>
<li><a href="#startPoint">Start point</a></li>
<li>msvcr90, msvcp90</li>
<li>the r6034 error and the manifest</li>
</ol>
<h3>Start point</h3>
<p>Good urls to start with :</p>
<ul>
<li><a title="py2exe.org : tutorial" href="http://www.py2exe.org/index.cgi/Tutorial" target="_blank">http://www.py2exe.org/index.cgi/Tutorial</a></li>
<li><a href="http://www.blog.pythonlibrary.org/2010/07/31/a-py2exe-tutorial-build-a-binary-series/" target="_blank">http://www.blog.pythonlibrary.org/2010/07/31/a-py2exe-tutorial-build-a-binary-series/</a></li>
</ul>
<p>In the <em>simple</em> sample provided with py2exe, the test_wx.py is using the obsolete writing of wxPython.<br />
The one in the <em>singlefile</em> sample is good though.</p>
<p>The magic words are :</p>
<blockquote><p>python.exe setup.py py2exe</p></blockquote>
<h3>The DLL msvcp90 and msvcr90</h3>
<p>Those files are required when you want to create a build of a tool using wxPython.</p>
<p>There&#8217;s a question of rights to share those files. I frankly don&#8217;t know  if I have them  (actually I doubt it) , the solution is to make the user download them via <a href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=29">vcredist_x86.exe</a> .</p>
<p>Apparently, you should not download the SP1 version. I don&#8217;t really know why.</p>
<p><strong> The R6034 error</strong></p>
<p>http://stackoverflow.com/questions/1153643/how-do-i-debug-a-py2exe-application-failed-to-initialize-properly-error</p>
<p>msvcr90.dll Manifest (publicKeyToken, version)</p>
<p>Edit the manifest part in setup.py and put the correct values (given in Microsoft.VC90.CRT.manifest)</p>
<h3>MemoryLoadLibrary</h3>
<p>ImportError: MemoryLoadLibrary failed loading win32api.pyd</p>
<p>http://stackoverflow.com/questions/1979486/py2exe-win32api-pyc-importerror-dll-load-failed</p>
<p>So the setup.py should look like :</p>
<pre>setup(
     options = {"py2exe": {"compressed": 1,
                 "optimize": 2,
                 "ascii": 1,
                 "bundle_files": 1,
                 "dll_excludes": [ "mswsock.dll", "powrprof.dll" ]}},
     zipfile = None,
     windows = [CameraMixer]
)</pre>
<h3>Still questions</h3>
<p>In setup.py, what does <em>RT_MANIFEST = 24</em> mean ?</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/08/20/building-python-scripts-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opening the box</title>
		<link>http://laurentchea.com/2011/08/20/opening-the-box/</link>
		<comments>http://laurentchea.com/2011/08/20/opening-the-box/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 14:26:26 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[The Box]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=196</guid>
		<description><![CDATA[I&#8217;m opening a new category on this little blog : the Box. It will act as a notepad where I&#8217;ll be sharing informations and research about the different projects I&#8217;m working on, whether it is 3D setup or scripting.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m opening a new category on this little blog : the Box.</p>
<p>It will act as a notepad where I&#8217;ll be sharing informations and research about the different projects I&#8217;m working on, whether it is 3D setup or scripting.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/08/20/opening-the-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera Mixer : Da news</title>
		<link>http://laurentchea.com/2011/03/13/camera-mixer-some-news/</link>
		<comments>http://laurentchea.com/2011/03/13/camera-mixer-some-news/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 18:52:11 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[maxscript]]></category>
		<category><![CDATA[mixer]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[wxWidgets]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=161</guid>
		<description><![CDATA[This is it ! The Camera Mixer for 3dsmax v0.1 is finally out ! Operational : - Real time playing - File Open/Save - Export the mix to 3dsmax&#8217;s batch renderer - Save a preview of the whole mix - &#8230; <a href="http://laurentchea.com/2011/03/13/camera-mixer-some-news/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is it !<br />
The Camera Mixer for 3dsmax v0.1 is finally out !</p>
<p><a href="http://laurentchea.com/blog/wp-content/uploads/2011/04/cameraMixer7.png"></a><a href="http://laurentchea.com/blog/wp-content/uploads/2011/03/cameraMixer8.png"></a><a href="http://laurentchea.com/blog/wp-content/uploads/2011/03/cameraMixer9.png"><img class="alignnone size-full wp-image-187" title="cameraMixer9" src="http://laurentchea.com/blog/wp-content/uploads/2011/03/cameraMixer9.png" alt="" width="569" height="227" /></a></p>
<p><a href="http://laurentchea.com/blog/wp-content/uploads/2011/04/cameraMixer7.png"></a><a href="http://laurentchea.com/blog/wp-content/uploads/2011/03/cameraMixer7_mix_preview.png"><img class="alignnone size-full wp-image-180" title="cameraMixer7_mix_preview" src="http://laurentchea.com/blog/wp-content/uploads/2011/03/cameraMixer7_mix_preview.png" alt="" width="235" height="239" /></a></p>
<p>Operational :</p>
<p>- Real time playing<br />
- File Open/Save<br />
- Export the mix to 3dsmax&#8217;s batch renderer<br />
- Save a preview of the whole mix<br />
- Usual UI controls : snap, delete/repace, mute/solo, move track up/down</p>
<p>0.2 planned features :<br />
- Make the worksheet scalable<br />
- Create an After FX composition<br />
- Manage background image sequences</p>
<p>The tool is here : <a href="http://laurentchea.com/dev/CameraMixer/0.1/CameraMixer_v0.1.zip" target="_blank">Camera Mixer</a><br />
<a href="http://www.scriptspot.com/3ds-max/scripts/camera-mixer" target="_blank">Camera Mixer on Scriptspot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/03/13/camera-mixer-some-news/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Demoreel 2011</title>
		<link>http://laurentchea.com/2011/01/09/demoreel-2011/</link>
		<comments>http://laurentchea.com/2011/01/09/demoreel-2011/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 19:17:08 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[demoreel]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=156</guid>
		<description><![CDATA[At last. Here it comes : my last demoreel. I hope you&#8217;ll enjoy it.]]></description>
			<content:encoded><![CDATA[<p>At last.<br />
Here it comes : my last demoreel.<br />
I hope you&#8217;ll enjoy it.</p>
<p><object style="background: #000; z-index: 0;" width="540" height="406" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="flv=http://laurentchea.com/demoreel/laurentchea.com_demoreel_201101.flv&amp;startimage=http://www.laurentchea.com/demoreel/laurentchea.com.demo.png&amp;width=540&amp;height=406&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="src" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="flashvars" value="flv=http://laurentchea.com/demoreel/laurentchea.com_demoreel_201101.flv&amp;startimage=http://www.laurentchea.com/demoreel/laurentchea.com.demo.png&amp;width=540&amp;height=406&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="allowfullscreen" value="true" /><embed style="background: #000; z-index: 0;" width="540" height="406" type="application/x-shockwave-flash" src="http://flv-player.net/medias/player_flv_maxi.swf" data="http://flv-player.net/medias/player_flv_maxi.swf" allowFullScreen="true" FlashVars="flv=http://laurentchea.com/demoreel/laurentchea.com_demoreel_201101.flv&amp;startimage=http://www.laurentchea.com/demoreel/laurentchea.com.demo.png&amp;width=540&amp;height=406&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" flashvars="flv=http://laurentchea.com/demoreel/laurentchea.com_demoreel_201101.flv&amp;startimage=http://www.laurentchea.com/demoreel/laurentchea.com.demo.png&amp;width=540&amp;height=406&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" allowfullscreen="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/01/09/demoreel-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera Mixer</title>
		<link>http://laurentchea.com/2011/01/07/camera-mixer/</link>
		<comments>http://laurentchea.com/2011/01/07/camera-mixer/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 02:19:44 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[maxscript]]></category>
		<category><![CDATA[mixer]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=126</guid>
		<description><![CDATA[As an animator, I often have to deal with several cameras in a scene. The last project I worked on contained 8 cameras (for 8 plans), it was a layout single maxfile that was given to me, I had to &#8230; <a href="http://laurentchea.com/2011/01/07/camera-mixer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As an animator, I often have to deal with several cameras in a scene.</p>
<p>The last project I worked on contained 8 cameras (for 8 plans), it was a layout single maxfile that was given to me, I had to create the final animations.</p>
<p>But then I started thinking about the layout creation itself.</p>
<p>The workflow is this one :</p>
<ul>
<li>Use camera name patterns :  CameraName startFrame &#8211; endFrame (&#8220;Plan01 0 &#8211; 150&#8243;, &#8220;Plan02 0 &#8211; 50&#8243;)</li>
<li>Create previews as jpg sequence, one for each camera</li>
<li>Import and Edit the sequences with Premiere/After FX/Whatever</li>
<li>Compile and Check the result</li>
</ul>
<p>Issues :</p>
<ul>
<li>Each time the animation is corrected (cameras or actors), the user has to regenerate the preview of modified sequences, reload them in After/Premiere, and compile the whole project to see the result.</li>
<li>Each time a camera frame range is modified, you have to correctly rename it to maintain the project homogenous</li>
</ul>
<p>This is annoying. That&#8217;s why I started developing  <strong>Camera Mixer</strong> for 3dsmax.</p>
<p><a href="http://laurentchea.com/blog/wp-content/uploads/2011/01/cameraMixer.png"><img class="alignnone size-full wp-image-134" title="cameraMixer" src="http://laurentchea.com/blog/wp-content/uploads/2011/01/cameraMixer.png" alt="" width="580" height="252" /></a></p>
<p>It&#8217;s kind of a track mixing tool : it has an independant timeline (the equivalent of the film editing software one), in which you can set the sequence of the different cameras of the scene.</p>
<p>The features will be as follow  :</p>
<ul>
<li>Editing of the camera sequences</li>
<li>Real time playing</li>
<li>File sequence preview for not realtime playable scenes</li>
<li>Load/Save of mix files</li>
<li>Export a composition for After FX</li>
</ul>
<p>The tool is developed using python, wxWidgets, and maxscript. Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/01/07/camera-mixer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Isolate Track</title>
		<link>http://laurentchea.com/2011/01/03/isolate-track/</link>
		<comments>http://laurentchea.com/2011/01/03/isolate-track/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 05:52:49 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[animation tool]]></category>
		<category><![CDATA[maxscript]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=105</guid>
		<description><![CDATA[When an object has several &#8220;object keyframes&#8221; of different parameters at the same frame time (e.g. a morpher with multiple targets, or baseObject&#8217;s radius and segments animated), all of these keyframes are displayed as one &#8220;grey object key&#8221; in the &#8230; <a href="http://laurentchea.com/2011/01/03/isolate-track/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When an object has several &#8220;object keyframes&#8221; of different parameters at the same frame time (e.g. a morpher with multiple targets, or baseObject&#8217;s radius and segments animated), all of these keyframes are displayed as one &#8220;grey object key&#8221; in the timeline.</p>
<p>It is possible to isolate tracks (e.g. only one morpher target), but to do this, you have to right click the value, choose <em>Show in Trackview</em>, right click again then <em>collect parameter</em>, and finally deal with the Parameter Collector options. This is not very comfortable, especially if it&#8217;s for a one-shot use of the Parameter Collector.</p>
<p>Isolate Track popups a rollout that displays all the animatable tracks of the current modifier stack selection, and quickly isolates the selected track keyframes in the timeline.<br />
Once executed, you can find the macro in the category &#8220;MrPingouin_Toolkit&#8221;.</p>
<p>Press &#8216;F&#8217; while playing to go fullscreen.</p>
<p>The tool is here : <a href="http://laurentchea.com/dev/IsolateTrack/IsolateTrack.ms" target="_blank">Isolate Track<br />
</a><a href="http://www.scriptspot.com/3ds-max/scripts/isolate-track" target="_blank">Isolate Track on scriptspot</a></p>
<p><object style="background: #000; z-index: 0;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="540" height="308" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="flv=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack_demo.flv&amp;startimage=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack.png&amp;width=540&amp;height=308&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="src" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="flashvars" value="flv=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack_demo.flv&amp;startimage=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack.png&amp;width=540&amp;height=308&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="allowfullscreen" value="true" /><embed style="background: #000; z-index: 0;" type="application/x-shockwave-flash" width="540" height="308" src="http://flv-player.net/medias/player_flv_maxi.swf" flashvars="flv=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack_demo.flv&amp;startimage=http://www.laurentchea.com/dev/IsolateTrack/IsolateTrack.png&amp;width=540&amp;height=308&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" allowfullscreen="true" data="http://flv-player.net/medias/player_flv_maxi.swf"></embed></object></p>
<p>The music is by  <a href="http://www.jamendo.com/fr/artist/grace.valhalla">Grace Valhalla</a> &#8211; <a href="http://www.jamendo.com/fr/track/236371" target="_blank">Voodoo Lounge</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2011/01/03/isolate-track/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playback Viewport</title>
		<link>http://laurentchea.com/2010/12/31/playback-viewport/</link>
		<comments>http://laurentchea.com/2010/12/31/playback-viewport/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 15:33:19 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[animation tool]]></category>
		<category><![CDATA[maxscript]]></category>
		<category><![CDATA[playback]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=92</guid>
		<description><![CDATA[I&#8217;ve written a little tool that reproduces what I think is a killer feature of XSI (well, for animators though) : It automatically switches to a viewport designated by the user when animation playback starts, and switches back to the &#8230; <a href="http://laurentchea.com/2010/12/31/playback-viewport/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve written a little tool that reproduces what I think is a killer feature of XSI (well, for animators though) :</p>
<p>It automatically switches to a viewport designated by the user when animation playback starts, and switches back to the previously working viewport once the animation stops.</p>
<p>That might sounds a little weird, but they&#8217;ve designed a very comfortable workflow, especially when your viewport layout looks like : Facial Rig + Overall scene view + Final Camera view (the interesting one).</p>
<p>This way, you don&#8217;t have to change viewports yourself (twice, before and after playback) each time you want to check your animation.</p>
<p>You can download the tool here : <a href="http://laurentchea.com/dev/PlaybackViewport/PlaybackViewport.ms">PlaybackViewport.ms</a></p>
<p><a href="http://www.scriptspot.com/3ds-max/scripts/playback-viewport" target="_blank">Playback Viewport on scriptspot</a></p>
<p><a href="http://laurentchea.com/blog/wp-content/uploads/2010/12/PlaybackViewport02.jpg"><img title="PlaybackViewport02" src="http://laurentchea.com/blog/wp-content/uploads/2010/12/PlaybackViewport02.jpg" alt="" width="207" height="106" /></a></p>
<p><a href="http://laurentchea.com/blog/wp-content/uploads/2010/12/PlaybackViewport01.jpg"><img class="alignnone size-full wp-image-93" title="PlaybackViewport01" src="http://laurentchea.com/blog/wp-content/uploads/2010/12/PlaybackViewport01.jpg" alt="" width="540" height="331" /> </a></p>
<p>The rig you can see in the screenshot is <a href="http://manny-cgcharacterart.com/Rig.html" target="_blank">Dee</a>, a really fun- to-animate character made by <a href="http://manny-cgcharacterart.com/" target="_blank">Manuel Sierra</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2010/12/31/playback-viewport/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making of : The Destify of Rome</title>
		<link>http://laurentchea.com/2010/12/30/the-destiny-of-rome-making-of/</link>
		<comments>http://laurentchea.com/2010/12/30/the-destiny-of-rome-making-of/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 14:46:57 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[making-of]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=75</guid>
		<description><![CDATA[A making-of The Destiny of Rome, a 2*52&#8242; documentary I&#8217;ve worked on, has been released. The Indigenes post-production team was composed of six gfx artists. I worked there as a Tech-Animator. I was principaly in charge of rigging, animation, and &#8230; <a href="http://laurentchea.com/2010/12/30/the-destiny-of-rome-making-of/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A making-of <em>The Destiny of Rome</em>, a 2*52&#8242; documentary I&#8217;ve worked on, has been released.</p>
<p>The <a title="Indigenes Productions" href="http://www.indigenes-productions.fr/" target="_blank">Indigenes</a> post-production team was composed of six gfx artists.</p>
<p>I worked there as a Tech-Animator.</p>
<p>I was principaly in charge of rigging, animation, and the development of pipeline tools for crowd management, particles effects, tracking and rendering.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="270" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.dailymotion.com/swf/video/xfokzi?width=&amp;theme=none&amp;foreground=%23F7FFFD&amp;highlight=%23FFC300&amp;background=%23171D1B&amp;start=&amp;animatedTitle=&amp;iframe=0&amp;additionalInfos=0&amp;autoPlay=0&amp;hideInfos=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="270" src="http://www.dailymotion.com/swf/video/xfokzi?width=&amp;theme=none&amp;foreground=%23F7FFFD&amp;highlight=%23FFC300&amp;background=%23171D1B&amp;start=&amp;animatedTitle=&amp;iframe=0&amp;additionalInfos=0&amp;autoPlay=0&amp;hideInfos=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2010/12/30/the-destiny-of-rome-making-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast Positioning Tool</title>
		<link>http://laurentchea.com/2010/12/29/fast-positioning-tool/</link>
		<comments>http://laurentchea.com/2010/12/29/fast-positioning-tool/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 17:53:24 +0000</pubDate>
		<dc:creator>MrPingouin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[animation tool]]></category>
		<category><![CDATA[maxscript]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://laurentchea.com/?p=67</guid>
		<description><![CDATA[There&#8217;s already a lot of PRS randomizer tool available in maxscript, but I think they&#8217;re lacking real time preview. Fast Positioning Tool add this interactivity, and two others tools : some kind of a Z-drop, and attraction/repulsion from a center &#8230; <a href="http://laurentchea.com/2010/12/29/fast-positioning-tool/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s already a lot of PRS randomizer tool available in maxscript, but I think they&#8217;re lacking real time preview.</p>
<p>Fast Positioning Tool add this interactivity, and two others tools : some kind of a Z-drop, and attraction/repulsion from a center node.</p>
<p>As the adage says  : <em>A short demo video is worth a thousand words</em> <img src='http://laurentchea.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object style="background: #000; z-index: 0;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="540" height="320" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="flv=http://www.laurentchea.com/demoreel/laurentchea.com_demoreel_200909.flv&amp;startimage=http://laurentchea.com/dev/FastPositioningTool/FastPositioningTool.png&amp;width=540&amp;height=320&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="src" value="http://flv-player.net/medias/player_flv_maxi.swf" /><param name="flashvars" value="flv=http://laurentchea.com/dev/FastPositioningTool/FastPositioningTool_Demo.flv&amp;startimage=http://laurentchea.com/dev/FastPositioningTool/FastPositioningTool.png&amp;width=540&amp;height=320&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" /><param name="allowfullscreen" value="true" /><embed style="background: #000; z-index: 0;" type="application/x-shockwave-flash" width="540" height="320" src="http://flv-player.net/medias/player_flv_maxi.swf" flashvars="flv=http://laurentchea.com/dev/FastPositioningTool/FastPositioningTool_Demo.flv&amp;startimage=http://laurentchea.com/dev/FastPositioningTool/FastPositioningTool.png&amp;width=540&amp;height=320&amp;bgcolor=000000&amp;buffercolor=999999&amp;margin=0" allowfullscreen="true" data="http://flv-player.net/medias/player_flv_maxi.swf"></embed></object></p>
<p>The music was found on free music website <a title="Jamendo" href="http://www.jamendo.com/en/" target="_blank">Jamendo</a>, its name is <a href="http://www.jamendo.com/fr/track/391002" target="_blank">Balrog Boogie</a>, by <a href="http://www.jamendo.com/fr/artist/Diablo_Swing_Orchestra_(2)">Diablo Swing Orchestra</a>.</p>
<p>I&#8217;ll publish the code in a few hours, and record the video in a better quality.</p>
]]></content:encoded>
			<wfw:commentRss>http://laurentchea.com/2010/12/29/fast-positioning-tool/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

