|
|
pov 3.5 b 10
win
With the following, w4[0].t is not set correctly.
w4[1].t and w4[2].t are set correctly.
Curiously, this does not happen with an array of only 2 elements.
#local a = array[3] {0.123, 0.456, 0.789}
#local w = array[3] {x, y, z}
#local w4 = array[3]
#local ix = 0;
#while (ix<3)
#declare w4[ix] = a[ix]*t + w[ix];
#debug concat(str(a[ix], 6, 3), " ", str(w4[ix].t,6,3),"\n")
#local ix=ix+1;
#end
Post a reply to this message
|
|