(t, x_min, dx)
| 15621 | var steps = []; |
| 15622 | |
| 15623 | var func = function(t, x_min, dx) { |
| 15624 | return dx * (Math.pow(t - 1, 3) + 1) + x_min; |
| 15625 | }; |
| 15626 | |
| 15627 | for (i = 0; i < l; ++i) |
| 15628 | steps.push(func(i / this.STEPS, fromValue, toValue - fromValue)); |
no outgoing calls
no test coverage detected