[flexcoders] Re: Random Number genrator

2009-12-07 Thread cuttenv
you can use the perlin noise --- In flexcoders@yahoogroups.com, "Shanimal" wrote: > > > I think you are looking for a psuedo random number generator > > http://en.wikipedia.org/wiki/Linear_congruential_generator > > Where you supply an initial value and it always returns the same sequence. >

[flexcoders] Re: Random Number genrator

2009-12-06 Thread Shanimal
http://lab.polygonal.de/2007/04/21/a-good-pseudo-random-number-generator-prng/

[flexcoders] Re: Random Number genrator

2009-12-06 Thread Shanimal
I think you are looking for a psuedo random number generator http://en.wikipedia.org/wiki/Linear_congruential_generator Where you supply an initial value and it always returns the same sequence. It should be pretty easy to find a javascript LCG script and convert it to as3. -Shannon --- In fl