You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
338 B
JavaScript

/**
* 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);