Archive for August, 2008

MEL: Padding Function

Tuesday, August 19th, 2008

This is a little function that takes a number and adds padding to it.

global proc string padNumber(int $number, int $length){
	string $paddedString = string($number);
	while(size($paddedString)<$length)
		$paddedString = ("0"+$paddedString);
	return $paddedString;
}

Example:
padNumber 55 4;
// Result: 0055

Sand Castle

Monday, August 18th, 2008

This is a little breakdown of a project we did for a client that wanted a real sand castle.
But they choosed to go with a full CG castle.
The final resolution of the render was 8266 X 11820 pixels!!

RoosterMan!

Friday, August 15th, 2008

My latest sculpture.

The head is full cg and the rest is a photograph of me in a suit =).

Here is a closeup of the head.

madSplitToning

Friday, August 15th, 2008

This is a simple Nuke Gizmo that is similar to the Split Toning feature in Adobe Lightroom.

DOWNLOAD:

madsplittoning_v01

.