Sha256: 8f42cc3478bb2d2e79b6243676c3196238e76e4912abe9aee992be2a3b094f1d

Contents?: true

Size: 1.56 KB

Versions: 6

Compression:

Stored size: 1.56 KB

Contents

/*global define*/
define(['Core/defined', 'Core/DeveloperError'], function(
        defined,
        DeveloperError) {
    "use strict";

    /**
     * A structure containing the orientation data computed at a particular time. The data
     * represents the direction of the pole of rotation and the rotation about that pole.
     * <p>
     * These parameters correspond to the parameters in the Report from the IAU/IAG Working Group
     * except that they are expressed in radians.
     * </p>
     * @exports IauOrientationParameters
     *
     * @private
     */
    var IauOrientationParameters = function(rightAscension, declination, rotation, rotationRate) {
        /**
         * The right ascension of the north pole of the body with respect to
         * the International Celestial Reference Frame, in radians.
         * @type {Number}
         */
        this.rightAscension = rightAscension;

        /**
         * The declination of the north pole of the body with respect to
         * the International Celestial Reference Frame, in radians.
         * @type {Number}
         */
        this.declination = declination;

        /**
         * The rotation about the north pole used to align a set of axes with
         * the meridian defined by the IAU report, in radians.
         * @type {Number}
         */
        this.rotation = rotation;

        /**
         * The instantaneous rotation rate about the north pole, in radians per second.
         * @type {Number}
         */
        this.rotationRate = rotationRate;
    };

    return IauOrientationParameters;
});

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cesium-0.25.0 app/assets/javascripts/Core/IauOrientationParameters.js
cesium-0.24.1 app/assets/javascripts/Core/IauOrientationParameters.js
cesium-0.24.0 app/assets/javascripts/Core/IauOrientationParameters.js
cesium-0.23.0 app/assets/javascripts/Core/IauOrientationParameters.js
cesium-0.22.0 app/assets/javascripts/Core/IauOrientationParameters.js
cesium-0.21.1 app/assets/javascripts/Core/IauOrientationParameters.js