UNPKG

cesium

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

36 lines (32 loc) 774 B
/** * 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);