sample.js 508 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * File description
  3. */
  4. /**
  5. * Sample class
  6. * @class Point
  7. * @param {Object} [coords]
  8. * @param {Int} coords.x
  9. * @param {Int} coords.y
  10. */
  11. function Point (options) {
  12. }
  13. /*
  14. * This should be skipped
  15. */
  16. /**
  17. * Tells if point was ever initilized with coordinates
  18. * @property {Boolean} [initilized=false]
  19. */
  20. Point.prototype.initilized = false
  21. /**
  22. * Moves point by x,y
  23. * @method move
  24. * @param {Object} [by]
  25. * @param {Int} by.x
  26. * @param {Int} by.y
  27. */
  28. Point.prototype.move = function (by) {
  29. }