UNPKG

@cesium/engine

Version:

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

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