You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGES.md
-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@ Change Log
3
3
### 1.38 - 2017-10-02
4
4
5
5
* Breaking changes
6
-
*`HeadingPitchRoll.fromQuaternion`, `Matrix3.fromHeadingPitchRoll`, `Quaternion.fromHeadingPitchRoll`, `Transforms.headingPitchRollToFixedFrame`, and `Transforms.headingPitchRollQuaternion` now use the classical orientation of heading and pitch calculated counter-clockwise. With this new behavior, heading and pitch need to be the negative of their previous values. The warning message will be removed in Cesium 1.40.[#5666](https://github.com/AnalyticalGraphicsInc/cesium/issues/5666)
7
6
*`Scene/CullingVolume` has been removed. Use `Core/CullingVolume`.
8
7
*`Scene/OrthographicFrustum` has been removed. Use `Core/OrthographicFrustum`.
9
8
*`Scene/OrthographicOffCenterFrustum` has been removed. Use `Core/OrthographicOffCenterFrustum`.
Copy file name to clipboardexpand all lines: Source/Core/HeadingPitchRoll.js
+4-12
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,12 @@ define([
2
2
'./defaultValue',
3
3
'./defined',
4
4
'./DeveloperError',
5
-
'./Math',
6
-
'./deprecationWarning'
5
+
'./Math'
7
6
],function(
8
7
defaultValue,
9
8
defined,
10
9
DeveloperError,
11
-
CesiumMath,
12
-
deprecationWarning){
10
+
CesiumMath){
13
11
'use strict';
14
12
15
13
/**
@@ -42,23 +40,17 @@ define([
42
40
thrownewDeveloperError('quaternion is required');
43
41
}
44
42
//>>includeEnd('debug');
45
-
46
-
deprecationWarning('HeadingPitchRoll.fromQuaternion','This function now uses a counter-clockwise orientation of heading and pitch as per mathematical conventions. With this new behavior, heading and pitch will need to be the negative of their previous values. This was introduced in 1.38 and the deprecation warning will be removed in Cesium 1.40.');
deprecationWarning('Matrix3.fromHeadingPitchRoll','This function now uses a counter-clockwise orientation of heading and pitch as per mathematical conventions. With this new behavior, heading and pitch will need to be the negative of their previous values. This was introduced in 1.38 and the deprecation warning will be removed in Cesium 1.40.');
deprecationWarning('Quaternion.fromHeadingPitchRoll','This function now uses a counter-clockwise orientation of heading and pitch as per mathematical conventions. With this new behavior, heading and pitch will need to be the negative of their previous values. This was introduced in 1.38 and the deprecation warning will be removed in Cesium 1.40.');
deprecationWarning('Transforms.headingPitchRollToFixedFrame','This function now uses a counter-clockwise orientation of heading and pitch as per mathematical conventions. With this new behavior, heading and pitch will need to be the negative of their previous values. This was introduced in 1.38 and the deprecation warning will be removed in Cesium 1.40.');
deprecationWarning('Transforms.headingPitchRollQuaternion','This function now uses a counter-clockwise orientation of heading and pitch as per mathematical conventions. With this new behavior, heading and pitch will need to be the negative of their previous values. This was introduced in 1.38 and the deprecation warning will be removed in Cesium 1.40.');
0 commit comments