WallGeometryLibrary-1431b81f.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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', './Math-1124a290', './Cartesian2-33d2657c', './arrayRemoveDuplicates-0263f42c', './PolylinePipeline-25d1e129'], function (exports, when, _Math, Cartesian2, arrayRemoveDuplicates, PolylinePipeline) { 'use strict';
  24. /**
  25. * @private
  26. */
  27. var WallGeometryLibrary = {};
  28. function latLonEquals(c0, c1) {
  29. return (
  30. _Math.CesiumMath.equalsEpsilon(c0.latitude, c1.latitude, _Math.CesiumMath.EPSILON10) &&
  31. _Math.CesiumMath.equalsEpsilon(c0.longitude, c1.longitude, _Math.CesiumMath.EPSILON10)
  32. );
  33. }
  34. var scratchCartographic1 = new Cartesian2.Cartographic();
  35. var scratchCartographic2 = new Cartesian2.Cartographic();
  36. function removeDuplicates(ellipsoid, positions, topHeights, bottomHeights) {
  37. positions = arrayRemoveDuplicates.arrayRemoveDuplicates(positions, Cartesian2.Cartesian3.equalsEpsilon);
  38. var length = positions.length;
  39. if (length < 2) {
  40. return;
  41. }
  42. var hasBottomHeights = when.defined(bottomHeights);
  43. var hasTopHeights = when.defined(topHeights);
  44. var cleanedPositions = new Array(length);
  45. var cleanedTopHeights = new Array(length);
  46. var cleanedBottomHeights = new Array(length);
  47. var v0 = positions[0];
  48. cleanedPositions[0] = v0;
  49. var c0 = ellipsoid.cartesianToCartographic(v0, scratchCartographic1);
  50. if (hasTopHeights) {
  51. c0.height = topHeights[0];
  52. }
  53. cleanedTopHeights[0] = c0.height;
  54. if (hasBottomHeights) {
  55. cleanedBottomHeights[0] = bottomHeights[0];
  56. } else {
  57. cleanedBottomHeights[0] = 0.0;
  58. }
  59. var startTopHeight = cleanedTopHeights[0];
  60. var startBottomHeight = cleanedBottomHeights[0];
  61. var hasAllSameHeights = startTopHeight === startBottomHeight;
  62. var index = 1;
  63. for (var i = 1; i < length; ++i) {
  64. var v1 = positions[i];
  65. var c1 = ellipsoid.cartesianToCartographic(v1, scratchCartographic2);
  66. if (hasTopHeights) {
  67. c1.height = topHeights[i];
  68. }
  69. hasAllSameHeights = hasAllSameHeights && c1.height === 0;
  70. if (!latLonEquals(c0, c1)) {
  71. cleanedPositions[index] = v1; // Shallow copy!
  72. cleanedTopHeights[index] = c1.height;
  73. if (hasBottomHeights) {
  74. cleanedBottomHeights[index] = bottomHeights[i];
  75. } else {
  76. cleanedBottomHeights[index] = 0.0;
  77. }
  78. hasAllSameHeights =
  79. hasAllSameHeights &&
  80. cleanedTopHeights[index] === cleanedBottomHeights[index];
  81. Cartesian2.Cartographic.clone(c1, c0);
  82. ++index;
  83. } else if (c0.height < c1.height) {
  84. // two adjacent positions are the same, so use whichever has the greater height
  85. cleanedTopHeights[index - 1] = c1.height;
  86. }
  87. }
  88. if (hasAllSameHeights || index < 2) {
  89. return;
  90. }
  91. cleanedPositions.length = index;
  92. cleanedTopHeights.length = index;
  93. cleanedBottomHeights.length = index;
  94. return {
  95. positions: cleanedPositions,
  96. topHeights: cleanedTopHeights,
  97. bottomHeights: cleanedBottomHeights,
  98. };
  99. }
  100. var positionsArrayScratch = new Array(2);
  101. var heightsArrayScratch = new Array(2);
  102. var generateArcOptionsScratch = {
  103. positions: undefined,
  104. height: undefined,
  105. granularity: undefined,
  106. ellipsoid: undefined,
  107. };
  108. /**
  109. * @private
  110. */
  111. WallGeometryLibrary.computePositions = function (
  112. ellipsoid,
  113. wallPositions,
  114. maximumHeights,
  115. minimumHeights,
  116. granularity,
  117. duplicateCorners
  118. ) {
  119. var o = removeDuplicates(
  120. ellipsoid,
  121. wallPositions,
  122. maximumHeights,
  123. minimumHeights
  124. );
  125. if (!when.defined(o)) {
  126. return;
  127. }
  128. wallPositions = o.positions;
  129. maximumHeights = o.topHeights;
  130. minimumHeights = o.bottomHeights;
  131. var length = wallPositions.length;
  132. var numCorners = length - 2;
  133. var topPositions;
  134. var bottomPositions;
  135. var minDistance = _Math.CesiumMath.chordLength(
  136. granularity,
  137. ellipsoid.maximumRadius
  138. );
  139. var generateArcOptions = generateArcOptionsScratch;
  140. generateArcOptions.minDistance = minDistance;
  141. generateArcOptions.ellipsoid = ellipsoid;
  142. if (duplicateCorners) {
  143. var count = 0;
  144. var i;
  145. for (i = 0; i < length - 1; i++) {
  146. count +=
  147. PolylinePipeline.PolylinePipeline.numberOfPoints(
  148. wallPositions[i],
  149. wallPositions[i + 1],
  150. minDistance
  151. ) + 1;
  152. }
  153. topPositions = new Float64Array(count * 3);
  154. bottomPositions = new Float64Array(count * 3);
  155. var generateArcPositions = positionsArrayScratch;
  156. var generateArcHeights = heightsArrayScratch;
  157. generateArcOptions.positions = generateArcPositions;
  158. generateArcOptions.height = generateArcHeights;
  159. var offset = 0;
  160. for (i = 0; i < length - 1; i++) {
  161. generateArcPositions[0] = wallPositions[i];
  162. generateArcPositions[1] = wallPositions[i + 1];
  163. generateArcHeights[0] = maximumHeights[i];
  164. generateArcHeights[1] = maximumHeights[i + 1];
  165. var pos = PolylinePipeline.PolylinePipeline.generateArc(generateArcOptions);
  166. topPositions.set(pos, offset);
  167. generateArcHeights[0] = minimumHeights[i];
  168. generateArcHeights[1] = minimumHeights[i + 1];
  169. bottomPositions.set(
  170. PolylinePipeline.PolylinePipeline.generateArc(generateArcOptions),
  171. offset
  172. );
  173. offset += pos.length;
  174. }
  175. } else {
  176. generateArcOptions.positions = wallPositions;
  177. generateArcOptions.height = maximumHeights;
  178. topPositions = new Float64Array(
  179. PolylinePipeline.PolylinePipeline.generateArc(generateArcOptions)
  180. );
  181. generateArcOptions.height = minimumHeights;
  182. bottomPositions = new Float64Array(
  183. PolylinePipeline.PolylinePipeline.generateArc(generateArcOptions)
  184. );
  185. }
  186. return {
  187. bottomPositions: bottomPositions,
  188. topPositions: topPositions,
  189. numCorners: numCorners,
  190. };
  191. };
  192. exports.WallGeometryLibrary = WallGeometryLibrary;
  193. });
  194. //# sourceMappingURL=WallGeometryLibrary-1431b81f.js.map