1
1
/*global define*/
2
2
define ( [
3
3
'../Core/Cartesian3' ,
4
+ '../Core/Color' ,
4
5
'../Core/defaultValue' ,
5
6
'../Core/defined' ,
6
7
'../Core/defineProperties' ,
@@ -22,6 +23,7 @@ define([
22
23
'./SceneMode'
23
24
] , function (
24
25
Cartesian3 ,
26
+ Color ,
25
27
defaultValue ,
26
28
defined ,
27
29
defineProperties ,
@@ -54,15 +56,17 @@ define([
54
56
* @alias SkyAtmosphere
55
57
* @constructor
56
58
*
57
- * @param {Ellipsoid } [ellipsoid=Ellipsoid.WGS84] The ellipsoid that the atmosphere is drawn around.
59
+ * @param {Object } [options] Object with the following properties:
60
+ * @param {Ellipsoid } [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid that the atmosphere is drawn around.
61
+ * @param {Color } [options.color=Color(1.0, 1.0, 1.0, 1.0)] The color of atmosphere.
58
62
*
59
63
* @example
60
64
* scene.skyAtmosphere = new Cesium.SkyAtmosphere();
61
65
*
62
66
* @see Scene.skyAtmosphere
63
67
*/
64
- function SkyAtmosphere ( ellipsoid ) {
65
- ellipsoid = defaultValue ( ellipsoid , Ellipsoid . WGS84 ) ;
68
+ function SkyAtmosphere ( options ) {
69
+ options = defaultValue ( options , defaultValue . EMPTY_OBJECT ) ;
66
70
67
71
/**
68
72
* Determines if the atmosphere is shown.
@@ -71,18 +75,17 @@ define([
71
75
* @default true
72
76
*/
73
77
this . show = true ;
74
-
75
- this . _ellipsoid = ellipsoid ;
78
+ this . _ellipsoid = defaultValue ( options . ellipsoid , Ellipsoid . WGS84 ) ;
79
+ this . _color = defaultValue ( options . color , new Color ( ) ) ;
76
80
this . _command = new DrawCommand ( {
77
81
owner : this
78
82
} ) ;
79
83
this . _spSkyFromSpace = undefined ;
80
84
this . _spSkyFromAtmosphere = undefined ;
81
-
82
85
this . _fCameraHeight = undefined ;
83
86
this . _fCameraHeight2 = undefined ;
84
- this . _outerRadius = Cartesian3 . maximumComponent ( Cartesian3 . multiplyByScalar ( ellipsoid . radii , 1.025 , new Cartesian3 ( ) ) ) ;
85
- var innerRadius = ellipsoid . maximumRadius ;
87
+ this . _outerRadius = Cartesian3 . maximumComponent ( Cartesian3 . multiplyByScalar ( this . _ellipsoid . radii , 1.025 , new Cartesian3 ( ) ) ) ;
88
+ var innerRadius = this . _ellipsoid . maximumRadius ;
86
89
var rayleighScaleDepth = 0.25 ;
87
90
88
91
var that = this ;
@@ -111,6 +114,15 @@ define([
111
114
} ,
112
115
fScaleOverScaleDepth : function ( ) {
113
116
return ( 1.0 / ( that . _outerRadius - innerRadius ) ) / rayleighScaleDepth ;
117
+ } ,
118
+ fRedColor : function ( ) {
119
+ return that . _color . red ;
120
+ } ,
121
+ fGreenColor : function ( ) {
122
+ return that . _color . green ;
123
+ } ,
124
+ fBlueColor : function ( ) {
125
+ return that . _color . blue ;
114
126
}
115
127
} ;
116
128
}
@@ -127,7 +139,19 @@ define([
127
139
get : function ( ) {
128
140
return this . _ellipsoid ;
129
141
}
130
- }
142
+ } ,
143
+ /**
144
+ * Gets the color of the atmosphere.
145
+ * @memberof SkyAtmosphere.prototype
146
+ *
147
+ * @type {Color }
148
+ * @readonly
149
+ */
150
+ color : {
151
+ get : function ( ) {
152
+ return this . _color ;
153
+ }
154
+ }
131
155
} ) ;
132
156
133
157
/**
@@ -239,7 +263,7 @@ define([
239
263
*
240
264
* @example
241
265
* skyAtmosphere = skyAtmosphere && skyAtmosphere.destroy();
242
- *
266
+ *
243
267
* @see SkyAtmosphere#isDestroyed
244
268
*/
245
269
SkyAtmosphere . prototype . destroy = function ( ) {
0 commit comments