UNPKG

cesium

Version:

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

15 lines (13 loc) 241 B
/** * An enum describing the type of interpolation used in a glTF animation. * * @enum {Number} * * @private */ const InterpolationType = { STEP: 0, LINEAR: 1, CUBICSPLINE: 2, }; export default Object.freeze(InterpolationType);