UNPKG

cesium

Version:

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

24 lines (22 loc) 338 B
/** * Constants for identifying well-known reference frames. * * @enum {Number} */ var ReferenceFrame = { /** * The fixed frame. * * @type {Number} * @constant */ FIXED: 0, /** * The inertial frame. * * @type {Number} * @constant */ INERTIAL: 1, }; export default Object.freeze(ReferenceFrame);