|
|
I have strange error - perhaps it is bug
there is such code in my macro"
function{if(z-Params[counter][17],0,max(1-sqrt(sqr(x)+sqr(y)+sqr(z)),0))
}
but this produces error
function {if(z-Params[counter <----ERROR
memory macro:143: error: numeric expression expected but float
identifier found instead.
than I change this to:
#local a=Params[counter][17];
function{if(z-a,0,max(1-sqrt(sqr(x)+sqr(y)+sqr(z)),0))}
but this produces another error
#version <----ERROR
working.pov:1: error: object or directive expected but version found
instead.
after MegaPOV restart (BTW: 0.6a)
version with #local works fine
ABX
Post a reply to this message
|
|