@@ -35,15 +35,15 @@ Cesium.Billboard.prototype.show;
3535
3636
3737/**
38- * @type {number }
38+ * @type {boolean }
3939 */
40- Cesium . Billboard . prototype . scale ;
40+ Cesium . Billboard . prototype . sizeInMeters ;
4141
4242
4343/**
4444 * @type {number }
4545 */
46- Cesium . Billboard . prototype . imageIndex ;
46+ Cesium . Billboard . prototype . scale ;
4747
4848
4949/**
@@ -96,12 +96,6 @@ Cesium.BillboardCollection.prototype.add = function(opt_opts) {};
9696Cesium . BillboardCollection . prototype . remove = function ( what ) { } ;
9797
9898
99- /**
100- * @type {boolean } .
101- */
102- Cesium . BillboardCollection . prototype . sizeReal ;
103-
104-
10599/**
106100 * @type {Cesium.TextureAtlas }
107101 */
@@ -335,17 +329,16 @@ Cesium.CameraEventAggregator.prototype.destroy = function() {};
335329
336330
337331/**
338- * @param {Cesium.Cartographic } carto
332+ * @param {Object } props
339333 */
340- Cesium . Camera . prototype . setPositionCartographic = function ( carto ) { } ;
334+ Cesium . Camera . prototype . setView = function ( props ) { } ;
341335
342336
343337/**
344- * @param {Cesium.Cartesian3 } eye .
345- * @param {Cesium.Cartesian3 } target .
346- * @param {Cesium.Cartesian3 } up .
338+ * @param {Cesium.Cartesian3 } target
339+ * @param {Cesium.Cartesian3 } offset
347340 */
348- Cesium . Camera . prototype . lookAt = function ( eye , target , up ) { } ;
341+ Cesium . Camera . prototype . lookAt = function ( target , offset ) { } ;
349342
350343
351344/**
@@ -457,6 +450,18 @@ Cesium.Cartesian3.prototype.y;
457450Cesium . Cartesian3 . prototype . z ;
458451
459452
453+ /**
454+ * @param {number } longitude
455+ * @param {number } latitude
456+ * @param {number= } opt_height
457+ * @param {Cesium.Ellipsoid= } opt_ellipsoid
458+ * @param {Cesium.Cartesian3= } opt_result
459+ * @return {Cesium.Cartesian3 }
460+ */
461+ Cesium . Cartesian3 . fromRadians = function ( longitude , latitude , opt_height ,
462+ opt_ellipsoid , opt_result ) { } ;
463+
464+
460465/**
461466 * @param {Cesium.Cartesian3 } left
462467 * @return {number }
@@ -799,15 +804,15 @@ Cesium.ImageryLayerCollection.prototype.length;
799804
800805
801806/**
802- * @param {number } index
807+ * @param {number } index
803808 * @return {Cesium.ImageryLayer } layer
804809 */
805810Cesium . ImageryLayerCollection . prototype . get = function ( index ) { } ;
806811
807812
808813/**
809814 * @param {Cesium.ImageryLayer } layer
810- * @param {number= } opt_index
815+ * @param {number= } opt_index
811816 */
812817Cesium . ImageryLayerCollection . prototype . add = function ( layer , opt_index ) { } ;
813818
@@ -901,7 +906,7 @@ Cesium.ImageryProvider.prototype.credit;
901906 * @param {number } x The tile X coordinate.
902907 * @param {number } y The tile Y coordinate.
903908 * @param {number } level The tile level.
904- * @return {Object|undefined }
909+ * @return {Object|undefined }
905910 */
906911Cesium . ImageryProvider . prototype . requestImage = function ( x , y , level ) { } ;
907912
@@ -1090,10 +1095,10 @@ Cesium.Matrix4.fromTranslation = function(translation, opt_result) {};
10901095/**
10911096 * @param {Cesium.Matrix4 } left .
10921097 * @param {Cesium.Matrix4 } right .
1093- * @param {Cesium.Matrix4= } opt_result .
1098+ * @param {Cesium.Matrix4 } result .
10941099 * @return {Cesium.Matrix4 } .
10951100 */
1096- Cesium . Matrix4 . multiply = function ( left , right , opt_result ) { } ;
1101+ Cesium . Matrix4 . multiply = function ( left , right , result ) { } ;
10971102
10981103
10991104/**
@@ -1112,19 +1117,19 @@ Cesium.Matrix4.prototype.clone = function(matrix) {};
11121117/**
11131118 * @param {Cesium.Matrix4 } matrix .
11141119 * @param {Cesium.Cartesian3 } point .
1115- * @param {Cesium.Cartesian3= } opt_result .
1120+ * @param {Cesium.Cartesian3 } result .
11161121 * @return {Cesium.Cartesian3 } .
11171122 */
1118- Cesium . Matrix4 . multiplyByPoint = function ( matrix , point , opt_result ) { } ;
1123+ Cesium . Matrix4 . multiplyByPoint = function ( matrix , point , result ) { } ;
11191124
11201125
11211126/**
11221127 * @param {Cesium.Matrix4 } matrix .
11231128 * @param {Cesium.Cartesian4 } point .
1124- * @param {Cesium.Cartesian4= } opt_result .
1129+ * @param {Cesium.Cartesian4 } result .
11251130 * @return {Cesium.Cartesian4 } .
11261131 */
1127- Cesium . Matrix4 . multiplyByVector = function ( matrix , point , opt_result ) { } ;
1132+ Cesium . Matrix4 . multiplyByVector = function ( matrix , point , result ) { } ;
11281133
11291134
11301135/**
@@ -1182,6 +1187,12 @@ Cesium.PerspectiveFrustrum.prototype.aspectRatio;
11821187Cesium . PerspectiveFrustrum . prototype . far ;
11831188
11841189
1190+ /**
1191+ * @type {number }
1192+ */
1193+ Cesium . PerspectiveFrustrum . prototype . fov ;
1194+
1195+
11851196/**
11861197 * @type {number }
11871198 */
@@ -1595,4 +1606,4 @@ Cesium.BingMapsStyle.AERIAL;
15951606Cesium . BingMapsStyle . AERIAL_WITH_LABELS ;
15961607
15971608/** @type {!Cesium.BingMapsStyle } */
1598- Cesium . BingMapsStyle . ROAD ;
1609+ Cesium . BingMapsStyle . ROAD ;
0 commit comments