|
|
|
|
|
by notfashion
2454 days ago
|
|
I think there's an error in the first bit of example code: float fbm( in vecN x, in float H )
{
float t = 0.0;
for( int i=0; i<numOctaves; i++ )
{
float f = pow( 2.0, float(i) );
float a = pow( f, -H );
t += a*noise(f*x);
}
return t;
}
Shouldn't "float a = pow( f, -H );" be "float a = pow( i, -H );"? |
|