Digital humans the art of the digital double
Ever wanted to know how digital doubles are created in the movie industry? This course will give you an insight into how it's done.
# 1 19-07-2004 , 08:03 AM
Registered User
Join Date: Jul 2003
Location: Australia
Posts: 50

noise modifier for geometry?

Am I asking to much for Maya to have something like this?
I am toooo used to max i know.

I have a flat desert plain, and I want to rough it up a bit, and I don't want to use displacement mapping, too calc intensive.

is there a way just to add a noise modifier to the geometry to rough it up a bit?


thanks.

Adam.

# 2 19-07-2004 , 08:19 AM
Alan's Avatar
Moderator
Join Date: Oct 2002
Location: London, UK
Posts: 2,800
use displacement and then bake it. Or if it's nurbs you could use this script of mine:

global proc displaceCVs(float $minVal, float $maxVal)
{
$sel = `ls -sl`;

$Udiv = `getAttr $sel".spansU"`;
$Vdiv = `getAttr $sel".spansV"`;

//loop through the CVs and add random amounts to their y direction.

$i = 0;
for($i = 0; $i < $Udiv; $i++)
{
$j = 0;
for($j = 0; $j < $Vdiv; $j++)
{
select -r $sel.cv[$i][$j];
float $displace = `rand $minVal $maxVal`;
xform -r -t 0 $displace 0 ;
}
}
}


If you've got a poly surface it's the same idea.

Alan


Technical Director - Framestore

Currently working on: Your Highness

IMDB
Posting Rules Forum Rules
You may not post new threads | You may not post replies | You may not post attachments | You may not edit your posts | BB code is On | Smilies are On | [IMG] code is On | HTML code is Off

Similar Threads