123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * File description
- */
- /**
- * Sample class
- * @class Point
- * @param {Object} [coords]
- * @param {Int} coords.x
- * @param {Int} coords.y
- */
- function Point (options) {
- }
- /*
- * This should be skipped
- */
- /**
- * Tells if point was ever initilized with coordinates
- * @property {Boolean} [initilized=false]
- */
- Point.prototype.initilized = false
- /**
- * Moves point by x,y
- * @method move
- * @param {Object} [by]
- * @param {Int} by.x
- * @param {Int} by.y
- */
- Point.prototype.move = function (by) {
- }
|