|
|
SCENE begin
********************************************************************
/* only second array declaration really initializes the array, why? */
#declare b = array[1]{
function{0}
}
#declare a = array[1]{
function{0}
}
/* only second array declaration really initializes the array, why? */
#declare b = array[1]{
function{0}
}
#declare a = array[1]{
function{0}
}
#declare A = a[0](0,0,0);
#declare B = b[0](0,0,0);
SCENE #2 end
****************************************************************************
*********
SCENE #2 error message:
#declare B = b[0] <----ERROR
Parse Error: Attemp to access unitialized array element.
Post a reply to this message
|
|
|
|
On Thu, 27 Sep 2001 12:09:32 +0200, "badt" <est### [at] isdnnetil> wrote:
> Parse Error: Attemp to access unitialized array element.
hint: for developers - this works fine
#declare a = function{0}
#declare a = array[1]{function{a(x,y,z)}}
#declare b = array[1]{function{0}}
#declare B = b[0](0,0,0);
#declare A = a[0](0,0,0);
ABX
Post a reply to this message
|
|