UNPKG
vue-cesium-jyt
Version:
latest (3.0.10-fix2)
3.0.10
3.0.10-fix2
3.0.10-fix1
Vue 3.x components for CesiumJS.
github.com/brantroy/vue-cesium
brantroy/vue-cesium
vue-cesium-jyt
/
lib
/
components
/
providers
/
baidu
/
Pixel.js
17 lines
(13 loc)
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'
;
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