1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
| /**
| * Constants to determine how an interpolated value is extrapolated
| * when querying outside the bounds of available data.
| *
| * @exports ExtrapolationType
| *
| * @see SampledProperty
| */
| var ExtrapolationType = {
| /**
| * No extrapolation occurs.
| *
| * @type {Number}
| * @constant
| */
| NONE : 0,
|
| /**
| * The first or last value is used when outside the range of sample data.
| *
| * @type {Number}
| * @constant
| */
| HOLD : 1,
|
| /**
| * The value is extrapolated.
| *
| * @type {Number}
| * @constant
| */
| EXTRAPOLATE : 2
| };
| export default Object.freeze(ExtrapolationType);
|
|