I'm afraid I have to say goodbye to Blogger. I decided to move this blog to my own domain and use Wordpress as blog engine. All posts have been exported to new domain http://fastas3.com/. See you soo...
Recently, I've read a very nice article about cast speed in AS3 and made some experimets. While doing my own speed tests, I came up with strange results....
When you have a POSITIVE floating point number and want to round it down, it's better to use uint(2.33) than Math.floor(2.33). Casting positive number to uint directly is more than 17x (!!!) faster then Math.floor()....