/ Published in: ActionScript 3
URL: http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/
Expand |
Embed | Plain Text
x = x / 2; x = x / 64; //equals: x = x >> 1; x = x >> 6;
You need to login to post a comment.
URL: http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/
x = x / 2; x = x / 64; //equals: x = x >> 1; x = x >> 6;
You need to login to post a comment.