updateFloor(0, @drawAdditivePixel(), 0.0, 0.0, 1.0, 1.0, RGB(2, 0, 1) << 32 | RGB(8, 8, 8 ), 1 << 15)
and
updateFloor(0, @drawAdditivePixel(), 0.0, 0.0, 1.0, 1.0, RGB(0, 0, 0) << 32 | RGB(1, 1, 1), 1 << 16)
Show the error I was posted above because the "<<32"
Fire anim...
Re: Fire anim...
Sorry, I don't have any code from that age

I searched on YouTube but only found two things (none was uploaded by me):
1.- Alan Uno, a natural language AI program (Spanish only) https://www.youtube.com/watch?v=R4N75l3 ... enymetanol
2.- Very bad and short intro (war between groups) on the time when a cube with 48 faces was dificult

Re: Fire anim...
Hi caronte3d,
1st, very good the 2 clips. Futurist. I did not ask you to show us, knowing the time takes it all : what it belongs to you, and what the people of now are not easily able to realize, through the technical context in the past.
2nd, for the shift error, test just LSQ() and RSQ() procedures that I gave on bottom of my last message.
Also if... is ok, then no problem to delete the last errors you mention.
x.q << 32 is unable on x86 and might be replaced with :
And 32 is the right shift value. If I ve time, I ll try to find the x86 compiler version to give a final version.
1st, very good the 2 clips. Futurist. I did not ask you to show us, knowing the time takes it all : what it belongs to you, and what the people of now are not easily able to realize, through the technical context in the past.
2nd, for the shift error, test just LSQ() and RSQ() procedures that I gave on bottom of my last message.
Also if...
Code: Select all
a.q & b.q
x.q << 32 is unable on x86 and might be replaced with :
Code: Select all
x.q = LSQ(x, 32)