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
* Fixed broken surface rendering in Columbus View when using the `EllipsoidTerrainProvider`.
12
16
* Optimized polyline bounding spheres.
13
17
* Upgraded Knockout from version 2.2.1 to 2.3.0.
@@ -17,6 +21,7 @@ Beta Releases
17
21
* Added `PolylinePipeline.scaleToGeodeticHeight`.
18
22
*`Viewer` now automatically sets its clock to that of the first added `DataSource`, regardless of how it was added to the `DataSourceCollection`. Previously, this was only done for dropped files by `viewerDragDropMixin`.
19
23
* Added the ability to specify a `minimumTerrainLevel` and `maximumTerrainLevel` when constructing an `ImageryLayer`. The layer will only be shown for terrain tiles within the specified range.
* Creates vertices and indices for the edges of a cube centered at the origin given its dimensions.
162
+
* @memberof BoxGeometryOutline
163
+
*
164
+
* @param {Cartesian3} options.dimensions The width, depth, and height of the box stored in the x, y, and z coordinates of the <code>Cartesian3</code>, respectively.
165
+
*
166
+
* @exception {DeveloperError} options.dimensions is required.
167
+
* @exception {DeveloperError} All dimensions components must be greater than or equal to zero.
168
+
*
169
+
* @example
170
+
* var box = BoxGeometryOutline.fromDimensions({
171
+
* dimensions : new Cartesian3(500000.0, 500000.0, 500000.0)
0 commit comments