mirror of
https://github.com/mapbox/node-fontnik.git
synced 2026-01-25 16:02:44 +00:00
12 lines
222 B
JavaScript
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 + ")";
|
|
};
|