(t, x_min, dx)
| 15707 | var steps = []; |
| 15708 | |
| 15709 | var func = function(t, x_min, dx) { |
| 15710 | return dx * (Math.pow(t - 1, 3) + 1) + x_min; |
| 15711 | }; |
| 15712 | |
| 15713 | for (i = 0; i < l; ++i) |
| 15714 | steps.push(func(i / this.STEPS, fromValue, toValue - fromValue)); |
no outgoing calls
no test coverage detected