UNPKG
@dspacev-bundle/vue-cesium
Version:
latest (3.24.2)
3.24.2
3.24.1
3.15.2
3.15.1
3.1.5
3.1.4
Vue 3.x components for CesiumJS.
github.com/zouyaoji/vue-cesium
zouyaoji/vue-cesium
@dspacev-bundle/vue-cesium
/
es
/
components
/
providers
/
baidu
/
Pixel.mjs
14 lines
(12 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
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
; } }
export
{
Pixel
as
default
};
//# sourceMappingURL=Pixel.mjs.map