Skip to content

Commit

Permalink
add to CONTRIBUTORS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
duvifn committed Nov 6, 2016
1 parent c0cf125 commit ca73a33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
* [Tom Payne](https://github.com/twpayne)
* [Leesa Fini](https://github.com/leesafini)
* [Victor Malaret](https://github.com/malaretv)
* [David Friedman](https://github.com/duvifn)
4 changes: 2 additions & 2 deletions Specs/Core/CartographicSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ defineSuite([
}).toThrowDeveloperError();
});

it('fromCartesian works with value that is above the ellipsoid surface', function() {
it('fromCartesian works with a value that is above the ellipsoid surface', function() {
var cartographic1 = Cartographic.fromDegrees(35.766989, 33.333602, 3000);
var cartesian1 = Cartesian3.fromRadians(cartographic1.longitude, cartographic1.latitude, cartographic1.height);
var cartographic2 = Cartographic.fromCartesian(cartesian1);

expect(cartographic2).toEqualEpsilon(cartographic1, CesiumMath.EPSILON8);
});

it('fromCartesian works with value that is bellow the ellipsoid surface', function() {
it('fromCartesian works with a value that is bellow the ellipsoid surface', function() {
var cartographic1 = Cartographic.fromDegrees(35.766989, 33.333602, -3000);
var cartesian1 = Cartesian3.fromRadians(cartographic1.longitude, cartographic1.latitude, cartographic1.height);
var cartographic2 = Cartographic.fromCartesian(cartesian1);
Expand Down

0 comments on commit ca73a33

Please sign in to comment.