mirror of https://github.com/CesiumGS/cesium.git
24 lines
340 B
JavaScript
24 lines
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);
|