Iau2006XysSample.js 495 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * An IAU 2006 XYS value sampled at a particular time.
  3. *
  4. * @alias Iau2006XysSample
  5. * @constructor
  6. *
  7. * @param {Number} x The X value.
  8. * @param {Number} y The Y value.
  9. * @param {Number} s The S value.
  10. *
  11. * @private
  12. */
  13. function Iau2006XysSample(x, y, s) {
  14. /**
  15. * The X value.
  16. * @type {Number}
  17. */
  18. this.x = x;
  19. /**
  20. * The Y value.
  21. * @type {Number}
  22. */
  23. this.y = y;
  24. /**
  25. * The S value.
  26. * @type {Number}
  27. */
  28. this.s = s;
  29. }
  30. export default Iau2006XysSample;