Sha256: 62c18df4310d8e5200153bad6ec149097af6730209283ac5812daa6a16e40533

Contents?: true

Size: 668 Bytes

Versions: 1

Compression:

Stored size: 668 Bytes

Contents

/*global define*/
define([
        './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

1 entries across 1 versions & 1 rubygems

Version Path
cesium-0.18.0 app/assets/javascripts/Core/ReferenceFrame.js