PolylinePipeline-25d1e129.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  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', './Math-1124a290', './Cartesian2-33d2657c', './Transforms-8be64844', './IntersectionTests-afc38163', './Plane-fa30fc46', './EllipsoidRhumbLine-5f1492e5', './EllipsoidGeodesic-0f41968b'], function (exports, when, Check, _Math, Cartesian2, Transforms, IntersectionTests, Plane, EllipsoidRhumbLine, EllipsoidGeodesic) { 'use strict';
  24. /**
  25. * @private
  26. */
  27. var PolylinePipeline = {};
  28. PolylinePipeline.numberOfPoints = function (p0, p1, minDistance) {
  29. var distance = Cartesian2.Cartesian3.distance(p0, p1);
  30. return Math.ceil(distance / minDistance);
  31. };
  32. PolylinePipeline.numberOfPointsRhumbLine = function (p0, p1, granularity) {
  33. var radiansDistanceSquared =
  34. Math.pow(p0.longitude - p1.longitude, 2) +
  35. Math.pow(p0.latitude - p1.latitude, 2);
  36. return Math.max(
  37. 1,
  38. Math.ceil(Math.sqrt(radiansDistanceSquared / (granularity * granularity)))
  39. );
  40. };
  41. var cartoScratch = new Cartesian2.Cartographic();
  42. PolylinePipeline.extractHeights = function (positions, ellipsoid) {
  43. var length = positions.length;
  44. var heights = new Array(length);
  45. for (var i = 0; i < length; i++) {
  46. var p = positions[i];
  47. heights[i] = ellipsoid.cartesianToCartographic(p, cartoScratch).height;
  48. }
  49. return heights;
  50. };
  51. var wrapLongitudeInversMatrix = new Transforms.Matrix4();
  52. var wrapLongitudeOrigin = new Cartesian2.Cartesian3();
  53. var wrapLongitudeXZNormal = new Cartesian2.Cartesian3();
  54. var wrapLongitudeXZPlane = new Plane.Plane(Cartesian2.Cartesian3.UNIT_X, 0.0);
  55. var wrapLongitudeYZNormal = new Cartesian2.Cartesian3();
  56. var wrapLongitudeYZPlane = new Plane.Plane(Cartesian2.Cartesian3.UNIT_X, 0.0);
  57. var wrapLongitudeIntersection = new Cartesian2.Cartesian3();
  58. var wrapLongitudeOffset = new Cartesian2.Cartesian3();
  59. var subdivideHeightsScratchArray = [];
  60. function subdivideHeights(numPoints, h0, h1) {
  61. var heights = subdivideHeightsScratchArray;
  62. heights.length = numPoints;
  63. var i;
  64. if (h0 === h1) {
  65. for (i = 0; i < numPoints; i++) {
  66. heights[i] = h0;
  67. }
  68. return heights;
  69. }
  70. var dHeight = h1 - h0;
  71. var heightPerVertex = dHeight / numPoints;
  72. for (i = 0; i < numPoints; i++) {
  73. var h = h0 + i * heightPerVertex;
  74. heights[i] = h;
  75. }
  76. return heights;
  77. }
  78. var carto1 = new Cartesian2.Cartographic();
  79. var carto2 = new Cartesian2.Cartographic();
  80. var cartesian = new Cartesian2.Cartesian3();
  81. var scaleFirst = new Cartesian2.Cartesian3();
  82. var scaleLast = new Cartesian2.Cartesian3();
  83. var ellipsoidGeodesic = new EllipsoidGeodesic.EllipsoidGeodesic();
  84. var ellipsoidRhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine();
  85. //Returns subdivided line scaled to ellipsoid surface starting at p1 and ending at p2.
  86. //Result includes p1, but not include p2. This function is called for a sequence of line segments,
  87. //and this prevents duplication of end point.
  88. function generateCartesianArc(
  89. p0,
  90. p1,
  91. minDistance,
  92. ellipsoid,
  93. h0,
  94. h1,
  95. array,
  96. offset
  97. ) {
  98. var first = ellipsoid.scaleToGeodeticSurface(p0, scaleFirst);
  99. var last = ellipsoid.scaleToGeodeticSurface(p1, scaleLast);
  100. var numPoints = PolylinePipeline.numberOfPoints(p0, p1, minDistance);
  101. var start = ellipsoid.cartesianToCartographic(first, carto1);
  102. var end = ellipsoid.cartesianToCartographic(last, carto2);
  103. var heights = subdivideHeights(numPoints, h0, h1);
  104. ellipsoidGeodesic.setEndPoints(start, end);
  105. var surfaceDistanceBetweenPoints =
  106. ellipsoidGeodesic.surfaceDistance / numPoints;
  107. var index = offset;
  108. start.height = h0;
  109. var cart = ellipsoid.cartographicToCartesian(start, cartesian);
  110. Cartesian2.Cartesian3.pack(cart, array, index);
  111. index += 3;
  112. for (var i = 1; i < numPoints; i++) {
  113. var carto = ellipsoidGeodesic.interpolateUsingSurfaceDistance(
  114. i * surfaceDistanceBetweenPoints,
  115. carto2
  116. );
  117. carto.height = heights[i];
  118. cart = ellipsoid.cartographicToCartesian(carto, cartesian);
  119. Cartesian2.Cartesian3.pack(cart, array, index);
  120. index += 3;
  121. }
  122. return index;
  123. }
  124. //Returns subdivided line scaled to ellipsoid surface starting at p1 and ending at p2.
  125. //Result includes p1, but not include p2. This function is called for a sequence of line segments,
  126. //and this prevents duplication of end point.
  127. function generateCartesianRhumbArc(
  128. p0,
  129. p1,
  130. granularity,
  131. ellipsoid,
  132. h0,
  133. h1,
  134. array,
  135. offset
  136. ) {
  137. var start = ellipsoid.cartesianToCartographic(p0, carto1);
  138. var end = ellipsoid.cartesianToCartographic(p1, carto2);
  139. var numPoints = PolylinePipeline.numberOfPointsRhumbLine(
  140. start,
  141. end,
  142. granularity
  143. );
  144. start.height = 0.0;
  145. end.height = 0.0;
  146. var heights = subdivideHeights(numPoints, h0, h1);
  147. if (!ellipsoidRhumb.ellipsoid.equals(ellipsoid)) {
  148. ellipsoidRhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine(undefined, undefined, ellipsoid);
  149. }
  150. ellipsoidRhumb.setEndPoints(start, end);
  151. var surfaceDistanceBetweenPoints = ellipsoidRhumb.surfaceDistance / numPoints;
  152. var index = offset;
  153. start.height = h0;
  154. var cart = ellipsoid.cartographicToCartesian(start, cartesian);
  155. Cartesian2.Cartesian3.pack(cart, array, index);
  156. index += 3;
  157. for (var i = 1; i < numPoints; i++) {
  158. var carto = ellipsoidRhumb.interpolateUsingSurfaceDistance(
  159. i * surfaceDistanceBetweenPoints,
  160. carto2
  161. );
  162. carto.height = heights[i];
  163. cart = ellipsoid.cartographicToCartesian(carto, cartesian);
  164. Cartesian2.Cartesian3.pack(cart, array, index);
  165. index += 3;
  166. }
  167. return index;
  168. }
  169. /**
  170. * Breaks a {@link Polyline} into segments such that it does not cross the &plusmn;180 degree meridian of an ellipsoid.
  171. *
  172. * @param {Cartesian3[]} positions The polyline's Cartesian positions.
  173. * @param {Matrix4} [modelMatrix=Matrix4.IDENTITY] The polyline's model matrix. Assumed to be an affine
  174. * transformation matrix, where the upper left 3x3 elements are a rotation matrix, and
  175. * the upper three elements in the fourth column are the translation. The bottom row is assumed to be [0, 0, 0, 1].
  176. * The matrix is not verified to be in the proper form.
  177. * @returns {Object} An object with a <code>positions</code> property that is an array of positions and a
  178. * <code>segments</code> property.
  179. *
  180. *
  181. * @example
  182. * var polylines = new Cesium.PolylineCollection();
  183. * var polyline = polylines.add(...);
  184. * var positions = polyline.positions;
  185. * var modelMatrix = polylines.modelMatrix;
  186. * var segments = Cesium.PolylinePipeline.wrapLongitude(positions, modelMatrix);
  187. *
  188. * @see PolygonPipeline.wrapLongitude
  189. * @see Polyline
  190. * @see PolylineCollection
  191. */
  192. PolylinePipeline.wrapLongitude = function (positions, modelMatrix) {
  193. var cartesians = [];
  194. var segments = [];
  195. if (when.defined(positions) && positions.length > 0) {
  196. modelMatrix = when.defaultValue(modelMatrix, Transforms.Matrix4.IDENTITY);
  197. var inverseModelMatrix = Transforms.Matrix4.inverseTransformation(
  198. modelMatrix,
  199. wrapLongitudeInversMatrix
  200. );
  201. var origin = Transforms.Matrix4.multiplyByPoint(
  202. inverseModelMatrix,
  203. Cartesian2.Cartesian3.ZERO,
  204. wrapLongitudeOrigin
  205. );
  206. var xzNormal = Cartesian2.Cartesian3.normalize(
  207. Transforms.Matrix4.multiplyByPointAsVector(
  208. inverseModelMatrix,
  209. Cartesian2.Cartesian3.UNIT_Y,
  210. wrapLongitudeXZNormal
  211. ),
  212. wrapLongitudeXZNormal
  213. );
  214. var xzPlane = Plane.Plane.fromPointNormal(origin, xzNormal, wrapLongitudeXZPlane);
  215. var yzNormal = Cartesian2.Cartesian3.normalize(
  216. Transforms.Matrix4.multiplyByPointAsVector(
  217. inverseModelMatrix,
  218. Cartesian2.Cartesian3.UNIT_X,
  219. wrapLongitudeYZNormal
  220. ),
  221. wrapLongitudeYZNormal
  222. );
  223. var yzPlane = Plane.Plane.fromPointNormal(origin, yzNormal, wrapLongitudeYZPlane);
  224. var count = 1;
  225. cartesians.push(Cartesian2.Cartesian3.clone(positions[0]));
  226. var prev = cartesians[0];
  227. var length = positions.length;
  228. for (var i = 1; i < length; ++i) {
  229. var cur = positions[i];
  230. // intersects the IDL if either endpoint is on the negative side of the yz-plane
  231. if (
  232. Plane.Plane.getPointDistance(yzPlane, prev) < 0.0 ||
  233. Plane.Plane.getPointDistance(yzPlane, cur) < 0.0
  234. ) {
  235. // and intersects the xz-plane
  236. var intersection = IntersectionTests.IntersectionTests.lineSegmentPlane(
  237. prev,
  238. cur,
  239. xzPlane,
  240. wrapLongitudeIntersection
  241. );
  242. if (when.defined(intersection)) {
  243. // move point on the xz-plane slightly away from the plane
  244. var offset = Cartesian2.Cartesian3.multiplyByScalar(
  245. xzNormal,
  246. 5.0e-9,
  247. wrapLongitudeOffset
  248. );
  249. if (Plane.Plane.getPointDistance(xzPlane, prev) < 0.0) {
  250. Cartesian2.Cartesian3.negate(offset, offset);
  251. }
  252. cartesians.push(
  253. Cartesian2.Cartesian3.add(intersection, offset, new Cartesian2.Cartesian3())
  254. );
  255. segments.push(count + 1);
  256. Cartesian2.Cartesian3.negate(offset, offset);
  257. cartesians.push(
  258. Cartesian2.Cartesian3.add(intersection, offset, new Cartesian2.Cartesian3())
  259. );
  260. count = 1;
  261. }
  262. }
  263. cartesians.push(Cartesian2.Cartesian3.clone(positions[i]));
  264. count++;
  265. prev = cur;
  266. }
  267. segments.push(count);
  268. }
  269. return {
  270. positions: cartesians,
  271. lengths: segments,
  272. };
  273. };
  274. /**
  275. * Subdivides polyline and raises all points to the specified height. Returns an array of numbers to represent the positions.
  276. * @param {Object} options Object with the following properties:
  277. * @param {Cartesian3[]} options.positions The array of type {Cartesian3} representing positions.
  278. * @param {Number|Number[]} [options.height=0.0] A number or array of numbers representing the heights of each position.
  279. * @param {Number} [options.granularity = CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
  280. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the positions lie.
  281. * @returns {Number[]} A new array of positions of type {Number} that have been subdivided and raised to the surface of the ellipsoid.
  282. *
  283. * @example
  284. * var positions = Cesium.Cartesian3.fromDegreesArray([
  285. * -105.0, 40.0,
  286. * -100.0, 38.0,
  287. * -105.0, 35.0,
  288. * -100.0, 32.0
  289. * ]);
  290. * var surfacePositions = Cesium.PolylinePipeline.generateArc({
  291. * positons: positions
  292. * });
  293. */
  294. PolylinePipeline.generateArc = function (options) {
  295. if (!when.defined(options)) {
  296. options = {};
  297. }
  298. var positions = options.positions;
  299. //>>includeStart('debug', pragmas.debug);
  300. if (!when.defined(positions)) {
  301. throw new Check.DeveloperError("options.positions is required.");
  302. }
  303. //>>includeEnd('debug');
  304. var length = positions.length;
  305. var ellipsoid = when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84);
  306. var height = when.defaultValue(options.height, 0);
  307. var hasHeightArray = Array.isArray(height);
  308. if (length < 1) {
  309. return [];
  310. } else if (length === 1) {
  311. var p = ellipsoid.scaleToGeodeticSurface(positions[0], scaleFirst);
  312. height = hasHeightArray ? height[0] : height;
  313. if (height !== 0) {
  314. var n = ellipsoid.geodeticSurfaceNormal(p, cartesian);
  315. Cartesian2.Cartesian3.multiplyByScalar(n, height, n);
  316. Cartesian2.Cartesian3.add(p, n, p);
  317. }
  318. return [p.x, p.y, p.z];
  319. }
  320. var minDistance = options.minDistance;
  321. if (!when.defined(minDistance)) {
  322. var granularity = when.defaultValue(
  323. options.granularity,
  324. _Math.CesiumMath.RADIANS_PER_DEGREE
  325. );
  326. minDistance = _Math.CesiumMath.chordLength(granularity, ellipsoid.maximumRadius);
  327. }
  328. var numPoints = 0;
  329. var i;
  330. for (i = 0; i < length - 1; i++) {
  331. numPoints += PolylinePipeline.numberOfPoints(
  332. positions[i],
  333. positions[i + 1],
  334. minDistance
  335. );
  336. }
  337. var arrayLength = (numPoints + 1) * 3;
  338. var newPositions = new Array(arrayLength);
  339. var offset = 0;
  340. for (i = 0; i < length - 1; i++) {
  341. var p0 = positions[i];
  342. var p1 = positions[i + 1];
  343. var h0 = hasHeightArray ? height[i] : height;
  344. var h1 = hasHeightArray ? height[i + 1] : height;
  345. offset = generateCartesianArc(
  346. p0,
  347. p1,
  348. minDistance,
  349. ellipsoid,
  350. h0,
  351. h1,
  352. newPositions,
  353. offset
  354. );
  355. }
  356. subdivideHeightsScratchArray.length = 0;
  357. var lastPoint = positions[length - 1];
  358. var carto = ellipsoid.cartesianToCartographic(lastPoint, carto1);
  359. carto.height = hasHeightArray ? height[length - 1] : height;
  360. var cart = ellipsoid.cartographicToCartesian(carto, cartesian);
  361. Cartesian2.Cartesian3.pack(cart, newPositions, arrayLength - 3);
  362. return newPositions;
  363. };
  364. var scratchCartographic0 = new Cartesian2.Cartographic();
  365. var scratchCartographic1 = new Cartesian2.Cartographic();
  366. /**
  367. * Subdivides polyline and raises all points to the specified height using Rhumb lines. Returns an array of numbers to represent the positions.
  368. * @param {Object} options Object with the following properties:
  369. * @param {Cartesian3[]} options.positions The array of type {Cartesian3} representing positions.
  370. * @param {Number|Number[]} [options.height=0.0] A number or array of numbers representing the heights of each position.
  371. * @param {Number} [options.granularity = CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
  372. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the positions lie.
  373. * @returns {Number[]} A new array of positions of type {Number} that have been subdivided and raised to the surface of the ellipsoid.
  374. *
  375. * @example
  376. * var positions = Cesium.Cartesian3.fromDegreesArray([
  377. * -105.0, 40.0,
  378. * -100.0, 38.0,
  379. * -105.0, 35.0,
  380. * -100.0, 32.0
  381. * ]);
  382. * var surfacePositions = Cesium.PolylinePipeline.generateRhumbArc({
  383. * positons: positions
  384. * });
  385. */
  386. PolylinePipeline.generateRhumbArc = function (options) {
  387. if (!when.defined(options)) {
  388. options = {};
  389. }
  390. var positions = options.positions;
  391. //>>includeStart('debug', pragmas.debug);
  392. if (!when.defined(positions)) {
  393. throw new Check.DeveloperError("options.positions is required.");
  394. }
  395. //>>includeEnd('debug');
  396. var length = positions.length;
  397. var ellipsoid = when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84);
  398. var height = when.defaultValue(options.height, 0);
  399. var hasHeightArray = Array.isArray(height);
  400. if (length < 1) {
  401. return [];
  402. } else if (length === 1) {
  403. var p = ellipsoid.scaleToGeodeticSurface(positions[0], scaleFirst);
  404. height = hasHeightArray ? height[0] : height;
  405. if (height !== 0) {
  406. var n = ellipsoid.geodeticSurfaceNormal(p, cartesian);
  407. Cartesian2.Cartesian3.multiplyByScalar(n, height, n);
  408. Cartesian2.Cartesian3.add(p, n, p);
  409. }
  410. return [p.x, p.y, p.z];
  411. }
  412. var granularity = when.defaultValue(
  413. options.granularity,
  414. _Math.CesiumMath.RADIANS_PER_DEGREE
  415. );
  416. var numPoints = 0;
  417. var i;
  418. var c0 = ellipsoid.cartesianToCartographic(
  419. positions[0],
  420. scratchCartographic0
  421. );
  422. var c1;
  423. for (i = 0; i < length - 1; i++) {
  424. c1 = ellipsoid.cartesianToCartographic(
  425. positions[i + 1],
  426. scratchCartographic1
  427. );
  428. numPoints += PolylinePipeline.numberOfPointsRhumbLine(c0, c1, granularity);
  429. c0 = Cartesian2.Cartographic.clone(c1, scratchCartographic0);
  430. }
  431. var arrayLength = (numPoints + 1) * 3;
  432. var newPositions = new Array(arrayLength);
  433. var offset = 0;
  434. for (i = 0; i < length - 1; i++) {
  435. var p0 = positions[i];
  436. var p1 = positions[i + 1];
  437. var h0 = hasHeightArray ? height[i] : height;
  438. var h1 = hasHeightArray ? height[i + 1] : height;
  439. offset = generateCartesianRhumbArc(
  440. p0,
  441. p1,
  442. granularity,
  443. ellipsoid,
  444. h0,
  445. h1,
  446. newPositions,
  447. offset
  448. );
  449. }
  450. subdivideHeightsScratchArray.length = 0;
  451. var lastPoint = positions[length - 1];
  452. var carto = ellipsoid.cartesianToCartographic(lastPoint, carto1);
  453. carto.height = hasHeightArray ? height[length - 1] : height;
  454. var cart = ellipsoid.cartographicToCartesian(carto, cartesian);
  455. Cartesian2.Cartesian3.pack(cart, newPositions, arrayLength - 3);
  456. return newPositions;
  457. };
  458. /**
  459. * Subdivides polyline and raises all points to the specified height. Returns an array of new {Cartesian3} positions.
  460. * @param {Object} options Object with the following properties:
  461. * @param {Cartesian3[]} options.positions The array of type {Cartesian3} representing positions.
  462. * @param {Number|Number[]} [options.height=0.0] A number or array of numbers representing the heights of each position.
  463. * @param {Number} [options.granularity = CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
  464. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the positions lie.
  465. * @returns {Cartesian3[]} A new array of cartesian3 positions that have been subdivided and raised to the surface of the ellipsoid.
  466. *
  467. * @example
  468. * var positions = Cesium.Cartesian3.fromDegreesArray([
  469. * -105.0, 40.0,
  470. * -100.0, 38.0,
  471. * -105.0, 35.0,
  472. * -100.0, 32.0
  473. * ]);
  474. * var surfacePositions = Cesium.PolylinePipeline.generateCartesianArc({
  475. * positons: positions
  476. * });
  477. */
  478. PolylinePipeline.generateCartesianArc = function (options) {
  479. var numberArray = PolylinePipeline.generateArc(options);
  480. var size = numberArray.length / 3;
  481. var newPositions = new Array(size);
  482. for (var i = 0; i < size; i++) {
  483. newPositions[i] = Cartesian2.Cartesian3.unpack(numberArray, i * 3);
  484. }
  485. return newPositions;
  486. };
  487. /**
  488. * Subdivides polyline and raises all points to the specified height using Rhumb Lines. Returns an array of new {Cartesian3} positions.
  489. * @param {Object} options Object with the following properties:
  490. * @param {Cartesian3[]} options.positions The array of type {Cartesian3} representing positions.
  491. * @param {Number|Number[]} [options.height=0.0] A number or array of numbers representing the heights of each position.
  492. * @param {Number} [options.granularity = CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer.
  493. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the positions lie.
  494. * @returns {Cartesian3[]} A new array of cartesian3 positions that have been subdivided and raised to the surface of the ellipsoid.
  495. *
  496. * @example
  497. * var positions = Cesium.Cartesian3.fromDegreesArray([
  498. * -105.0, 40.0,
  499. * -100.0, 38.0,
  500. * -105.0, 35.0,
  501. * -100.0, 32.0
  502. * ]);
  503. * var surfacePositions = Cesium.PolylinePipeline.generateCartesianRhumbArc({
  504. * positons: positions
  505. * });
  506. */
  507. PolylinePipeline.generateCartesianRhumbArc = function (options) {
  508. var numberArray = PolylinePipeline.generateRhumbArc(options);
  509. var size = numberArray.length / 3;
  510. var newPositions = new Array(size);
  511. for (var i = 0; i < size; i++) {
  512. newPositions[i] = Cartesian2.Cartesian3.unpack(numberArray, i * 3);
  513. }
  514. return newPositions;
  515. };
  516. exports.PolylinePipeline = PolylinePipeline;
  517. });
  518. //# sourceMappingURL=PolylinePipeline-25d1e129.js.map