Skip to content

Commit

Permalink
Update CHANGES, fix a test to do what it actually claims to do.
Browse files Browse the repository at this point in the history
  • Loading branch information
mramato committed Sep 19, 2012
1 parent 2006a96 commit 878aba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Beta Releases
* The new Sandcastle live editor and demo gallery replace the Sandbox and Skeleton examples.
* Improved picking performance and accuracy.
* Added EllipsoidPrimitive for visualizing ellipsoids and spheres.
* Added `DynamicEllipsoid` and `DynamicEllipsoidVisualizer` which use the new `EllipsoidPrimitive` to implement ellipsoids in CZML.
* `Extent` functions now take optional result parameters. Also added `getCenter`, `intersectWith`, and `contains` functions.
* Add new utility class, `DynamicObjectView` for tracking a DynamicObject with the camera across scene modes; also hooked up CesiumViewerWidget to use it.
* Added `enableTranslate`, `enableZoom`, and `enableRotate` properties to `Camera2DController` to selectively toggle camera behavior. All values default to `true`.
Expand Down
1 change: 1 addition & 0 deletions Specs/DynamicScene/DynamicEllipsoidVisualizerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ defineSuite([
var testObject = dynamicObjectCollection.getOrCreateObject('test');
testObject.position = new MockProperty(new Cartesian3(1234, 5678, 9101112));
testObject.ellipsoid = new DynamicEllipsoid();
testObject.ellipsoid.radii = new MockProperty(new Cartesian3(1, 2, 3));
visualizer.update(new JulianDate());
expect(scene.getPrimitives().getLength()).toEqual(0);
});
Expand Down

0 comments on commit 878aba8

Please sign in to comment.