source:
node_modules/d3-ease/src/cubic.js@
e4c61dd
| Last change on this file since e4c61dd was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 210 bytes | |
| Line | |
|---|---|
| 1 | export function cubicIn(t) { |
| 2 | return t * t * t; |
| 3 | } |
| 4 | |
| 5 | export function cubicOut(t) { |
| 6 | return --t * t * t + 1; |
| 7 | } |
| 8 | |
| 9 | export function cubicInOut(t) { |
| 10 | return ((t *= 2) <= 1 ? t * t * t : (t -= 2) * t * t + 2) / 2; |
| 11 | } |
Note:
See TracBrowser
for help on using the repository browser.
