UNPKG
casc-cesium
Version:
latest (3.0.12)
3.0.12
3.0.11
3.0.10-beta.0
Vue 3.x components for CesiumJS.
casc-cesium
/
es
/
components
/
providers
/
baidu
/
Pixel.mjs
13 lines
(11 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
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