UNPKG

image-vectorizer

Version:

Potrace in Javascript, for NodeJS and Browser

13 lines (10 loc) 163 B
function Point(x, y) { this.x = x || 0 this.y = y || 0 } Point.prototype = { copy: function () { return new Point(this.x, this.y) } } export default Point