UNPKG

sketch

Version:

Sketch canvas drawing component

19 lines (15 loc) 202 B
/** * Expose `Point`. */ module.exports = Point; /** * Initialize a new point. * * @param {Number} x * @param {Number} y * @api public */ function Point(x, y) { this.x = x; this.y = y; }