Sha256: 3e840689b8a44fd9fb8ea44bf5e352b38e48c4ab0c7f0926ef39e0f32c5be914
Contents?: true
Size: 654 Bytes
Versions: 9
Compression:
Stored size: 654 Bytes
Contents
/*global define*/ define(['Core/Enumeration'], function( Enumeration) { "use strict"; /** * Constants for identifying well-known reference frames. * * @exports ReferenceFrame */ var ReferenceFrame = { /** * The fixed frame. * * @type {Enumeration} * @constant * @default 0 */ FIXED : new Enumeration(0, 'FIXED'), /** * The inertial frame. * * @type {Enumeration} * @constant * @default 1 */ INERTIAL : new Enumeration(1, 'INERTIAL') }; return ReferenceFrame; });
Version data entries
9 entries across 9 versions & 1 rubygems