|
|
Chris Huff wrote:
>
> If you use, seed(444), you will get a different sequence from
> what you would get if you used seed(999), and that sequence
> will always be the same.
Yes, and thus your image will always render the same.
As for the initial question, do the following :
s = seed(1234) ;
[...] A+random(s) [...]
This way you will get a number between A and A+1.
And if the result is not satisfying, just change 1234 into something
else.
--
JM
Post a reply to this message
|
|