|
|
I'm trying to convert some old MegaPOV files to modern syntax.
The old line was:
Noise = function { (.1 - 2*noise3d(x, y, z))*clock }
and I thought this would work:
Noise = function { (.1 - 2*f_noise3d(x, y, z))*clock }
but it doesn't. "expected operator, ( found instead.
Can someone show me the light?
Thanks much.
Dennis
--
dhm### [at] comcastnet
http://www.dennismiller.neu.edu
Post a reply to this message
|
|
|
|
> I'm trying to convert some old MegaPOV files to modern syntax.
> The old line was:
> Noise = function { (.1 - 2*noise3d(x, y, z))*clock }
>
> and I thought this would work:
> Noise = function { (.1 - 2*f_noise3d(x, y, z))*clock }
>
> but it doesn't. "expected operator, ( found instead.
>
> Can someone show me the light?
You need to include functions.inc
#include "functions.inc"
#declare Noise = function { (.1 - 2*f_noise3d(x, y, z))*clock }
Post a reply to this message
|
|