poly.exponent(e)
Returns a new polynomial easing with the specified exponent e. For example, to create equivalents of linear, quad, and cubic:
1 2 3 | var linear = d3.easePoly.exponent(1), quad = d3.easePoly.exponent(2), cubic = d3.easePoly.exponent(3); |
Please login to continue.