@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
24 lines (22 loc) • 340 B
JavaScript
/**
* 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,
};
export default Object.freeze(ReferenceFrame);