|
examples:
factor==10 would make the animation ten time slower
factor==0.1 would make the animation ten time faster
only if all the numbers in the array are bigger then 10
Say we have this times series 1, 2, 20
now if we call with factor 0.1 we get the series 1, 1, 2
Note !! If we call again with factor=10
we get back the series we started with 1,1,2 => 1,2,20
The mechanism is smart enough to deal with that.
|