EncodedCartesian3-6c97231d.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71', './Check-6c0211bc', './Cartesian2-33d2657c'], function (exports, when, Check, Cartesian2) { 'use strict';
  24. /**
  25. * A fixed-point encoding of a {@link Cartesian3} with 64-bit floating-point components, as two {@link Cartesian3}
  26. * values that, when converted to 32-bit floating-point and added, approximate the original input.
  27. * <p>
  28. * This is used to encode positions in vertex buffers for rendering without jittering artifacts
  29. * as described in {@link http://help.agi.com/AGIComponents/html/BlogPrecisionsPrecisions.htm|Precisions, Precisions}.
  30. * </p>
  31. *
  32. * @alias EncodedCartesian3
  33. * @constructor
  34. *
  35. * @private
  36. */
  37. function EncodedCartesian3() {
  38. /**
  39. * The high bits for each component. Bits 0 to 22 store the whole value. Bits 23 to 31 are not used.
  40. *
  41. * @type {Cartesian3}
  42. * @default {@link Cartesian3.ZERO}
  43. */
  44. this.high = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO);
  45. /**
  46. * The low bits for each component. Bits 7 to 22 store the whole value, and bits 0 to 6 store the fraction. Bits 23 to 31 are not used.
  47. *
  48. * @type {Cartesian3}
  49. * @default {@link Cartesian3.ZERO}
  50. */
  51. this.low = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO);
  52. }
  53. /**
  54. * Encodes a 64-bit floating-point value as two floating-point values that, when converted to
  55. * 32-bit floating-point and added, approximate the original input. The returned object
  56. * has <code>high</code> and <code>low</code> properties for the high and low bits, respectively.
  57. * <p>
  58. * The fixed-point encoding follows {@link http://help.agi.com/AGIComponents/html/BlogPrecisionsPrecisions.htm|Precisions, Precisions}.
  59. * </p>
  60. *
  61. * @param {Number} value The floating-point value to encode.
  62. * @param {Object} [result] The object onto which to store the result.
  63. * @returns {Object} The modified result parameter or a new instance if one was not provided.
  64. *
  65. * @example
  66. * var value = 1234567.1234567;
  67. * var splitValue = Cesium.EncodedCartesian3.encode(value);
  68. */
  69. EncodedCartesian3.encode = function (value, result) {
  70. //>>includeStart('debug', pragmas.debug);
  71. Check.Check.typeOf.number("value", value);
  72. //>>includeEnd('debug');
  73. if (!when.defined(result)) {
  74. result = {
  75. high: 0.0,
  76. low: 0.0,
  77. };
  78. }
  79. var doubleHigh;
  80. if (value >= 0.0) {
  81. doubleHigh = Math.floor(value / 65536.0) * 65536.0;
  82. result.high = doubleHigh;
  83. result.low = value - doubleHigh;
  84. } else {
  85. doubleHigh = Math.floor(-value / 65536.0) * 65536.0;
  86. result.high = -doubleHigh;
  87. result.low = value + doubleHigh;
  88. }
  89. return result;
  90. };
  91. var scratchEncode = {
  92. high: 0.0,
  93. low: 0.0,
  94. };
  95. /**
  96. * Encodes a {@link Cartesian3} with 64-bit floating-point components as two {@link Cartesian3}
  97. * values that, when converted to 32-bit floating-point and added, approximate the original input.
  98. * <p>
  99. * The fixed-point encoding follows {@link http://blogs.agi.com/insight3d/index.php/2008/09/03/precisions-precisions/|Precisions, Precisions}.
  100. * </p>
  101. *
  102. * @param {Cartesian3} cartesian The cartesian to encode.
  103. * @param {EncodedCartesian3} [result] The object onto which to store the result.
  104. * @returns {EncodedCartesian3} The modified result parameter or a new EncodedCartesian3 instance if one was not provided.
  105. *
  106. * @example
  107. * var cart = new Cesium.Cartesian3(-10000000.0, 0.0, 10000000.0);
  108. * var encoded = Cesium.EncodedCartesian3.fromCartesian(cart);
  109. */
  110. EncodedCartesian3.fromCartesian = function (cartesian, result) {
  111. //>>includeStart('debug', pragmas.debug);
  112. Check.Check.typeOf.object("cartesian", cartesian);
  113. //>>includeEnd('debug');
  114. if (!when.defined(result)) {
  115. result = new EncodedCartesian3();
  116. }
  117. var high = result.high;
  118. var low = result.low;
  119. EncodedCartesian3.encode(cartesian.x, scratchEncode);
  120. high.x = scratchEncode.high;
  121. low.x = scratchEncode.low;
  122. EncodedCartesian3.encode(cartesian.y, scratchEncode);
  123. high.y = scratchEncode.high;
  124. low.y = scratchEncode.low;
  125. EncodedCartesian3.encode(cartesian.z, scratchEncode);
  126. high.z = scratchEncode.high;
  127. low.z = scratchEncode.low;
  128. return result;
  129. };
  130. var encodedP = new EncodedCartesian3();
  131. /**
  132. * Encodes the provided <code>cartesian</code>, and writes it to an array with <code>high</code>
  133. * components followed by <code>low</code> components, i.e. <code>[high.x, high.y, high.z, low.x, low.y, low.z]</code>.
  134. * <p>
  135. * This is used to create interleaved high-precision position vertex attributes.
  136. * </p>
  137. *
  138. * @param {Cartesian3} cartesian The cartesian to encode.
  139. * @param {Number[]} cartesianArray The array to write to.
  140. * @param {Number} index The index into the array to start writing. Six elements will be written.
  141. *
  142. * @exception {DeveloperError} index must be a number greater than or equal to 0.
  143. *
  144. * @example
  145. * var positions = [
  146. * new Cesium.Cartesian3(),
  147. * // ...
  148. * ];
  149. * var encodedPositions = new Float32Array(2 * 3 * positions.length);
  150. * var j = 0;
  151. * for (var i = 0; i < positions.length; ++i) {
  152. * Cesium.EncodedCartesian3.writeElement(positions[i], encodedPositions, j);
  153. * j += 6;
  154. * }
  155. */
  156. EncodedCartesian3.writeElements = function (cartesian, cartesianArray, index) {
  157. //>>includeStart('debug', pragmas.debug);
  158. Check.Check.defined("cartesianArray", cartesianArray);
  159. Check.Check.typeOf.number("index", index);
  160. Check.Check.typeOf.number.greaterThanOrEquals("index", index, 0);
  161. //>>includeEnd('debug');
  162. EncodedCartesian3.fromCartesian(cartesian, encodedP);
  163. var high = encodedP.high;
  164. var low = encodedP.low;
  165. cartesianArray[index] = high.x;
  166. cartesianArray[index + 1] = high.y;
  167. cartesianArray[index + 2] = high.z;
  168. cartesianArray[index + 3] = low.x;
  169. cartesianArray[index + 4] = low.y;
  170. cartesianArray[index + 5] = low.z;
  171. };
  172. exports.EncodedCartesian3 = EncodedCartesian3;
  173. });
  174. //# sourceMappingURL=EncodedCartesian3-6c97231d.js.map