UNPKG
@doegis/core
Version:
latest (0.1.0)
0.1.0
DOE GIS API
@doegis/core
/
views
/
3d
/
terrain
/
ElevationBounds.js
3 lines
(1 loc)
•
220 B
JavaScript
View Raw
1
2
3
class
s
{
constructor
(s=
0
,a=
0
){
this
.min=s,
this
.max=a,
this
.level=
0
,
this
.hasNoDataValues=!
1
}copyFrom(s){
this
.min=s.min,
this
.max=s.max,
this
.level=s.level,
this
.hasNoDataValues=s.hasNoDataValues}}export{s
as
ElevationBounds};