Skip to content

Commit

Permalink
Merge pull request #10447 from CesiumGS/fix-clamping
Browse files Browse the repository at this point in the history
Fix vector polyline clamping
  • Loading branch information
ggetz authored Jun 10, 2022
2 parents 3a28262 + 32b3878 commit 0fcfb6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### 1.94.3 - 2022-06-10

- Fixed a crash with vector tilesets with lines when clamping to terrain or 3D tiles. [#10447](https://github.com/CesiumGS/cesium/pull/10447)

### 1.94.2 - 2022-06-03

- This is an npm only release to fix the improperly published 1.94.1.
Expand Down
2 changes: 1 addition & 1 deletion Source/Scene/Vector3DTileClampedPolylines.js
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ function initialize(polylines) {

promise
.then(function () {
finishVertexArray(polylines);
finishVertexArray(polylines, context);
resolve(polylines);
})
.catch(function (e) {
Expand Down

0 comments on commit 0fcfb6b

Please sign in to comment.