vue-cesium
Version:
Vue 3.x components for CesiumJS.
18 lines (14 loc) • 324 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true });
;
class Pixel {
constructor(x, y) {
this.x = x || 0;
this.y = y || 0;
}
equals(other) {
return other && other.x === this.x && other.y === this.y;
}
}
exports["default"] = Pixel;
//# sourceMappingURL=Pixel.js.map
;