PolygonGeometryLibrary-98a03962.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  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', './Transforms-8be64844', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './GeometryPipeline-466ad516', './IndexDatatype-25023891', './arrayRemoveDuplicates-0263f42c', './ArcType-dc1c5aee', './EllipsoidRhumbLine-5f1492e5', './PolygonPipeline-9f9b7763'], function (exports, when, _Math, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, GeometryPipeline, IndexDatatype, arrayRemoveDuplicates, ArcType, EllipsoidRhumbLine, PolygonPipeline) { 'use strict';
  24. /**
  25. * A queue that can enqueue items at the end, and dequeue items from the front.
  26. *
  27. * @alias Queue
  28. * @constructor
  29. */
  30. function Queue() {
  31. this._array = [];
  32. this._offset = 0;
  33. this._length = 0;
  34. }
  35. Object.defineProperties(Queue.prototype, {
  36. /**
  37. * The length of the queue.
  38. *
  39. * @memberof Queue.prototype
  40. *
  41. * @type {Number}
  42. * @readonly
  43. */
  44. length: {
  45. get: function () {
  46. return this._length;
  47. },
  48. },
  49. });
  50. /**
  51. * Enqueues the specified item.
  52. *
  53. * @param {*} item The item to enqueue.
  54. */
  55. Queue.prototype.enqueue = function (item) {
  56. this._array.push(item);
  57. this._length++;
  58. };
  59. /**
  60. * Dequeues an item. Returns undefined if the queue is empty.
  61. *
  62. * @returns {*} The the dequeued item.
  63. */
  64. Queue.prototype.dequeue = function () {
  65. if (this._length === 0) {
  66. return undefined;
  67. }
  68. var array = this._array;
  69. var offset = this._offset;
  70. var item = array[offset];
  71. array[offset] = undefined;
  72. offset++;
  73. if (offset > 10 && offset * 2 > array.length) {
  74. //compact array
  75. this._array = array.slice(offset);
  76. offset = 0;
  77. }
  78. this._offset = offset;
  79. this._length--;
  80. return item;
  81. };
  82. /**
  83. * Returns the item at the front of the queue. Returns undefined if the queue is empty.
  84. *
  85. * @returns {*} The item at the front of the queue.
  86. */
  87. Queue.prototype.peek = function () {
  88. if (this._length === 0) {
  89. return undefined;
  90. }
  91. return this._array[this._offset];
  92. };
  93. /**
  94. * Check whether this queue contains the specified item.
  95. *
  96. * @param {*} item The item to search for.
  97. */
  98. Queue.prototype.contains = function (item) {
  99. return this._array.indexOf(item) !== -1;
  100. };
  101. /**
  102. * Remove all items from the queue.
  103. */
  104. Queue.prototype.clear = function () {
  105. this._array.length = this._offset = this._length = 0;
  106. };
  107. /**
  108. * Sort the items in the queue in-place.
  109. *
  110. * @param {Queue.Comparator} compareFunction A function that defines the sort order.
  111. */
  112. Queue.prototype.sort = function (compareFunction) {
  113. if (this._offset > 0) {
  114. //compact array
  115. this._array = this._array.slice(this._offset);
  116. this._offset = 0;
  117. }
  118. this._array.sort(compareFunction);
  119. };
  120. /**
  121. * @private
  122. */
  123. var PolygonGeometryLibrary = {};
  124. PolygonGeometryLibrary.computeHierarchyPackedLength = function (
  125. polygonHierarchy
  126. ) {
  127. var numComponents = 0;
  128. var stack = [polygonHierarchy];
  129. while (stack.length > 0) {
  130. var hierarchy = stack.pop();
  131. if (!when.defined(hierarchy)) {
  132. continue;
  133. }
  134. numComponents += 2;
  135. var positions = hierarchy.positions;
  136. var holes = hierarchy.holes;
  137. if (when.defined(positions)) {
  138. numComponents += positions.length * Cartesian2.Cartesian3.packedLength;
  139. }
  140. if (when.defined(holes)) {
  141. var length = holes.length;
  142. for (var i = 0; i < length; ++i) {
  143. stack.push(holes[i]);
  144. }
  145. }
  146. }
  147. return numComponents;
  148. };
  149. PolygonGeometryLibrary.packPolygonHierarchy = function (
  150. polygonHierarchy,
  151. array,
  152. startingIndex
  153. ) {
  154. var stack = [polygonHierarchy];
  155. while (stack.length > 0) {
  156. var hierarchy = stack.pop();
  157. if (!when.defined(hierarchy)) {
  158. continue;
  159. }
  160. var positions = hierarchy.positions;
  161. var holes = hierarchy.holes;
  162. array[startingIndex++] = when.defined(positions) ? positions.length : 0;
  163. array[startingIndex++] = when.defined(holes) ? holes.length : 0;
  164. if (when.defined(positions)) {
  165. var positionsLength = positions.length;
  166. for (var i = 0; i < positionsLength; ++i, startingIndex += 3) {
  167. Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
  168. }
  169. }
  170. if (when.defined(holes)) {
  171. var holesLength = holes.length;
  172. for (var j = 0; j < holesLength; ++j) {
  173. stack.push(holes[j]);
  174. }
  175. }
  176. }
  177. return startingIndex;
  178. };
  179. PolygonGeometryLibrary.unpackPolygonHierarchy = function (
  180. array,
  181. startingIndex
  182. ) {
  183. var positionsLength = array[startingIndex++];
  184. var holesLength = array[startingIndex++];
  185. var positions = new Array(positionsLength);
  186. var holes = holesLength > 0 ? new Array(holesLength) : undefined;
  187. for (
  188. var i = 0;
  189. i < positionsLength;
  190. ++i, startingIndex += Cartesian2.Cartesian3.packedLength
  191. ) {
  192. positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
  193. }
  194. for (var j = 0; j < holesLength; ++j) {
  195. holes[j] = PolygonGeometryLibrary.unpackPolygonHierarchy(
  196. array,
  197. startingIndex
  198. );
  199. startingIndex = holes[j].startingIndex;
  200. delete holes[j].startingIndex;
  201. }
  202. return {
  203. positions: positions,
  204. holes: holes,
  205. startingIndex: startingIndex,
  206. };
  207. };
  208. var distanceScratch = new Cartesian2.Cartesian3();
  209. function getPointAtDistance(p0, p1, distance, length) {
  210. Cartesian2.Cartesian3.subtract(p1, p0, distanceScratch);
  211. Cartesian2.Cartesian3.multiplyByScalar(
  212. distanceScratch,
  213. distance / length,
  214. distanceScratch
  215. );
  216. Cartesian2.Cartesian3.add(p0, distanceScratch, distanceScratch);
  217. return [distanceScratch.x, distanceScratch.y, distanceScratch.z];
  218. }
  219. PolygonGeometryLibrary.subdivideLineCount = function (p0, p1, minDistance) {
  220. var distance = Cartesian2.Cartesian3.distance(p0, p1);
  221. var n = distance / minDistance;
  222. var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
  223. return Math.pow(2, countDivide);
  224. };
  225. var scratchCartographic0 = new Cartesian2.Cartographic();
  226. var scratchCartographic1 = new Cartesian2.Cartographic();
  227. var scratchCartographic2 = new Cartesian2.Cartographic();
  228. var scratchCartesian0 = new Cartesian2.Cartesian3();
  229. PolygonGeometryLibrary.subdivideRhumbLineCount = function (
  230. ellipsoid,
  231. p0,
  232. p1,
  233. minDistance
  234. ) {
  235. var c0 = ellipsoid.cartesianToCartographic(p0, scratchCartographic0);
  236. var c1 = ellipsoid.cartesianToCartographic(p1, scratchCartographic1);
  237. var rhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine(c0, c1, ellipsoid);
  238. var n = rhumb.surfaceDistance / minDistance;
  239. var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
  240. return Math.pow(2, countDivide);
  241. };
  242. PolygonGeometryLibrary.subdivideLine = function (p0, p1, minDistance, result) {
  243. var numVertices = PolygonGeometryLibrary.subdivideLineCount(
  244. p0,
  245. p1,
  246. minDistance
  247. );
  248. var length = Cartesian2.Cartesian3.distance(p0, p1);
  249. var distanceBetweenVertices = length / numVertices;
  250. if (!when.defined(result)) {
  251. result = [];
  252. }
  253. var positions = result;
  254. positions.length = numVertices * 3;
  255. var index = 0;
  256. for (var i = 0; i < numVertices; i++) {
  257. var p = getPointAtDistance(p0, p1, i * distanceBetweenVertices, length);
  258. positions[index++] = p[0];
  259. positions[index++] = p[1];
  260. positions[index++] = p[2];
  261. }
  262. return positions;
  263. };
  264. PolygonGeometryLibrary.subdivideRhumbLine = function (
  265. ellipsoid,
  266. p0,
  267. p1,
  268. minDistance,
  269. result
  270. ) {
  271. var c0 = ellipsoid.cartesianToCartographic(p0, scratchCartographic0);
  272. var c1 = ellipsoid.cartesianToCartographic(p1, scratchCartographic1);
  273. var rhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine(c0, c1, ellipsoid);
  274. var n = rhumb.surfaceDistance / minDistance;
  275. var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
  276. var numVertices = Math.pow(2, countDivide);
  277. var distanceBetweenVertices = rhumb.surfaceDistance / numVertices;
  278. if (!when.defined(result)) {
  279. result = [];
  280. }
  281. var positions = result;
  282. positions.length = numVertices * 3;
  283. var index = 0;
  284. for (var i = 0; i < numVertices; i++) {
  285. var c = rhumb.interpolateUsingSurfaceDistance(
  286. i * distanceBetweenVertices,
  287. scratchCartographic2
  288. );
  289. var p = ellipsoid.cartographicToCartesian(c, scratchCartesian0);
  290. positions[index++] = p.x;
  291. positions[index++] = p.y;
  292. positions[index++] = p.z;
  293. }
  294. return positions;
  295. };
  296. var scaleToGeodeticHeightN1 = new Cartesian2.Cartesian3();
  297. var scaleToGeodeticHeightN2 = new Cartesian2.Cartesian3();
  298. var scaleToGeodeticHeightP1 = new Cartesian2.Cartesian3();
  299. var scaleToGeodeticHeightP2 = new Cartesian2.Cartesian3();
  300. PolygonGeometryLibrary.scaleToGeodeticHeightExtruded = function (
  301. geometry,
  302. maxHeight,
  303. minHeight,
  304. ellipsoid,
  305. perPositionHeight
  306. ) {
  307. ellipsoid = when.defaultValue(ellipsoid, Cartesian2.Ellipsoid.WGS84);
  308. var n1 = scaleToGeodeticHeightN1;
  309. var n2 = scaleToGeodeticHeightN2;
  310. var p = scaleToGeodeticHeightP1;
  311. var p2 = scaleToGeodeticHeightP2;
  312. if (
  313. when.defined(geometry) &&
  314. when.defined(geometry.attributes) &&
  315. when.defined(geometry.attributes.position)
  316. ) {
  317. var positions = geometry.attributes.position.values;
  318. var length = positions.length / 2;
  319. for (var i = 0; i < length; i += 3) {
  320. Cartesian2.Cartesian3.fromArray(positions, i, p);
  321. ellipsoid.geodeticSurfaceNormal(p, n1);
  322. p2 = ellipsoid.scaleToGeodeticSurface(p, p2);
  323. n2 = Cartesian2.Cartesian3.multiplyByScalar(n1, minHeight, n2);
  324. n2 = Cartesian2.Cartesian3.add(p2, n2, n2);
  325. positions[i + length] = n2.x;
  326. positions[i + 1 + length] = n2.y;
  327. positions[i + 2 + length] = n2.z;
  328. if (perPositionHeight) {
  329. p2 = Cartesian2.Cartesian3.clone(p, p2);
  330. }
  331. n2 = Cartesian2.Cartesian3.multiplyByScalar(n1, maxHeight, n2);
  332. n2 = Cartesian2.Cartesian3.add(p2, n2, n2);
  333. positions[i] = n2.x;
  334. positions[i + 1] = n2.y;
  335. positions[i + 2] = n2.z;
  336. }
  337. }
  338. return geometry;
  339. };
  340. PolygonGeometryLibrary.polygonOutlinesFromHierarchy = function (
  341. polygonHierarchy,
  342. scaleToEllipsoidSurface,
  343. ellipsoid
  344. ) {
  345. // create from a polygon hierarchy
  346. // Algorithm adapted from http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf
  347. var polygons = [];
  348. var queue = new Queue();
  349. queue.enqueue(polygonHierarchy);
  350. var i;
  351. var j;
  352. var length;
  353. while (queue.length !== 0) {
  354. var outerNode = queue.dequeue();
  355. var outerRing = outerNode.positions;
  356. if (scaleToEllipsoidSurface) {
  357. length = outerRing.length;
  358. for (i = 0; i < length; i++) {
  359. ellipsoid.scaleToGeodeticSurface(outerRing[i], outerRing[i]);
  360. }
  361. }
  362. outerRing = arrayRemoveDuplicates.arrayRemoveDuplicates(
  363. outerRing,
  364. Cartesian2.Cartesian3.equalsEpsilon,
  365. true
  366. );
  367. if (outerRing.length < 3) {
  368. continue;
  369. }
  370. var numChildren = outerNode.holes ? outerNode.holes.length : 0;
  371. // The outer polygon contains inner polygons
  372. for (i = 0; i < numChildren; i++) {
  373. var hole = outerNode.holes[i];
  374. var holePositions = hole.positions;
  375. if (scaleToEllipsoidSurface) {
  376. length = holePositions.length;
  377. for (j = 0; j < length; ++j) {
  378. ellipsoid.scaleToGeodeticSurface(holePositions[j], holePositions[j]);
  379. }
  380. }
  381. holePositions = arrayRemoveDuplicates.arrayRemoveDuplicates(
  382. holePositions,
  383. Cartesian2.Cartesian3.equalsEpsilon,
  384. true
  385. );
  386. if (holePositions.length < 3) {
  387. continue;
  388. }
  389. polygons.push(holePositions);
  390. var numGrandchildren = 0;
  391. if (when.defined(hole.holes)) {
  392. numGrandchildren = hole.holes.length;
  393. }
  394. for (j = 0; j < numGrandchildren; j++) {
  395. queue.enqueue(hole.holes[j]);
  396. }
  397. }
  398. polygons.push(outerRing);
  399. }
  400. return polygons;
  401. };
  402. PolygonGeometryLibrary.polygonsFromHierarchy = function (
  403. polygonHierarchy,
  404. projectPointsTo2D,
  405. scaleToEllipsoidSurface,
  406. ellipsoid
  407. ) {
  408. // create from a polygon hierarchy
  409. // Algorithm adapted from http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf
  410. var hierarchy = [];
  411. var polygons = [];
  412. var queue = new Queue();
  413. queue.enqueue(polygonHierarchy);
  414. while (queue.length !== 0) {
  415. var outerNode = queue.dequeue();
  416. var outerRing = outerNode.positions;
  417. var holes = outerNode.holes;
  418. var i;
  419. var length;
  420. if (scaleToEllipsoidSurface) {
  421. length = outerRing.length;
  422. for (i = 0; i < length; i++) {
  423. ellipsoid.scaleToGeodeticSurface(outerRing[i], outerRing[i]);
  424. }
  425. }
  426. outerRing = arrayRemoveDuplicates.arrayRemoveDuplicates(
  427. outerRing,
  428. Cartesian2.Cartesian3.equalsEpsilon,
  429. true
  430. );
  431. if (outerRing.length < 3) {
  432. continue;
  433. }
  434. var positions2D = projectPointsTo2D(outerRing);
  435. if (!when.defined(positions2D)) {
  436. continue;
  437. }
  438. var holeIndices = [];
  439. var originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(
  440. positions2D
  441. );
  442. if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
  443. positions2D.reverse();
  444. outerRing = outerRing.slice().reverse();
  445. }
  446. var positions = outerRing.slice();
  447. var numChildren = when.defined(holes) ? holes.length : 0;
  448. var polygonHoles = [];
  449. var j;
  450. for (i = 0; i < numChildren; i++) {
  451. var hole = holes[i];
  452. var holePositions = hole.positions;
  453. if (scaleToEllipsoidSurface) {
  454. length = holePositions.length;
  455. for (j = 0; j < length; ++j) {
  456. ellipsoid.scaleToGeodeticSurface(holePositions[j], holePositions[j]);
  457. }
  458. }
  459. holePositions = arrayRemoveDuplicates.arrayRemoveDuplicates(
  460. holePositions,
  461. Cartesian2.Cartesian3.equalsEpsilon,
  462. true
  463. );
  464. if (holePositions.length < 3) {
  465. continue;
  466. }
  467. var holePositions2D = projectPointsTo2D(holePositions);
  468. if (!when.defined(holePositions2D)) {
  469. continue;
  470. }
  471. originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(
  472. holePositions2D
  473. );
  474. if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
  475. holePositions2D.reverse();
  476. holePositions = holePositions.slice().reverse();
  477. }
  478. polygonHoles.push(holePositions);
  479. holeIndices.push(positions.length);
  480. positions = positions.concat(holePositions);
  481. positions2D = positions2D.concat(holePositions2D);
  482. var numGrandchildren = 0;
  483. if (when.defined(hole.holes)) {
  484. numGrandchildren = hole.holes.length;
  485. }
  486. for (j = 0; j < numGrandchildren; j++) {
  487. queue.enqueue(hole.holes[j]);
  488. }
  489. }
  490. hierarchy.push({
  491. outerRing: outerRing,
  492. holes: polygonHoles,
  493. });
  494. polygons.push({
  495. positions: positions,
  496. positions2D: positions2D,
  497. holes: holeIndices,
  498. });
  499. }
  500. return {
  501. hierarchy: hierarchy,
  502. polygons: polygons,
  503. };
  504. };
  505. var computeBoundingRectangleCartesian2 = new Cartesian2.Cartesian2();
  506. var computeBoundingRectangleCartesian3 = new Cartesian2.Cartesian3();
  507. var computeBoundingRectangleQuaternion = new Transforms.Quaternion();
  508. var computeBoundingRectangleMatrix3 = new Transforms.Matrix3();
  509. PolygonGeometryLibrary.computeBoundingRectangle = function (
  510. planeNormal,
  511. projectPointTo2D,
  512. positions,
  513. angle,
  514. result
  515. ) {
  516. var rotation = Transforms.Quaternion.fromAxisAngle(
  517. planeNormal,
  518. angle,
  519. computeBoundingRectangleQuaternion
  520. );
  521. var textureMatrix = Transforms.Matrix3.fromQuaternion(
  522. rotation,
  523. computeBoundingRectangleMatrix3
  524. );
  525. var minX = Number.POSITIVE_INFINITY;
  526. var maxX = Number.NEGATIVE_INFINITY;
  527. var minY = Number.POSITIVE_INFINITY;
  528. var maxY = Number.NEGATIVE_INFINITY;
  529. var length = positions.length;
  530. for (var i = 0; i < length; ++i) {
  531. var p = Cartesian2.Cartesian3.clone(positions[i], computeBoundingRectangleCartesian3);
  532. Transforms.Matrix3.multiplyByVector(textureMatrix, p, p);
  533. var st = projectPointTo2D(p, computeBoundingRectangleCartesian2);
  534. if (when.defined(st)) {
  535. minX = Math.min(minX, st.x);
  536. maxX = Math.max(maxX, st.x);
  537. minY = Math.min(minY, st.y);
  538. maxY = Math.max(maxY, st.y);
  539. }
  540. }
  541. result.x = minX;
  542. result.y = minY;
  543. result.width = maxX - minX;
  544. result.height = maxY - minY;
  545. return result;
  546. };
  547. PolygonGeometryLibrary.createGeometryFromPositions = function (
  548. ellipsoid,
  549. polygon,
  550. granularity,
  551. perPositionHeight,
  552. vertexFormat,
  553. arcType
  554. ) {
  555. var indices = PolygonPipeline.PolygonPipeline.triangulate(polygon.positions2D, polygon.holes);
  556. /* If polygon is completely unrenderable, just use the first three vertices */
  557. if (indices.length < 3) {
  558. indices = [0, 1, 2];
  559. }
  560. var positions = polygon.positions;
  561. if (perPositionHeight) {
  562. var length = positions.length;
  563. var flattenedPositions = new Array(length * 3);
  564. var index = 0;
  565. for (var i = 0; i < length; i++) {
  566. var p = positions[i];
  567. flattenedPositions[index++] = p.x;
  568. flattenedPositions[index++] = p.y;
  569. flattenedPositions[index++] = p.z;
  570. }
  571. var geometry = new GeometryAttribute.Geometry({
  572. attributes: {
  573. position: new GeometryAttribute.GeometryAttribute({
  574. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  575. componentsPerAttribute: 3,
  576. values: flattenedPositions,
  577. }),
  578. },
  579. indices: indices,
  580. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  581. });
  582. if (vertexFormat.normal) {
  583. return GeometryPipeline.GeometryPipeline.computeNormal(geometry);
  584. }
  585. return geometry;
  586. }
  587. if (arcType === ArcType.ArcType.GEODESIC) {
  588. return PolygonPipeline.PolygonPipeline.computeSubdivision(
  589. ellipsoid,
  590. positions,
  591. indices,
  592. granularity
  593. );
  594. } else if (arcType === ArcType.ArcType.RHUMB) {
  595. return PolygonPipeline.PolygonPipeline.computeRhumbLineSubdivision(
  596. ellipsoid,
  597. positions,
  598. indices,
  599. granularity
  600. );
  601. }
  602. };
  603. var computeWallIndicesSubdivided = [];
  604. var p1Scratch = new Cartesian2.Cartesian3();
  605. var p2Scratch = new Cartesian2.Cartesian3();
  606. PolygonGeometryLibrary.computeWallGeometry = function (
  607. positions,
  608. ellipsoid,
  609. granularity,
  610. perPositionHeight,
  611. arcType
  612. ) {
  613. var edgePositions;
  614. var topEdgeLength;
  615. var i;
  616. var p1;
  617. var p2;
  618. var length = positions.length;
  619. var index = 0;
  620. if (!perPositionHeight) {
  621. var minDistance = _Math.CesiumMath.chordLength(
  622. granularity,
  623. ellipsoid.maximumRadius
  624. );
  625. var numVertices = 0;
  626. if (arcType === ArcType.ArcType.GEODESIC) {
  627. for (i = 0; i < length; i++) {
  628. numVertices += PolygonGeometryLibrary.subdivideLineCount(
  629. positions[i],
  630. positions[(i + 1) % length],
  631. minDistance
  632. );
  633. }
  634. } else if (arcType === ArcType.ArcType.RHUMB) {
  635. for (i = 0; i < length; i++) {
  636. numVertices += PolygonGeometryLibrary.subdivideRhumbLineCount(
  637. ellipsoid,
  638. positions[i],
  639. positions[(i + 1) % length],
  640. minDistance
  641. );
  642. }
  643. }
  644. topEdgeLength = (numVertices + length) * 3;
  645. edgePositions = new Array(topEdgeLength * 2);
  646. for (i = 0; i < length; i++) {
  647. p1 = positions[i];
  648. p2 = positions[(i + 1) % length];
  649. var tempPositions;
  650. if (arcType === ArcType.ArcType.GEODESIC) {
  651. tempPositions = PolygonGeometryLibrary.subdivideLine(
  652. p1,
  653. p2,
  654. minDistance,
  655. computeWallIndicesSubdivided
  656. );
  657. } else if (arcType === ArcType.ArcType.RHUMB) {
  658. tempPositions = PolygonGeometryLibrary.subdivideRhumbLine(
  659. ellipsoid,
  660. p1,
  661. p2,
  662. minDistance,
  663. computeWallIndicesSubdivided
  664. );
  665. }
  666. var tempPositionsLength = tempPositions.length;
  667. for (var j = 0; j < tempPositionsLength; ++j, ++index) {
  668. edgePositions[index] = tempPositions[j];
  669. edgePositions[index + topEdgeLength] = tempPositions[j];
  670. }
  671. edgePositions[index] = p2.x;
  672. edgePositions[index + topEdgeLength] = p2.x;
  673. ++index;
  674. edgePositions[index] = p2.y;
  675. edgePositions[index + topEdgeLength] = p2.y;
  676. ++index;
  677. edgePositions[index] = p2.z;
  678. edgePositions[index + topEdgeLength] = p2.z;
  679. ++index;
  680. }
  681. } else {
  682. topEdgeLength = length * 3 * 2;
  683. edgePositions = new Array(topEdgeLength * 2);
  684. for (i = 0; i < length; i++) {
  685. p1 = positions[i];
  686. p2 = positions[(i + 1) % length];
  687. edgePositions[index] = edgePositions[index + topEdgeLength] = p1.x;
  688. ++index;
  689. edgePositions[index] = edgePositions[index + topEdgeLength] = p1.y;
  690. ++index;
  691. edgePositions[index] = edgePositions[index + topEdgeLength] = p1.z;
  692. ++index;
  693. edgePositions[index] = edgePositions[index + topEdgeLength] = p2.x;
  694. ++index;
  695. edgePositions[index] = edgePositions[index + topEdgeLength] = p2.y;
  696. ++index;
  697. edgePositions[index] = edgePositions[index + topEdgeLength] = p2.z;
  698. ++index;
  699. }
  700. }
  701. length = edgePositions.length;
  702. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  703. length / 3,
  704. length - positions.length * 6
  705. );
  706. var edgeIndex = 0;
  707. length /= 6;
  708. for (i = 0; i < length; i++) {
  709. var UL = i;
  710. var UR = UL + 1;
  711. var LL = UL + length;
  712. var LR = LL + 1;
  713. p1 = Cartesian2.Cartesian3.fromArray(edgePositions, UL * 3, p1Scratch);
  714. p2 = Cartesian2.Cartesian3.fromArray(edgePositions, UR * 3, p2Scratch);
  715. if (
  716. Cartesian2.Cartesian3.equalsEpsilon(
  717. p1,
  718. p2,
  719. _Math.CesiumMath.EPSILON10,
  720. _Math.CesiumMath.EPSILON10
  721. )
  722. ) {
  723. //skip corner
  724. continue;
  725. }
  726. indices[edgeIndex++] = UL;
  727. indices[edgeIndex++] = LL;
  728. indices[edgeIndex++] = UR;
  729. indices[edgeIndex++] = UR;
  730. indices[edgeIndex++] = LL;
  731. indices[edgeIndex++] = LR;
  732. }
  733. return new GeometryAttribute.Geometry({
  734. attributes: new GeometryAttributes.GeometryAttributes({
  735. position: new GeometryAttribute.GeometryAttribute({
  736. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  737. componentsPerAttribute: 3,
  738. values: edgePositions,
  739. }),
  740. }),
  741. indices: indices,
  742. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  743. });
  744. };
  745. exports.PolygonGeometryLibrary = PolygonGeometryLibrary;
  746. });
  747. //# sourceMappingURL=PolygonGeometryLibrary-98a03962.js.map