POV 3.5 b 9 on PII 233 128 MB with NT 4 Sp 6
I'm surprised below doesn't work:
#declare C=function{x+y+z};
#declare C=10;
#declare C=function{x+y+z};
Parse Error: Attempted to redefine float identifier as function_id.
#declare C=function{x+y+z};
#declare C=array[10];
#declare C=function{x+y+z};
Parse Error: Attempted to redefine array identifier as function_id.
#declare C=function{x+y+z};
#declare C="S";
#declare C=function{x+y+z};
Parse Error: Attempted to redefine string identifier as function_id.
but below works fine
#declare C=function{x+y+z};
#declare C=function{x};
#declare C=function{x+y+z};
Is it temporary workaround of some bug or final solution? If final then there
isn't any note about it in documentation.
ABX
Post a reply to this message
|