<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:series="http://unfoldingneurons.com/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Rigmarole</title>
	
	<link>http://chrislesage.com</link>
	<description>Tech Art, Character Rigging &amp; 3D Animation</description>
	<lastBuildDate>Tue, 21 Feb 2012 18:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/character_rigging" /><feedburner:info uri="character_rigging" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Python: String Formatting and Enumerate</title>
		<link>http://feedproxy.google.com/~r/character_rigging/~3/DZEHdqq1Vv8/</link>
		<comments>http://chrislesage.com/python/python-string-formatting-and-enumerate/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 18:00:00 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[maya]]></category>
		<category><![CDATA[pymel]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://chrislesage.com/?p=199</guid>
		<description><![CDATA[As a mostly self-taught Python scripter, I try to keep on top of best-practices and constantly learn, because I realize how easily bad habits can slip in. I&#8217;ve recently learned these bad habits are known as anti-patterns. That said, I learned a couple new Python tricks this week. 1. Better String Formatting Using Format() If [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As a mostly self-taught Python scripter, I try to keep on top of best-practices and constantly learn, because I realize how easily bad habits can slip in. I&#8217;ve recently learned these <a href="http://www.robg3d.com/?p=933" title="doubly-mutable antipatterns">bad habits</a> are known as <a href="http://blog.sanctum.geek.nz/vim-anti-patterns/" title="vim-anti-patterns">anti-patterns</a>.</p>
<p>That said, I learned a couple new Python tricks this week.</p>
<h3>1. Better String Formatting Using Format()</h3>
<p>If you&#8217;ve used string formatting before, this is very similar, except the replacement fields are inside {} brackets, and you can use variables as keywords or an index.</p>
<p>examples:</p>
<pre>print 'We are the {0} who say "{1}!"'.format('knights', 'Ni')
print 'We are the {1} who say "{0}!"'.format('Ni', 'knights')
print 'We are the {people} who say "{quote}!"'.format(people='knights', quote='Ni')
</pre>
<p>There are also lots of examples of how to format numbers or create precise column spacing. The &#8220;<em>old string formatting</em>&#8221; is eventually going to be removed from Python. There is likely no rush to switch, but it is less flexible and a bit harder to read:</p>
<pre>print 'We are the %s who say %s!' % ('knights', 'Ni')</pre>
<p>source: <a href="http://docs.python.org/tutorial/inputoutput.html">http://docs.python.org/tutorial/inputoutput.html</a></p>
<h3>2. Looping With Enumerate()</h3>
<p>One of the common things you want when looping through things is an index counter. You can do this a few various ways:<br />
counter += 1<br />
for i in range():<br />
or you can use each.index() on array items. There is a better way:</p>
<p><a href="http://www.python.org/dev/peps/pep-0279/" title="Python enumerate">Enumerate() is nice PEP-friendly way</a> to get a &#8220;a compact, readable, reliable index notation&#8221; in loops. It works even when you don&#8217;t have an array to count, or a known length (for doing a range()). You use two variables in your for loop, and the first is your index. It is much nicer than having a separate counter or measuring the length of something which may change inside the loop.</p>
<p><em>(This is a PyMEL example in Maya and assumes you have a selection of objects.)</em></p>
<pre>import pymel.core as pm

for i, each in enumerate(pm.selected()):
    print i, each

for i, each in enumerate(['some', 'array', 'here']):
    print i, each</pre>
<h3>3. Put Them Together</h3>
<p>Let&#8217;s do a simple example where we also use .format() to rename a series of objects. I&#8217;ll use {1:02d} to automatically add frame-padding. {1:__} is the replacement field index. {__:02d} is the frame-padding. (You can also convert to percentages, hexadecimal, dates, change the column spacing, etc. etc. This is just one small example.)</p>
<pre>
for i, each in enumerate(pm.selected()):
    newName = '{0}_{1:02d}'.format('right_whisker', i)
    pm.rename(each, newName)</pre>
<p>The nice thing about .format() is how easy it is to read and edit, since the replacement fields are clearly separated by brackets and you can pass any variables to them. Again this isn&#8217;t new, but it is easier to read than the old string formatting. So let&#8217;s play with this a bit and expand the example to automatically rename the object as &#8220;left&#8221; or &#8220;right&#8221;, depending on its translation in X.</p>
<pre>
for i, each in enumerate(pm.selected()):
    if each.tx.get() > 0:
        side = 'left'
    else:
        side = 'right'
    newName = '{0}_{1}_{2:02d}'.format(side, 'whisker', i)
    pm.rename(each, newName)
</pre>
<p>In the past, one of the most common ways I&#8217;ve created an index count is by measuring a length of a list or array or by using .index() to return the index of an array item. In comparison, this looks very ugly now. Plus, if you were to delete some objects inside the loop, the length of your range might change.</p>
<pre>
objects = pm.selected()
for i in range(0,len(objects)):
    print i, objects[i]
</pre>
<p>Two useful new tools for the arsenal. If you have any tips, suggestions or improvements, leave a comment. Next up, I&#8217;ll be getting back to the Mini Mammoth rigging after a bit of a hiatus.</p>
<img src="http://feeds.feedburner.com/~r/character_rigging/~4/DZEHdqq1Vv8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://chrislesage.com/python/python-string-formatting-and-enumerate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://chrislesage.com/python/python-string-formatting-and-enumerate/</feedburner:origLink></item>
		<item>
		<title>Using Proxy Geometry For Better Skinning Results</title>
		<link>http://feedproxy.google.com/~r/character_rigging/~3/gomiWBcF8bQ/</link>
		<comments>http://chrislesage.com/character-rigging/using-proxy-geometry-for-better-skinning-results/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 16:07:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Character Rigging]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[character rigging]]></category>
		<category><![CDATA[maya]]></category>
		<category><![CDATA[rig techniques]]></category>
		<category><![CDATA[skinning]]></category>

		<guid isPermaLink="false">http://chrislesage.com/?p=179</guid>
		<description><![CDATA[Here is a simple skinning trick I like to use, which comes in handy for a lot of different rigging situations. In the images below, I was rigging a wolf&#8217;s tongue with spline IK that needed to be very flexible. (If you count, you&#8217;ll notice that there are 12 controllers. 4 main controllers and 8 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here is a simple skinning trick I like to use, which comes in handy for a lot of different rigging situations.</p>
<p>In the images below, I was rigging a wolf&#8217;s tongue with spline IK that needed to be very flexible. (If you count, you&#8217;ll notice that there are 12 controllers. 4 main controllers and 8 extra offset controllers to bend and twist the tongue into a variety of shapes.) The skinning was proving to be tedious, because the geometry kept collapsing and self-colliding. So here is what I did:</p>
<p><strong>The Scenario</strong>: You have some tongue geometry (or other semi-flat geometry) which needs to be very flexible but the rig has a lot of bones and painting accurate weights is tedious and error-prone!</p>
<div id="attachment_185" class="wp-caption alignnone" style="width: 360px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/02/wolf_tongue_colliding.jpg" alt="" title="wolf_tongue_colliding" width="360" height="312" class="size-full wp-image-185" />
	<p class="wp-caption-text">Look at that unsightly and embarrassing interpenetration!</p>
</div>
<p><strong>Solution</strong>: Use a poly plane or other simplified geometry as a proxy. Fit it inside the geometry, and skin that instead. When you are done painting, use Copy Skin Weights to copy the weights from the proxy geometry to the full geometry.</p>
<p>The settings I use for Copy Skin Weights are:<br />
Surface Association: Closest point on surface<br />
Influence Association 1: Closest Joint<br />
Influence Association 2: Closest Bone<br />
Influence Association 3: Name (This 3rd entry is usually optional and makes no difference. When copying from the same geometry, like a body to a body, use &#8220;One to One&#8221; instead.)<br />
Normalize: Not checked</p>
<div id="attachment_181" class="wp-caption alignnone" style="width: 368px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/02/skinning_a_tongue_using_poly_plane.jpg" alt="" title="skinning_a_tongue_using_poly_plane" width="368" height="364" class="size-full wp-image-181" />
	<p class="wp-caption-text">Using a proxy object to skin the 3D geometry</p>
</div>
<div id="attachment_180" class="wp-caption alignnone" style="width: 318px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/02/flexible_tongue_rig.jpg" alt="" title="flexible_tongue_rig" width="318" height="395" class="size-full wp-image-180" />
	<p class="wp-caption-text">The final result is fast and flexible</p>
</div>
<p>This makes it very easy for both sides of the tongue to have the same weighting, without tedious painting, which means it will twist and bend a lot further without self-colliding. When your geometry has a lot of folds and wrinkles it is also a lot easier to get your brush along the flat, uniform geometry of a plane. This technique also works in any 3D package which supports copying weights from one object to another. In XSI you can do the exact same thing using GATOR.</p>
<p>I have also used this technique to copy weights from a stretched sphere to weight complex hair geometry. You could also use it to copy weights from low-res geometry to high-res geometry. You will likely have to do a bit of cleaning up afterwards, but it could be a good way to get 90% of your weight painting done very quickly.</p>
<p>When you are done, you can simply delete the geometry, or tuck it away in a hidden group for later editing.</p>
<p>My next goal with this is to figure out a way to copy weights locally on complex geometry. For example, if the tongue is attached to the body, how would you grab just the tongue weights?</p>
<img src="http://feeds.feedburner.com/~r/character_rigging/~4/gomiWBcF8bQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://chrislesage.com/character-rigging/using-proxy-geometry-for-better-skinning-results/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://chrislesage.com/character-rigging/using-proxy-geometry-for-better-skinning-results/</feedburner:origLink></item>
		<item>
		<title>Mini Mammoth Part 2: Sketching &amp; 3D Sculpting</title>
		<link>http://feedproxy.google.com/~r/character_rigging/~3/XDHly3N9LYA/</link>
		<comments>http://chrislesage.com/character-rigging/mini-mammoth-part-2-sketching-3d-sculpting/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 18:10:50 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Character Rigging]]></category>
		<category><![CDATA[3d-coat]]></category>
		<category><![CDATA[character design]]></category>
		<category><![CDATA[character rigging]]></category>
		<category><![CDATA[sketches]]></category>

		<guid isPermaLink="false">http://chrislesage.com/?p=127</guid>
		<description><![CDATA[So now we are on to part 2 of the Making Of Mini Mammoth where I am documenting the entire process of designing a cartoony character rig. In this step, I am doing a bunch of sketching from photo references and sculpting a quick prototype 3D model to get even more ideas. We&#8217;re almost ready [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-walking.jpg" alt="" title="mini mammoth walking" width="300" height="220" class="alignright size-full wp-image-146" />So now we are on to <strong>part 2 of the Making Of Mini Mammoth</strong> where I am documenting the entire process of designing a cartoony character rig. In this step, I am doing a bunch of sketching from photo references and sculpting a quick prototype 3D model to get even more ideas. We&#8217;re almost ready to start the actual modelling, but first&#8230;</p>
<h3><strong>Sketching Solves Problems</strong></h3>
<p>Design-based drawing is ultimately about solving problems, so quality isn&#8217;t at all important compared to just looking and observing the world.</p>
<p><div id="attachment_128" class="wp-caption alignnone" style="width: 590px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-sketchsheet-001.jpg" alt="Design sketches for Mini Mammoth" title="Mini Mammoth Sketchsheet 1" width="590" height="474" class="size-full wp-image-128" />
	<p class="wp-caption-text">Design sketches for Mini Mammoth</p>
</div><br />
I&#8217;m not the best draftsman, and they are definitely not going to dedicate an Art-Of book to me just yet, but it is a very important step to visually work out all the things we&#8217;ll have to pay attention to when we get to the character rigging stage. Drawing is also very important <strong>because it is fast</strong>. You can collect a lot of ideas in a short period of time and end up surprising yourself with ideas you would not have thought of if you had been tempted to jump straight into modelling.</p>
<p>Even when I am coding Python tools, I often find it very helpful to draw out my ideas first. I constantly keep a notebook full of notes and doodles beside me.</p>
<p>At this point, I&#8217;m just trying to get lots of ideas for shapes, style and proportions. This is one of the most fun steps because anything goes. I even spent some time drawing bears.</p>
<div id="attachment_129" class="wp-caption alignnone" style="width: 590px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-sketchsheet-002.jpg" alt="Some more design sketches for Mini Mammoth" title="mini-mammoth-sketchsheet-002" width="590" height="473" class="size-full wp-image-129" />
	<p class="wp-caption-text">Some more design sketches for Mini Mammoth</p>
</div>
<p><strong>Design Considerations So Far:</strong></p>
<ul>
<li>The mammoth&#8217;s trunk is mostly drawn in an interesting S shape, but I want it to be completely flexible and stretchy, including doing a water-passing-through-a-hose effect. So ultimately, I&#8217;ll likely model it in a straight line. When making a rig, <strong>it is usually easier to bend straight geometry than it is to straighten bent geometry</strong>. This is true when modelling any body part that will need to bend a lot, like a trunk, tongue or tail.</li>
<li>In some of the drawings I noticed that the tusks will overlap with the mouth, and it will be an important part of how the mouth looks. The trunk and tusks will <em>essentially be the upper lips</em>.</li>
<li>I&#8217;ve learned that there are a wide variety of mammoth and elephant ears. I&#8217;ll need to decide how floppy and how big they will be.</li>
<li>The long tusks of a mammoth make a really beautiful curve. This will be an important part to get right.</li>
<li>I am imagining giving him a thick coat of fur. How will I do it? There a few ways I could do it. Geometry, Maya hair, separate pieces of geometry? A lot to think about.</li>
<li>Did you know that <a href="http://www.youtube.com/watch?v=PKWRCW7PYKw" title="Elephant third eyelid">elephants have a 3rd eyelid membrane that slides sideways as they blink</a>?</li>
</ul>
<h3>Building a Prototype Model in 3D-Coat</h3>
<p>My original sketch wasn&#8217;t very detailed, and I wasn&#8217;t sure if the shapes I was drawing were even possible in 3D! So I started to model a prototype in <a href="http://3d-coat.com/" title="Modelling in 3D-Coat">3D-Coat</a>.</p>
<div id="attachment_130" class="wp-caption alignnone" style="width: 400px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-turntable.gif" alt="3D turntable of Mini Mammoth" title="Mini Mammoth Turntable" width="400" height="320" class="size-full wp-image-130" />
	<p class="wp-caption-text">A digital sculpt in 3D-Coat</p>
</div>
<p>I really like how it turned out! At this point, I am just playing with shapes in 3D. <em>This is not a final model</em>. A lot of details like the ears will still change a lot so I am not too worried about following the design so far. Its just a 3D doodle.</p>
<p>Digital voxel sculpting in 3D-Coat is a lot of fun! You are very free to push and pull your model and experiment. It feels as loose as drawing, the tools are very intuitive. You can even build an armature (The &#8216;Curves&#8217; tool) or drop shapes in (The &#8216;Primitives&#8217; tool) using spheres, squares and cylinders to build up a model very quickly.</p>
<div id="attachment_167" class="wp-caption alignnone" style="width: 300px">
	<img src="http://chrislesage.com/wp-content/uploads/2012/01/3d-coat-armature.jpg" alt="" title="3d-coat armature" width="300" height="233" class="size-full wp-image-167" />
	<p class="wp-caption-text">Building an armature in 3D-Coat</p>
</div>
<p>Immediately, I began to see some interesting patterns emerge:</p>
<ul>
<li>The legs are almost perfect cylinders. I like this a lot. They will bend and stretch, but their default shape will be very simple.</li>
<li>The trunk makes some really cool undulating waves all the way up to the top of the head.</li>
<li>The eyebrows need more design work so they don&#8217;t look like Groucho Marx. (Though that could be fun too!) Right now he looks angry in a lot of the drawings, but he&#8217;ll have a wider range of expressions when I design the facial rigging.</li>
<li>I like how the foundation of Mini Mammoth is a simple egg shape. But I also started getting some interesting square shapes in the hindquarters. I will hint at real anatomy in the pelvis.</li>
</ul>
<h3>The Lessons</h3>
<h4>#1. Always use references.</h4>
<p>I started out drawing a lot of sketches from my imagination, but the ones I sketched while looking at references of other animals were the ones that solved the most problems and made the design more clear in my mind. As I said earlier; drawing for design is a problem-solving process. At this point, it is not about creating art. The more I drew from references, the more I realized things that I would have to think about during the modelling and rigging stages.</p>
<h4>#2. Don&#8217;t Limit Your Inspiration</h4>
<p>I was looking at one of my drawings and it reminded me of a bear walking. So I studied a few pictures of bears. A bear has a big, lumbering walk with shorter legs than an elephant (just like Mini Mammoth.) So when I go to create a walk cycle, I&#8217;ll be largely inspired by bears. Mini Mammoth might look very small but he is going to walk with a big, heavy, camera-shaking gait!</p>
<p><img src="http://chrislesage.com/wp-content/uploads/2012/01/bear-walking-reference1.jpg" alt="" title="bear-walking-reference" width="400" height="276" class="alignnone size-full wp-image-132" /></p>
<p><img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-3d-prototype.jpg" alt="" title="mini mammoth 3d prototype" width="300" height="225" class="alignright size-full wp-image-136" /><strong>Coming Up Next:</strong> I&#8217;ll finalize the design, make a couple of polished drawings, and then go back to 3D-Coat to start the actual modelling. After that, I&#8217;ll go through the auto re-topology of the model (an amazing feature of 3D-Coat which generates the polygon edge-loops) and create the texture UV&#8217;s for preparing the model to export into Maya.</p>
<p>Until then!</p>
<img src="http://feeds.feedburner.com/~r/character_rigging/~4/XDHly3N9LYA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://chrislesage.com/character-rigging/mini-mammoth-part-2-sketching-3d-sculpting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[Making of Mini Mammoth]]></series:name>
	<feedburner:origLink>http://chrislesage.com/character-rigging/mini-mammoth-part-2-sketching-3d-sculpting/</feedburner:origLink></item>
		<item>
		<title>Mini Mammoth Part 1: The Making Of A Cartoon Character Rig</title>
		<link>http://feedproxy.google.com/~r/character_rigging/~3/Sn865ZJ5Fvg/</link>
		<comments>http://chrislesage.com/character-rigging/mini-mammoth-part-1-the-making-of-a-cartoon-character-rig/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 03:50:16 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Character Rigging]]></category>
		<category><![CDATA[character design]]></category>
		<category><![CDATA[character rigging]]></category>
		<category><![CDATA[sketches]]></category>

		<guid isPermaLink="false">http://chrislesage.com/?p=104</guid>
		<description><![CDATA[Hi everyone. This is the first post in a series where I take this simple doodle of a cartoon mammoth: &#8230;and turn him into a fully animated, super-flexible cartoony character rig in Maya! I&#8217;ll be documenting the entire process from design and modelling to the creation of the entire rig. It won&#8217;t be a step-by-step [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><b>Hi everyone. This is the first post in a series where I take this simple doodle of a cartoon mammoth:</b><br />
<img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-first-sketch.jpg" alt="" title="mini mammoth first sketch" width="400" height="300" class="alignnone size-full wp-image-106" /><br />
<b>&#8230;and turn him into a fully animated, super-flexible cartoony character rig in Maya!</b></p>
<p>I&#8217;ll be documenting the entire process from design and modelling to the creation of the entire rig. It won&#8217;t be a step-by-step tutorial, but it will show my entire thought process as I rig, mistakes and all. It might get messy, but I know I&#8217;ll learn a lot and hopefully you will too.</p>
<p>This isn&#8217;t the full &#8220;design&#8221;. That will come a bit later. Right now it is just a quick 3-inch doodle that I sketched while at work. I am choosing this funny little character for a few reasons, because it will be especially challenging in a few ways:</p>
<h4>The Challenge</h4>
<p>1. The challenge of small cartoony rigs is that there is lots of overlapping influence between the different body parts. Take a look at this image.<br />
<img src="http://chrislesage.com/wp-content/uploads/2012/01/mini-mammoth-design-considerations.jpg" alt="" title="mini mammoth design considerations" width="457" height="333" class="alignnone size-full wp-image-105" /><br />
For example, the cavity of the mouth and the shape of the lips is going to overlap all the way down to his knees. So when he opens his mouth his legs are going to move! His head is so big in relation to his body that he is basically a walking face. When rigging a normal-sized human or creature, all the body parts are distinct and separate and it is easier to paint the influence. So I am going to have to very carefully consider how I do everything from the facial rig to the way the limbs bend the body.</p>
<p>2. I am going to design him so that he has a lot of exaggerated squash and stretch. His trunk will stretch, bulge and grab on to things. How will such a short little trunk grab things? We will see!</p>
<p>3. It will just be a lot of fun figuring out how to make this guy move in an appealing and believable way!</p>
<h4>The End Result?</h4>
<p>The end result will be an animated short, featuring &#8220;Mini Mammoth&#8221;. I am not sure yet if I am going to texture and render it, but we will see! Stay tuned!</p>
<img src="http://feeds.feedburner.com/~r/character_rigging/~4/Sn865ZJ5Fvg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://chrislesage.com/character-rigging/mini-mammoth-part-1-the-making-of-a-cartoon-character-rig/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Making of Mini Mammoth]]></series:name>
	<feedburner:origLink>http://chrislesage.com/character-rigging/mini-mammoth-part-1-the-making-of-a-cartoon-character-rig/</feedburner:origLink></item>
	</channel>
</rss>

