node-fontnik/test/format/vectortilepoint.js
2014-02-04 18:14:09 -05:00

12 lines
222 B
JavaScript

'use strict';
module.exports = VectorTilePoint;
function VectorTilePoint(x, y) {
this.x = x;
this.y = y;
}
VectorTilePoint.prototype.toString = function() {
return "Point(" + this.x + ", " + this.y + ")";
};