Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configurable volume width for sampleHeight and clampToHeight #7287

Merged
merged 5 commits into from
Jan 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
==========

### 1.54 - 2019-02-01

##### Deprecated :hourglass_flowing_sand:
* `Scene.clampToHeight` now takes an optional `width` argument before the `result` argument. The previous function definition will no longer work in 1.56. [#7287](https://github.com/AnalyticalGraphicsInc/cesium/pull/7287)

##### Additions :tada:
* Added the ability to specify the width of the intersection volume for `Scene.sampleHeight`, `Scene.clampToHeight`, `Scene.sampleHeightMostDetailed`, and `Scene.clampToHeightMostDetailed`. [#7287](https://github.com/AnalyticalGraphicsInc/cesium/pull/7287)

### 1.53 - 2019-01-02

##### Additions :tada:
Expand Down
2 changes: 1 addition & 1 deletion Source/Scene/Cesium3DTileset.js
Original file line number Diff line number Diff line change
Expand Up @@ -1973,7 +1973,7 @@ define([
var passes = frameState.passes;
var isRender = passes.render;
var isPick = passes.pick;
var isAsync = passes.async;
var isAsync = passes.asynchronous;

var statistics = tileset._statistics;
statistics.clear();
Expand Down
4 changes: 2 additions & 2 deletions Source/Scene/FrameState.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ define([
offscreen : false,

/**
* <code>true</code> if the primitive should update for an async pass, <code>false</code> otherwise.
* <code>true</code> if the primitive should update for an asynchronous pass, <code>false</code> otherwise.
* @type {Boolean}
* @default false
*/
async : false
asynchronous : false
};

/**
Expand Down
Loading