Sha256: 7a6c3b8936de924f6c953f3bae77ce56e26933fd2333e7db2f6fafa536bd3d0c
Contents?: true
Size: 699 Bytes
Versions: 15
Compression:
Stored size: 699 Bytes
Contents
/*global define*/ define(function() { "use strict"; /** * An IAU 2006 XYS value sampled at a particular time. * * @alias Iau2006XysSample * @constructor * * @param {Number} x The X value. * @param {Number} y The Y value. * @param {Number} s The S value. */ var Iau2006XysSample = function Iau2006XysSample(x, y, s) { /** * The X value. * @type {Number} */ this.x = x; /** * The Y value. * @type {Number} */ this.y = y; /** * The S value. * @type {Number} */ this.s = s; }; return Iau2006XysSample; });
Version data entries
15 entries across 15 versions & 1 rubygems