cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
25 lines (22 loc) • 461 B
JavaScript
/**
* Constants for identifying well-known reference frames.
*
* @exports ReferenceFrame
*/
var ReferenceFrame = {
/**
* The fixed frame.
*
* @type {Number}
* @constant
*/
FIXED : 0,
/**
* The inertial frame.
*
* @type {Number}
* @constant
*/
INERTIAL : 1
};
export default Object.freeze(ReferenceFrame);