You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Computes the linear interpolation or extrapolation at t using the provided cartesians.
598
598
* @memberof Cartesian3
599
599
*
600
-
* @param start The value corresponding to t at 0.0.
601
-
* @param end The value corresponding to t at 1.0.
602
-
* @param t The point along t at which to interpolate.
600
+
* @param{Cartesian3} start The value corresponding to t at 0.0.
601
+
* @param{Cartesian3} end The value corresponding to t at 1.0.
602
+
* @param{Number} t The point along t at which to interpolate.
603
603
* @param {Cartesian3} [result] The object onto which to store the result.
604
604
* @returns {Cartesian3} The modified result parameter or a new Cartesian3 instance if one was not provided.
605
605
*/
@@ -773,8 +773,8 @@ define([
773
773
*
774
774
* @param {Number} longitude The longitude, in degrees
775
775
* @param {Number} latitude The latitude, in degrees
776
-
* @param {Number} [height = 0] The height, in meters, above the ellipsoid.
777
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the position lies.
776
+
* @param {Number} [height=0.0] The height, in meters, above the ellipsoid.
777
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the position lies.
778
778
* @param {Cartesian3} [result] The object onto which to store the result.
779
779
*
780
780
* @returns {Cartesian3} The position
@@ -807,8 +807,8 @@ define([
807
807
*
808
808
* @param {Number} longitude The longitude, in radians
809
809
* @param {Number} latitude The latitude, in radians
810
-
* @param {Number} [height = 0] The height, in meters, above the ellipsoid.
811
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the position lies.
810
+
* @param {Number} [height=0.0] The height, in meters, above the ellipsoid.
811
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the position lies.
812
812
* @param {Cartesian3} [result] The object onto which to store the result.
813
813
*
814
814
* @returns {Cartesian3} The position
@@ -847,7 +847,7 @@ define([
847
847
* @memberof Cartesian3
848
848
*
849
849
* @param {Number[]} coordinates A list of longitude and latitude values. Values alternate [longitude, latitude, longitude, latitude...].
850
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the coordinates lie.
850
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the coordinates lie.
851
851
* @param {Cartesian3[]} [result] An array of Cartesian3 objects to store the result.
852
852
*
853
853
* @returns {Cartesian3[]} The array of positions.
@@ -875,7 +875,7 @@ define([
875
875
* @memberof Cartesian3
876
876
*
877
877
* @param {Number[]} coordinates A list of longitude and latitude values. Values alternate [longitude, latitude, longitude, latitude...].
878
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the coordinates lie.
878
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the coordinates lie.
879
879
* @param {Cartesian3[]} [result] An array of Cartesian3 objects to store the result.
880
880
*
881
881
* @returns {Cartesian3[]} The array of positions.
@@ -917,7 +917,7 @@ define([
917
917
* @memberof Cartesian3
918
918
*
919
919
* @param {Number[]} coordinates A list of longitude, latitude and height values. Values alternate [longitude, latitude, height,, longitude, latitude, height...].
920
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the position lies.
920
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the position lies.
921
921
* @param {Cartesian3[]} [result] An array of Cartesian3 objects to store the result.
922
922
*
923
923
* @returns {Cartesian3[]} The array of positions.
@@ -953,7 +953,7 @@ define([
953
953
* @memberof Cartesian3
954
954
*
955
955
* @param {Number[]} coordinates A list of longitude, latitude and height values. Values alternate [longitude, latitude, height,, longitude, latitude, height...].
956
-
* @param {Ellipsoid} [ellipsoid = Ellipsoid.WGS84] The ellipsoid on which the position lies.
956
+
* @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the position lies.
957
957
* @param {Cartesian3[]} [result] An array of Cartesian3 objects to store the result.
Copy file name to clipboardexpand all lines: Source/Core/CorridorGeometry.js
+2-2
Original file line number
Diff line number
Diff line change
@@ -626,14 +626,14 @@ define([
626
626
* @alias CorridorGeometry
627
627
* @constructor
628
628
*
629
-
* @param {Cartesian3[]} options.positions An array of {Cartesain3} positions that define the center of the corridor.
629
+
* @param {Cartesian3[]} options.positions An array of positions that define the center of the corridor.
630
630
* @param {Number} options.width The distance between the edges of the corridor in meters.
631
631
* @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
632
632
* @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
633
633
* @param {Number} [options.height=0] The distance in meters between the ellipsoid surface and the positions.
634
634
* @param {Number} [options.extrudedHeight] The distance in meters between the ellipsoid surface and the extrusion.
635
635
* @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
636
-
* @param {Boolean} [options.cornerType = CornerType.ROUNDED] Determines the style of the corners.
636
+
* @param {Boolean} [options.cornerType=CornerType.ROUNDED] Determines the style of the corners.
Copy file name to clipboardexpand all lines: Source/Core/CorridorOutlineGeometry.js
+2-2
Original file line number
Diff line number
Diff line change
@@ -306,13 +306,13 @@ define([
306
306
* @alias CorridorOutlineGeometry
307
307
* @constructor
308
308
*
309
-
* @param {Cartesian3[]} options.positions An array of {Cartesain3} positions that define the center of the corridor outline.
309
+
* @param {Cartesian3[]} options.positions An array of positions that define the center of the corridor outline.
310
310
* @param {Number} options.width The distance between the edges of the corridor outline.
311
311
* @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
312
312
* @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
313
313
* @param {Number} [options.height=0] The distance between the ellipsoid surface and the positions.
314
314
* @param {Number} [options.extrudedHeight] The distance between the ellipsoid surface and the extrusion.
315
-
* @param {Boolean} [options.cornerType = CornerType.ROUNDED] Determines the style of the corners.
315
+
* @param {Boolean} [options.cornerType=CornerType.ROUNDED] Determines the style of the corners.
0 commit comments