Skip to content

Commit

Permalink
cleanup, CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
hpinkos committed Jun 12, 2020
1 parent 94aac1e commit 63c55bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

### 1.71 - 2020-07-01

##### Fixes :wrench:

- Fixed error with `WallGeoemtry` when there were adjacent positions with very close values [#8952](https://github.com/CesiumGS/cesium/pull/8952)

### 1.70.1 - 2020-06-10

##### Additions :tada:
Expand Down
9 changes: 0 additions & 9 deletions Specs/Core/WallGeometrySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,6 @@ describe("Core/WallGeometry", function () {
var positions = w.attributes.position.values;
expect(positions.length).toEqual(numPositions * 3);
expect(w.indices.length).toEqual(numTriangles * 3);

var cartographic = ellipsoid.cartesianToCartographic(
Cartesian3.fromArray(positions, 0)
);
expect(cartographic.height).toEqualEpsilon(0.0, CesiumMath.EPSILON8);

cartographic = ellipsoid.cartesianToCartographic(
Cartesian3.fromArray(positions, 3)
);
});

it("does not clean positions that add up past EPSILON10", function () {
Expand Down

0 comments on commit 63c55bd

Please sign in to comment.