main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
694 bytes
|
Line | |
---|
1 | export declare type TEasing = (time: number) => number;
|
---|
2 | export interface IEasingMap {
|
---|
3 | linear: TEasing;
|
---|
4 | quadratic: TEasing;
|
---|
5 | cubic: TEasing;
|
---|
6 | elastic: TEasing;
|
---|
7 | inQuad: TEasing;
|
---|
8 | outQuad: TEasing;
|
---|
9 | inOutQuad: TEasing;
|
---|
10 | inCubic: TEasing;
|
---|
11 | outCubic: TEasing;
|
---|
12 | inOutCubic: TEasing;
|
---|
13 | inQuart: TEasing;
|
---|
14 | outQuart: TEasing;
|
---|
15 | inOutQuart: TEasing;
|
---|
16 | inQuint: TEasing;
|
---|
17 | outQuint: TEasing;
|
---|
18 | inOutQuint: TEasing;
|
---|
19 | inSine: TEasing;
|
---|
20 | outSine: TEasing;
|
---|
21 | inOutSine: TEasing;
|
---|
22 | inExpo: TEasing;
|
---|
23 | outExpo: TEasing;
|
---|
24 | inOutExpo: TEasing;
|
---|
25 | inCirc: TEasing;
|
---|
26 | outCirc: TEasing;
|
---|
27 | inOutCirc: TEasing;
|
---|
28 | }
|
---|
29 | export declare const easing: IEasingMap;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.