-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Improve Camera Flights #2825
Merged
Improve Camera Flights #2825
Changes from 20 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
4abb5ed
New camera flights in 3D and Columbus view. Orientation is a WIP.
bagnell 344fb79
Merge branch 'master' into flights
bagnell c305c1a
Fix the direction of the heading when linearly interpolating.
bagnell b7ebaea
Fix the direction of the roll when linearly interpolating.
bagnell 9c07e21
Fix flights in Columbus view.
bagnell c8db4b0
Add quadtratic function for the height during flights.
bagnell 34eafd8
Merge branch 'master' into flights
bagnell 33aa598
Replace quadratic height function with eighth degree polynomial and c…
bagnell 8c4811c
Tweaking numbers per conversation with Dan.
emackey 8e9c965
Add fly to altitude to Columbus view.
bagnell ec9219c
Rewrite 2D flights and some clean-up.
bagnell 63d96ac
Clean up logic for creating tweens for flight animations.
bagnell cceb9be
Fix flying to bounding sphere.
bagnell 49b0f19
Simplify home view flights.
bagnell e825371
Compute heading/pitch/roll from vectors for backwards compatibility.
bagnell 9212dcf
Move altitude and easing function parameters up to Camera.flyTo.
bagnell d647e4b
Add doc for the easing function.
bagnell 6fb8bdb
Removes deprecated camera clone.
bagnell d271c0a
Fix flights in 2D.
bagnell 8cec20d
Fix flights to rectangles that cross the IDL in 2D and COlumbus view.
bagnell 1434d98
Fix/update tests.
bagnell 0e27676
Deprecated Hermite and Catmull-Rom splines.
bagnell 978d241
Rename altitude -> maximumHeight.
bagnell a215524
Mopdify home button and geocoder to use the default computed flight d…
bagnell d22e22d
Update Camera Sandcastle example.
bagnell 8746305
Merge branch 'master' into flights
bagnell 19e85e9
Change easing function for flights from space, like the home view.
bagnell 121fd39
Update CHANGES.md.
bagnell 0512a5f
Merge branch 'master' into flights
bagnell a204fb6
Fix flying to bounding spheres.
bagnell 9bd5471
Update CHANGES.md.
bagnell 8307f82
Merge branch 'master' into flights
bagnell 964b7fc
Speed up default flights.
bagnell be37c09
Remove deprecation from CatmullRomSpline and HermiteSpline.
bagnell 7585dd1
Merge branch 'master' into flights
bagnell 1cbcc37
Fix flying to a bounding sphere when the pitch was -90 degrees.
bagnell aca37d6
Merge branch 'master' into flights
bagnell 7bce4d7
Merge master to flights
pjcozzi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,6 @@ define([ | |
* | ||
* @namespace | ||
* @alias EasingFunction | ||
* | ||
* @private | ||
*/ | ||
var EasingFunction = { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -508,6 +508,31 @@ define([ | |
} | ||
} | ||
|
||
function getHeading(direction, up) { | ||
var heading; | ||
if (!CesiumMath.equalsEpsilon(Math.abs(direction.z), 1.0, CesiumMath.EPSILON3)) { | ||
heading = Math.atan2(direction.y, direction.x) - CesiumMath.PI_OVER_TWO; | ||
} else { | ||
heading = Math.atan2(up.y, up.x) - CesiumMath.PI_OVER_TWO; | ||
} | ||
|
||
return CesiumMath.TWO_PI - CesiumMath.zeroToTwoPi(heading); | ||
} | ||
|
||
function getPitch(direction) { | ||
return CesiumMath.PI_OVER_TWO - CesiumMath.acosClamped(direction.z); | ||
} | ||
|
||
function getRoll(direction, up, right) { | ||
var roll = 0.0; | ||
if (!CesiumMath.equalsEpsilon(Math.abs(direction.z), 1.0, CesiumMath.EPSILON3)) { | ||
roll = Math.atan2(-right.z, up.z); | ||
roll = CesiumMath.zeroToTwoPi(roll + CesiumMath.TWO_PI); | ||
} | ||
|
||
return roll; | ||
} | ||
|
||
var scratchHPRMatrix1 = new Matrix4(); | ||
var scratchHPRMatrix2 = new Matrix4(); | ||
|
||
|
@@ -663,19 +688,11 @@ define([ | |
var transform = Transforms.eastNorthUpToFixedFrame(this.positionWC, ellipsoid, scratchHPRMatrix2); | ||
this._setTransform(transform); | ||
|
||
var direction = this.direction; | ||
var up = this.up; | ||
|
||
var heading; | ||
if (!CesiumMath.equalsEpsilon(Math.abs(direction.z), 1.0, CesiumMath.EPSILON3)) { | ||
heading = Math.atan2(direction.y, direction.x) - CesiumMath.PI_OVER_TWO; | ||
} else { | ||
heading = Math.atan2(up.y, up.x) - CesiumMath.PI_OVER_TWO; | ||
} | ||
var heading = getHeading(this.direction, this.up); | ||
|
||
this._setTransform(oldTransform); | ||
|
||
return CesiumMath.TWO_PI - CesiumMath.zeroToTwoPi(heading); | ||
return heading; | ||
} | ||
|
||
return undefined; | ||
|
@@ -698,7 +715,7 @@ define([ | |
var transform = Transforms.eastNorthUpToFixedFrame(this.positionWC, ellipsoid, scratchHPRMatrix2); | ||
this._setTransform(transform); | ||
|
||
var pitch = CesiumMath.PI_OVER_TWO - CesiumMath.acosClamped(this.direction.z); | ||
var pitch = getPitch(this.direction); | ||
|
||
this._setTransform(oldTransform); | ||
|
||
|
@@ -725,15 +742,7 @@ define([ | |
var transform = Transforms.eastNorthUpToFixedFrame(this.positionWC, ellipsoid, scratchHPRMatrix2); | ||
this._setTransform(transform); | ||
|
||
var up = this.up; | ||
var right = this.right; | ||
var direction = this.direction; | ||
|
||
var roll = 0.0; | ||
if (!CesiumMath.equalsEpsilon(Math.abs(direction.z), 1.0, CesiumMath.EPSILON3)) { | ||
roll = Math.atan2(-right.z, up.z); | ||
roll = CesiumMath.zeroToTwoPi(roll + CesiumMath.TWO_PI); | ||
} | ||
var roll = getRoll(this.direction, this.up, this.right); | ||
|
||
this._setTransform(oldTransform); | ||
|
||
|
@@ -2277,14 +2286,21 @@ define([ | |
var scratchFlyToMatrix4 = new Matrix4(); | ||
var newOptions = { | ||
destination : undefined, | ||
direction : undefined, | ||
up : undefined, | ||
heading : undefined, | ||
pitch : undefined, | ||
roll : undefined, | ||
duration : undefined, | ||
complete : undefined, | ||
cancel : undefined, | ||
endTransform : undefined | ||
endTransform : undefined, | ||
altitude : undefined, | ||
easingfunction : undefined | ||
}; | ||
|
||
var scratchFlyDirection = new Cartesian3(); | ||
var scratchFlyUp = new Cartesian3(); | ||
var scratchFlyRight = new Cartesian3(); | ||
|
||
/** | ||
* Flies the camera from its current position to a new position. | ||
* | ||
|
@@ -2299,6 +2315,8 @@ define([ | |
* @param {Matrix4} [options.endTransform] Transform matrix representing the reference frame the camera will be in when the flight is completed. | ||
* @param {Boolean} [options.convert=true] When <code>true</code>, the destination is converted to the correct coordinate system for each scene mode. When <code>false</code>, the destination is expected | ||
* to be in the correct coordinate system. | ||
* @param {Number} [options.altitude] The maximum altitude at the peak of the flight. | ||
* @param {EasingFunction|EasingFunction~Callback} [options.easingFunction] Controls how the time is interpolated over the duration of the flight. | ||
* | ||
* @exception {DeveloperError} If either direction or up is given, then both are required. | ||
* | ||
|
@@ -2346,42 +2364,52 @@ define([ | |
|
||
var isRectangle = defined(destination.west); | ||
if (isRectangle) { | ||
if (scene.mode !== SceneMode.SCENE3D && destination.west > destination.east) { | ||
destination = Rectangle.MAX_VALUE; | ||
} | ||
destination = scene.camera.getRectangleCameraCoordinates(destination, scratchFlyToDestination); | ||
} | ||
|
||
var direction; | ||
var up; | ||
var heading; | ||
var pitch; | ||
var roll; | ||
|
||
var orientation = defaultValue(options.orientation, defaultValue.EMPTY_OBJECT); | ||
if (defined(orientation.heading)) { | ||
var heading = defaultValue(orientation.heading, 0.0); | ||
var pitch = defaultValue(orientation.pitch, -CesiumMath.PI_OVER_TWO); | ||
var roll = defaultValue(orientation.roll, 0.0); | ||
heading = orientation.heading; | ||
pitch = orientation.pitch; | ||
roll = orientation.roll; | ||
} else if (defined(orientation.direction)) { | ||
var direction = Cartesian3.clone(orientation.direction, scratchFlyDirection); | ||
var up = Cartesian3.clone(orientation.up, scratchFlyUp); | ||
|
||
var rotQuat = Quaternion.fromHeadingPitchRoll(heading - CesiumMath.PI_OVER_TWO, pitch, roll, scratchFlyToQuaternion); | ||
var rotMat = Matrix3.fromQuaternion(rotQuat, scratchFlyToMatrix3); | ||
if (scene.mode === SceneMode.SCENE3D) { | ||
var ellipsoid = this._projection.ellipsoid; | ||
var transform = Transforms.eastNorthUpToFixedFrame(destination, ellipsoid, scratchHPRMatrix1); | ||
var invTransform = Matrix4.inverseTransformation(transform, scratchHPRMatrix2); | ||
|
||
direction = Matrix3.getColumn(rotMat, 0, scratchFlyToDirection); | ||
up = Matrix3.getColumn(rotMat, 2, scratchFlyToUp); | ||
Matrix4.multiplyByPointAsVector(invTransform, direction, direction); | ||
Matrix4.multiplyByPointAsVector(invTransform, up, up); | ||
} | ||
|
||
var ellipsoid = this._projection.ellipsoid; | ||
var transform = Transforms.eastNorthUpToFixedFrame(destination, ellipsoid, scratchFlyToMatrix4); | ||
var right = Cartesian3.cross(direction, up, scratchFlyRight); | ||
|
||
Matrix4.multiplyByPointAsVector(transform, direction, direction); | ||
Matrix4.multiplyByPointAsVector(transform, up, up); | ||
} else if (defined(orientation.direction)) { | ||
direction = orientation.direction; | ||
up = orientation.up; | ||
heading = getHeading(direction, up); | ||
pitch = getPitch(direction); | ||
roll = getRoll(direction, up, right); | ||
} | ||
|
||
newOptions.destination = destination; | ||
newOptions.direction = direction; | ||
newOptions.up = up; | ||
newOptions.heading = heading; | ||
newOptions.pitch = pitch; | ||
newOptions.roll = roll; | ||
newOptions.duration = options.duration; | ||
newOptions.complete = options.complete; | ||
newOptions.cancel = options.cancel; | ||
newOptions.endTransform = options.endTransform; | ||
newOptions.convert = isRectangle ? false : options.convert; | ||
newOptions.altitude = options.altitude; | ||
newOptions.easingFunction = options.easingFunction; | ||
|
||
scene.tweens.add(CameraFlightPath.createTween(scene, newOptions)); | ||
}; | ||
|
@@ -2489,6 +2517,8 @@ define([ | |
* @param {Camera~FlightCompleteCallback} [options.complete] The function to execute when the flight is complete. | ||
* @param {Camera~FlightCancelledCallback} [options.cancel] The function to execute if the flight is cancelled. | ||
* @param {Matrix4} [options.endTransform] Transform matrix representing the reference frame the camera will be in when the flight is completed. | ||
* @param {Number} [options.altitude] The maximum altitude at the peak of the flight. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment throughout. |
||
* @param {EasingFunction|EasingFunction~Callback} [options.easingFunction] Controls how the time is interpolated over the duration of the flight. | ||
*/ | ||
Camera.prototype.flyToBoundingSphere = function(boundingSphere, options) { | ||
//>>includeStart('debug', pragmas.debug); | ||
|
@@ -2513,49 +2543,22 @@ define([ | |
var transform = Transforms.eastNorthUpToFixedFrame(boundingSphere.center, Ellipsoid.WGS84, scratchflyToBoundingSphereTransform); | ||
Matrix4.multiplyByPoint(transform, position, position); | ||
|
||
var direction; | ||
var up; | ||
|
||
if (!scene2D) { | ||
direction = Cartesian3.subtract(boundingSphere.center, position, scratchflyToBoundingSphereDirection); | ||
Cartesian3.normalize(direction, direction); | ||
|
||
up = Matrix4.multiplyByPointAsVector(transform, Cartesian3.UNIT_Z, scratchflyToBoundingSphereUp); | ||
var right = Cartesian3.cross(direction, up, scratchflyToBoundingSphereRight); | ||
Cartesian3.cross(right, direction, up); | ||
Cartesian3.normalize(up, up); | ||
} | ||
|
||
this.flyTo({ | ||
destination : position, | ||
orientation : { | ||
direction : direction, | ||
up : up | ||
heading : offset.heading, | ||
pitch : offset.pitch, | ||
roll : 0.0 | ||
}, | ||
duration : options.duration, | ||
complete : options.complete, | ||
cancel : options.cancel, | ||
endTransform : options.endTransform | ||
endTransform : options.endTransform, | ||
altitude : options.altitude, | ||
easingFunction : options.easingFunction | ||
}); | ||
}; | ||
|
||
/** | ||
* Returns a duplicate of a Camera instance. | ||
* @deprecated | ||
* @returns {Camera} The provided result parameter or a new copy of the Camera instance. | ||
*/ | ||
Camera.prototype.clone = function() { | ||
var camera = new Camera(this._scene); | ||
camera.position = Cartesian3.clone(this.position); | ||
camera.direction = Cartesian3.clone(this.direction); | ||
camera.up = Cartesian3.clone(this.up); | ||
camera.right = Cartesian3.clone(this.right); | ||
camera._transform = Matrix4.clone(this.transform); | ||
camera._transformChanged = true; | ||
camera.frustum = this.frustum.clone(); | ||
return camera; | ||
}; | ||
|
||
/** | ||
* @private | ||
*/ | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Throughout Cesium, we call this
height
. We should do the same here unless we have a compelling reason.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or
maximumHeight
.