<?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>Eric Thivierge</title>
	<atom:link href="http://www.ethivierge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ethivierge.com</link>
	<description>The technical side of animation.</description>
	<lastBuildDate>Fri, 13 Apr 2012 12:46:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Toggle Softimage Script Editor</title>
		<link>http://www.ethivierge.com/scripting/2012/04/13/toggle-softimage-script-editor/</link>
		<comments>http://www.ethivierge.com/scripting/2012/04/13/toggle-softimage-script-editor/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 12:41:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=571</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
This code toggles the Softimage script editor on and off. Useful to embed in a custom layout. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 from win32com.client import constants as c from win32com.client import Dispatch as d&#60;/code&#62; &#160; [...]]]></description>
		<wfw:commentRss>http://www.ethivierge.com/scripting/2012/04/13/toggle-softimage-script-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract deformer to weight map</title>
		<link>http://www.ethivierge.com/scripting/2012/02/15/extract-deformer-to-weight-map/</link>
		<comments>http://www.ethivierge.com/scripting/2012/02/15/extract-deformer-to-weight-map/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 22:29:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=526</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
This is a code snippet that you can use to extract the envelope weights of a deformer to a weight map. xsi = Application oWeightMap = xsi.Selection&#40;0&#41; oObj = oWeightMap.Parent3DObject oEnv = oObj.Envelopes&#40;0&#41; defOneArray = oEnv.GetWeights2&#40;&#41;.Array&#91;1&#93; # Change Array index to get a different deformer oWeightMap.Elements.Array = &#91;x / 100 for x in defOneArray&#93;]]></description>
		<wfw:commentRss>http://www.ethivierge.com/scripting/2012/02/15/extract-deformer-to-weight-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resize Pose Action</title>
		<link>http://www.ethivierge.com/scripting/2012/02/11/resize-pose-action/</link>
		<comments>http://www.ethivierge.com/scripting/2012/02/11/resize-pose-action/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 08:59:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=520</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
I needed to resize some pose actions due to a rescale on a rig so I needed to write a script to do so. I didn't need to rescale the scale parameters thus why they are not in the list of params to scale. 1 2 3 4 5 6 7 8 9 10 11 [...]]]></description>
		<wfw:commentRss>http://www.ethivierge.com/scripting/2012/02/11/resize-pose-action/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Softimage Curve CopyIcon</title>
		<link>http://www.ethivierge.com/scripting/2011/10/10/softimage-curve-copyicon/</link>
		<comments>http://www.ethivierge.com/scripting/2011/10/10/softimage-curve-copyicon/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 10:20:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=499</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 from win32com.client import constants as c from win32com.client import Dispatch as d &#160; [...]]]></description>
		<wfw:commentRss>http://www.ethivierge.com/scripting/2011/10/10/softimage-curve-copyicon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sydney Arrival</title>
		<link>http://www.ethivierge.com/daily/2011/09/24/sydney-arrival/</link>
		<comments>http://www.ethivierge.com/daily/2011/09/24/sydney-arrival/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 07:24:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=495</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
I arrived in Sydney yesterday after around 24 hours of travel from Philadelphia to San Francisco (6.5 hrs) to Sydney (14.5 hrs). Although it was a very long trip it never felt terribly long. The timing of the flight was probably perfect as it had me traveling later at night on my normal time schedule. [...]]]></description>
		<wfw:commentRss>http://www.ethivierge.com/daily/2011/09/24/sydney-arrival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bimbo</title>
		<link>http://www.ethivierge.com/daily/2011/05/25/bimbo/</link>
		<comments>http://www.ethivierge.com/daily/2011/05/25/bimbo/#comments</comments>
		<pubDate>Wed, 25 May 2011 16:27:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Commercial]]></category>
		<category><![CDATA[Daily]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=361</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
While at Janimation in July / August of 2010 I worked on some tool development for this project. Custom Synoptic view, Pose / Animation library. I'll be posting tool breakdown shortly.]]></description>
		<wfw:commentRss>http://www.ethivierge.com/daily/2011/05/25/bimbo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PassManger 3.0 Preview</title>
		<link>http://www.ethivierge.com/scripting/2011/05/21/passmanger-3-0-preview/</link>
		<comments>http://www.ethivierge.com/scripting/2011/05/21/passmanger-3-0-preview/#comments</comments>
		<pubDate>Sun, 22 May 2011 03:15:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PassManager]]></category>
		<category><![CDATA[Plug-Ins]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=356</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
A walk through of the new version of ET PassManager. New features include: - GUI to allow selected of passes and settings to export - 1 file export / import - Scene Renderer Settings - Pass Environment Shaders on passes - Local Renderer Settings (local Mental Ray setting on passes) - Complete Rewrite to optimize [...]]]></description>
		<wfw:commentRss>http://www.ethivierge.com/scripting/2011/05/21/passmanger-3-0-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wheel Rotation</title>
		<link>http://www.ethivierge.com/animation/2011/05/13/wheel-rotation/</link>
		<comments>http://www.ethivierge.com/animation/2011/05/13/wheel-rotation/#comments</comments>
		<pubDate>Fri, 13 May 2011 20:09:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Daily]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=354</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
( 360 / (2 * PI * radius) ) * object.kine.local.posz]]></description>
		<wfw:commentRss>http://www.ethivierge.com/animation/2011/05/13/wheel-rotation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PassManager 3.0 Teaser</title>
		<link>http://www.ethivierge.com/plug-ins/2011/04/02/passmanager-3-0-teaser/</link>
		<comments>http://www.ethivierge.com/plug-ins/2011/04/02/passmanager-3-0-teaser/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 23:12:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PassManager]]></category>
		<category><![CDATA[Plug-Ins]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=350</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
Here is a sneak peak at ET_PassManager_v3.0:]]></description>
		<wfw:commentRss>http://www.ethivierge.com/plug-ins/2011/04/02/passmanager-3-0-teaser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AnimStore v1.35</title>
		<link>http://www.ethivierge.com/daily/2011/03/21/animstore-v1-35/</link>
		<comments>http://www.ethivierge.com/daily/2011/03/21/animstore-v1-35/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 02:19:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AnimStore]]></category>
		<category><![CDATA[Daily]]></category>

		<guid isPermaLink="false">http://www.ethivierge.com/?p=344</guid>
		<description><![CDATA[<style type="text/css">
#leftcontainerBox {
float:left;
position: fixed;
top: 60%;
left: 70px;
}

#leftcontainerBox .buttons {
float:left;
clear:both;
margin:4px 4px 4px 4px;

padding-bottom:2px;
}


#bottomcontainerBox {
height: 30px;
width:50%;
padding-top:1px;
}

#bottomcontainerBox .buttons {
float:left;
height: 30px;
margin:4px 4px 4px 4px;
}

</style>
Fixed a bug which caused a layout error in the Pose List GUI. It wuld error out and not build the GUI if you had more than 3 poses in a category. Fixed now. Download (Right click, save target as)]]></description>
		<wfw:commentRss>http://www.ethivierge.com/daily/2011/03/21/animstore-v1-35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

