Using the wedge tool to rig a bellows in Maya
I just a made a short tutorial , a tip really on how to use a modeling tool to rig a bellows.
I just a made a short tutorial , a tip really on how to use a modeling tool to rig a bellows.
In this tutorial I show how to setup a limb that can utilize no-flip and a pole-vector at the same time.
No-flip+Ik Limb Tutorial from Matthew Murray on Vimeo.
There have been some pretty good posts on some certain blogs lately about different facial rigging techniques so I thought to regurgitate them here. I will be adding to this list as time moves on.
So, I found out the other other day that if you want to have a value returned when using a recursive function you must include the return line in each instance of the return. Example:
Incorrect way:
def cleanMyString(self, url):
returnURL = ''
if ':' in str(url.encode('utf-8')):
fixMe = url.replace(':', '_')
self.clean(fixMe)
elif '$' in str(url.encode('utf-8')):
fixMe = url.replace('$', '-')
self.clean(fixMe)
else:
returnURL = url
return returnURL
The result of this method is None unless the string did not match any of the conditions to re-curse.
Correct way:
def cleanMyString(self, url):
returnURL = ''
if ':' in str(url.encode('utf-8')):
fixMe = url.replace(':', '_')
return self.clean(fixMe)
elif '$' in str(url.encode('utf-8')):
fixMe = url.replace('$', '-')
return self.clean(fixMe)
else:
returnURL = url
return returnURL
so we can see that instead of calling the function directly we need to put return in front, otherwise we get a return value of None.
Another tutorial has been released! enjoy
Well I was reading this post by Nathan Horne of Naughty Dog and read this :
This abruptly caught my attention. The article itself had already convinced me to want to use PySide and PyQt to code UIs but left me on the fence wether to use the QTDesigner or not, until I read this. Either way it is a very good read, take a look and listen to the experts!
I just created another tutorial for working with the Citrus Engine in Flash… Enjoy
Well I finally got around to creating a new layout for my site. The old one was in flash and I didn’t feel like trying to program in all the functionality these fancy wordpress sites have like posting like this and nice back end user interface. Enjoy the new content!