UNPKG

image-vectorizer

Version:

Potrace in Javascript, for NodeJS and Browser

10 lines (7 loc) 152 B
function Quad() { this.data = [0, 0, 0, 0, 0, 0, 0, 0, 0] } Quad.prototype.at = function (x, y) { return this.data[x * 3 + y] } export default Quad