createPolylineGeometry.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  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(['./when-54c2dc71', './Check-6c0211bc', './Math-1124a290', './Cartesian2-33d2657c', './Transforms-8be64844', './RuntimeError-2109023a', './WebGLConstants-76bb35d1', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './IndexDatatype-25023891', './IntersectionTests-afc38163', './Plane-fa30fc46', './VertexFormat-4d8b817a', './arrayRemoveDuplicates-0263f42c', './ArcType-dc1c5aee', './EllipsoidRhumbLine-5f1492e5', './EllipsoidGeodesic-0f41968b', './PolylinePipeline-25d1e129', './Color-680d93bf'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, IntersectionTests, Plane, VertexFormat, arrayRemoveDuplicates, ArcType, EllipsoidRhumbLine, EllipsoidGeodesic, PolylinePipeline, Color) { 'use strict';
  24. var scratchInterpolateColorsArray = [];
  25. function interpolateColors(p0, p1, color0, color1, numPoints) {
  26. var colors = scratchInterpolateColorsArray;
  27. colors.length = numPoints;
  28. var i;
  29. var r0 = color0.red;
  30. var g0 = color0.green;
  31. var b0 = color0.blue;
  32. var a0 = color0.alpha;
  33. var r1 = color1.red;
  34. var g1 = color1.green;
  35. var b1 = color1.blue;
  36. var a1 = color1.alpha;
  37. if (Color.Color.equals(color0, color1)) {
  38. for (i = 0; i < numPoints; i++) {
  39. colors[i] = Color.Color.clone(color0);
  40. }
  41. return colors;
  42. }
  43. var redPerVertex = (r1 - r0) / numPoints;
  44. var greenPerVertex = (g1 - g0) / numPoints;
  45. var bluePerVertex = (b1 - b0) / numPoints;
  46. var alphaPerVertex = (a1 - a0) / numPoints;
  47. for (i = 0; i < numPoints; i++) {
  48. colors[i] = new Color.Color(
  49. r0 + i * redPerVertex,
  50. g0 + i * greenPerVertex,
  51. b0 + i * bluePerVertex,
  52. a0 + i * alphaPerVertex
  53. );
  54. }
  55. return colors;
  56. }
  57. /**
  58. * A description of a polyline modeled as a line strip; the first two positions define a line segment,
  59. * and each additional position defines a line segment from the previous position. The polyline is capable of
  60. * displaying with a material.
  61. *
  62. * @alias PolylineGeometry
  63. * @constructor
  64. *
  65. * @param {Object} options Object with the following properties:
  66. * @param {Cartesian3[]} options.positions An array of {@link Cartesian3} defining the positions in the polyline as a line strip.
  67. * @param {Number} [options.width=1.0] The width in pixels.
  68. * @param {Color[]} [options.colors] An Array of {@link Color} defining the per vertex or per segment colors.
  69. * @param {Boolean} [options.colorsPerVertex=false] A boolean that determines whether the colors will be flat across each segment of the line or interpolated across the vertices.
  70. * @param {ArcType} [options.arcType=ArcType.GEODESIC] The type of line the polyline segments must follow.
  71. * @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude if options.arcType is not ArcType.NONE. Determines the number of positions in the buffer.
  72. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  73. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  74. *
  75. * @exception {DeveloperError} At least two positions are required.
  76. * @exception {DeveloperError} width must be greater than or equal to one.
  77. * @exception {DeveloperError} colors has an invalid length.
  78. *
  79. * @see PolylineGeometry#createGeometry
  80. *
  81. * @demo {@link https://sandcastle.cesium.com/index.html?src=Polyline.html|Cesium Sandcastle Polyline Demo}
  82. *
  83. * @example
  84. * // A polyline with two connected line segments
  85. * var polyline = new Cesium.PolylineGeometry({
  86. * positions : Cesium.Cartesian3.fromDegreesArray([
  87. * 0.0, 0.0,
  88. * 5.0, 0.0,
  89. * 5.0, 5.0
  90. * ]),
  91. * width : 10.0
  92. * });
  93. * var geometry = Cesium.PolylineGeometry.createGeometry(polyline);
  94. */
  95. function PolylineGeometry(options) {
  96. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  97. var positions = options.positions;
  98. var colors = options.colors;
  99. var width = when.defaultValue(options.width, 1.0);
  100. var colorsPerVertex = when.defaultValue(options.colorsPerVertex, false);
  101. //>>includeStart('debug', pragmas.debug);
  102. if (!when.defined(positions) || positions.length < 2) {
  103. throw new Check.DeveloperError("At least two positions are required.");
  104. }
  105. if (typeof width !== "number") {
  106. throw new Check.DeveloperError("width must be a number");
  107. }
  108. if (
  109. when.defined(colors) &&
  110. ((colorsPerVertex && colors.length < positions.length) ||
  111. (!colorsPerVertex && colors.length < positions.length - 1))
  112. ) {
  113. throw new Check.DeveloperError("colors has an invalid length.");
  114. }
  115. //>>includeEnd('debug');
  116. this._positions = positions;
  117. this._colors = colors;
  118. this._width = width;
  119. this._colorsPerVertex = colorsPerVertex;
  120. this._vertexFormat = VertexFormat.VertexFormat.clone(
  121. when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT)
  122. );
  123. this._arcType = when.defaultValue(options.arcType, ArcType.ArcType.GEODESIC);
  124. this._granularity = when.defaultValue(
  125. options.granularity,
  126. _Math.CesiumMath.RADIANS_PER_DEGREE
  127. );
  128. this._ellipsoid = Cartesian2.Ellipsoid.clone(
  129. when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84)
  130. );
  131. this._workerName = "createPolylineGeometry";
  132. var numComponents = 1 + positions.length * Cartesian2.Cartesian3.packedLength;
  133. numComponents += when.defined(colors) ? 1 + colors.length * Color.Color.packedLength : 1;
  134. /**
  135. * The number of elements used to pack the object into an array.
  136. * @type {Number}
  137. */
  138. this.packedLength =
  139. numComponents + Cartesian2.Ellipsoid.packedLength + VertexFormat.VertexFormat.packedLength + 4;
  140. }
  141. /**
  142. * Stores the provided instance into the provided array.
  143. *
  144. * @param {PolylineGeometry} value The value to pack.
  145. * @param {Number[]} array The array to pack into.
  146. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  147. *
  148. * @returns {Number[]} The array that was packed into
  149. */
  150. PolylineGeometry.pack = function (value, array, startingIndex) {
  151. //>>includeStart('debug', pragmas.debug);
  152. if (!when.defined(value)) {
  153. throw new Check.DeveloperError("value is required");
  154. }
  155. if (!when.defined(array)) {
  156. throw new Check.DeveloperError("array is required");
  157. }
  158. //>>includeEnd('debug');
  159. startingIndex = when.defaultValue(startingIndex, 0);
  160. var i;
  161. var positions = value._positions;
  162. var length = positions.length;
  163. array[startingIndex++] = length;
  164. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  165. Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
  166. }
  167. var colors = value._colors;
  168. length = when.defined(colors) ? colors.length : 0.0;
  169. array[startingIndex++] = length;
  170. for (i = 0; i < length; ++i, startingIndex += Color.Color.packedLength) {
  171. Color.Color.pack(colors[i], array, startingIndex);
  172. }
  173. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  174. startingIndex += Cartesian2.Ellipsoid.packedLength;
  175. VertexFormat.VertexFormat.pack(value._vertexFormat, array, startingIndex);
  176. startingIndex += VertexFormat.VertexFormat.packedLength;
  177. array[startingIndex++] = value._width;
  178. array[startingIndex++] = value._colorsPerVertex ? 1.0 : 0.0;
  179. array[startingIndex++] = value._arcType;
  180. array[startingIndex] = value._granularity;
  181. return array;
  182. };
  183. var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE);
  184. var scratchVertexFormat = new VertexFormat.VertexFormat();
  185. var scratchOptions = {
  186. positions: undefined,
  187. colors: undefined,
  188. ellipsoid: scratchEllipsoid,
  189. vertexFormat: scratchVertexFormat,
  190. width: undefined,
  191. colorsPerVertex: undefined,
  192. arcType: undefined,
  193. granularity: undefined,
  194. };
  195. /**
  196. * Retrieves an instance from a packed array.
  197. *
  198. * @param {Number[]} array The packed array.
  199. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  200. * @param {PolylineGeometry} [result] The object into which to store the result.
  201. * @returns {PolylineGeometry} The modified result parameter or a new PolylineGeometry instance if one was not provided.
  202. */
  203. PolylineGeometry.unpack = function (array, startingIndex, result) {
  204. //>>includeStart('debug', pragmas.debug);
  205. if (!when.defined(array)) {
  206. throw new Check.DeveloperError("array is required");
  207. }
  208. //>>includeEnd('debug');
  209. startingIndex = when.defaultValue(startingIndex, 0);
  210. var i;
  211. var length = array[startingIndex++];
  212. var positions = new Array(length);
  213. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  214. positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
  215. }
  216. length = array[startingIndex++];
  217. var colors = length > 0 ? new Array(length) : undefined;
  218. for (i = 0; i < length; ++i, startingIndex += Color.Color.packedLength) {
  219. colors[i] = Color.Color.unpack(array, startingIndex);
  220. }
  221. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
  222. startingIndex += Cartesian2.Ellipsoid.packedLength;
  223. var vertexFormat = VertexFormat.VertexFormat.unpack(
  224. array,
  225. startingIndex,
  226. scratchVertexFormat
  227. );
  228. startingIndex += VertexFormat.VertexFormat.packedLength;
  229. var width = array[startingIndex++];
  230. var colorsPerVertex = array[startingIndex++] === 1.0;
  231. var arcType = array[startingIndex++];
  232. var granularity = array[startingIndex];
  233. if (!when.defined(result)) {
  234. scratchOptions.positions = positions;
  235. scratchOptions.colors = colors;
  236. scratchOptions.width = width;
  237. scratchOptions.colorsPerVertex = colorsPerVertex;
  238. scratchOptions.arcType = arcType;
  239. scratchOptions.granularity = granularity;
  240. return new PolylineGeometry(scratchOptions);
  241. }
  242. result._positions = positions;
  243. result._colors = colors;
  244. result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
  245. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  246. result._width = width;
  247. result._colorsPerVertex = colorsPerVertex;
  248. result._arcType = arcType;
  249. result._granularity = granularity;
  250. return result;
  251. };
  252. var scratchCartesian3 = new Cartesian2.Cartesian3();
  253. var scratchPosition = new Cartesian2.Cartesian3();
  254. var scratchPrevPosition = new Cartesian2.Cartesian3();
  255. var scratchNextPosition = new Cartesian2.Cartesian3();
  256. /**
  257. * Computes the geometric representation of a polyline, including its vertices, indices, and a bounding sphere.
  258. *
  259. * @param {PolylineGeometry} polylineGeometry A description of the polyline.
  260. * @returns {Geometry|undefined} The computed vertices and indices.
  261. */
  262. PolylineGeometry.createGeometry = function (polylineGeometry) {
  263. var width = polylineGeometry._width;
  264. var vertexFormat = polylineGeometry._vertexFormat;
  265. var colors = polylineGeometry._colors;
  266. var colorsPerVertex = polylineGeometry._colorsPerVertex;
  267. var arcType = polylineGeometry._arcType;
  268. var granularity = polylineGeometry._granularity;
  269. var ellipsoid = polylineGeometry._ellipsoid;
  270. var i;
  271. var j;
  272. var k;
  273. var positions = arrayRemoveDuplicates.arrayRemoveDuplicates(
  274. polylineGeometry._positions,
  275. Cartesian2.Cartesian3.equalsEpsilon
  276. );
  277. var positionsLength = positions.length;
  278. // A width of a pixel or less is not a valid geometry, but in order to support external data
  279. // that may have errors we treat this as an empty geometry.
  280. if (positionsLength < 2 || width <= 0.0) {
  281. return undefined;
  282. }
  283. if (arcType === ArcType.ArcType.GEODESIC || arcType === ArcType.ArcType.RHUMB) {
  284. var subdivisionSize;
  285. var numberOfPointsFunction;
  286. if (arcType === ArcType.ArcType.GEODESIC) {
  287. subdivisionSize = _Math.CesiumMath.chordLength(
  288. granularity,
  289. ellipsoid.maximumRadius
  290. );
  291. numberOfPointsFunction = PolylinePipeline.PolylinePipeline.numberOfPoints;
  292. } else {
  293. subdivisionSize = granularity;
  294. numberOfPointsFunction = PolylinePipeline.PolylinePipeline.numberOfPointsRhumbLine;
  295. }
  296. var heights = PolylinePipeline.PolylinePipeline.extractHeights(positions, ellipsoid);
  297. if (when.defined(colors)) {
  298. var colorLength = 1;
  299. for (i = 0; i < positionsLength - 1; ++i) {
  300. colorLength += numberOfPointsFunction(
  301. positions[i],
  302. positions[i + 1],
  303. subdivisionSize
  304. );
  305. }
  306. var newColors = new Array(colorLength);
  307. var newColorIndex = 0;
  308. for (i = 0; i < positionsLength - 1; ++i) {
  309. var p0 = positions[i];
  310. var p1 = positions[i + 1];
  311. var c0 = colors[i];
  312. var numColors = numberOfPointsFunction(p0, p1, subdivisionSize);
  313. if (colorsPerVertex && i < colorLength) {
  314. var c1 = colors[i + 1];
  315. var interpolatedColors = interpolateColors(p0, p1, c0, c1, numColors);
  316. var interpolatedColorsLength = interpolatedColors.length;
  317. for (j = 0; j < interpolatedColorsLength; ++j) {
  318. newColors[newColorIndex++] = interpolatedColors[j];
  319. }
  320. } else {
  321. for (j = 0; j < numColors; ++j) {
  322. newColors[newColorIndex++] = Color.Color.clone(c0);
  323. }
  324. }
  325. }
  326. newColors[newColorIndex] = Color.Color.clone(colors[colors.length - 1]);
  327. colors = newColors;
  328. scratchInterpolateColorsArray.length = 0;
  329. }
  330. if (arcType === ArcType.ArcType.GEODESIC) {
  331. positions = PolylinePipeline.PolylinePipeline.generateCartesianArc({
  332. positions: positions,
  333. minDistance: subdivisionSize,
  334. ellipsoid: ellipsoid,
  335. height: heights,
  336. });
  337. } else {
  338. positions = PolylinePipeline.PolylinePipeline.generateCartesianRhumbArc({
  339. positions: positions,
  340. granularity: subdivisionSize,
  341. ellipsoid: ellipsoid,
  342. height: heights,
  343. });
  344. }
  345. }
  346. positionsLength = positions.length;
  347. var size = positionsLength * 4.0 - 4.0;
  348. var finalPositions = new Float64Array(size * 3);
  349. var prevPositions = new Float64Array(size * 3);
  350. var nextPositions = new Float64Array(size * 3);
  351. var expandAndWidth = new Float32Array(size * 2);
  352. var st = vertexFormat.st ? new Float32Array(size * 2) : undefined;
  353. var finalColors = when.defined(colors) ? new Uint8Array(size * 4) : undefined;
  354. var positionIndex = 0;
  355. var expandAndWidthIndex = 0;
  356. var stIndex = 0;
  357. var colorIndex = 0;
  358. var position;
  359. for (j = 0; j < positionsLength; ++j) {
  360. if (j === 0) {
  361. position = scratchCartesian3;
  362. Cartesian2.Cartesian3.subtract(positions[0], positions[1], position);
  363. Cartesian2.Cartesian3.add(positions[0], position, position);
  364. } else {
  365. position = positions[j - 1];
  366. }
  367. Cartesian2.Cartesian3.clone(position, scratchPrevPosition);
  368. Cartesian2.Cartesian3.clone(positions[j], scratchPosition);
  369. if (j === positionsLength - 1) {
  370. position = scratchCartesian3;
  371. Cartesian2.Cartesian3.subtract(
  372. positions[positionsLength - 1],
  373. positions[positionsLength - 2],
  374. position
  375. );
  376. Cartesian2.Cartesian3.add(positions[positionsLength - 1], position, position);
  377. } else {
  378. position = positions[j + 1];
  379. }
  380. Cartesian2.Cartesian3.clone(position, scratchNextPosition);
  381. var color0, color1;
  382. if (when.defined(finalColors)) {
  383. if (j !== 0 && !colorsPerVertex) {
  384. color0 = colors[j - 1];
  385. } else {
  386. color0 = colors[j];
  387. }
  388. if (j !== positionsLength - 1) {
  389. color1 = colors[j];
  390. }
  391. }
  392. var startK = j === 0 ? 2 : 0;
  393. var endK = j === positionsLength - 1 ? 2 : 4;
  394. for (k = startK; k < endK; ++k) {
  395. Cartesian2.Cartesian3.pack(scratchPosition, finalPositions, positionIndex);
  396. Cartesian2.Cartesian3.pack(scratchPrevPosition, prevPositions, positionIndex);
  397. Cartesian2.Cartesian3.pack(scratchNextPosition, nextPositions, positionIndex);
  398. positionIndex += 3;
  399. var direction = k - 2 < 0 ? -1.0 : 1.0;
  400. expandAndWidth[expandAndWidthIndex++] = 2 * (k % 2) - 1; // expand direction
  401. expandAndWidth[expandAndWidthIndex++] = direction * width;
  402. if (vertexFormat.st) {
  403. st[stIndex++] = j / (positionsLength - 1);
  404. st[stIndex++] = Math.max(expandAndWidth[expandAndWidthIndex - 2], 0.0);
  405. }
  406. if (when.defined(finalColors)) {
  407. var color = k < 2 ? color0 : color1;
  408. finalColors[colorIndex++] = Color.Color.floatToByte(color.red);
  409. finalColors[colorIndex++] = Color.Color.floatToByte(color.green);
  410. finalColors[colorIndex++] = Color.Color.floatToByte(color.blue);
  411. finalColors[colorIndex++] = Color.Color.floatToByte(color.alpha);
  412. }
  413. }
  414. }
  415. var attributes = new GeometryAttributes.GeometryAttributes();
  416. attributes.position = new GeometryAttribute.GeometryAttribute({
  417. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  418. componentsPerAttribute: 3,
  419. values: finalPositions,
  420. });
  421. attributes.prevPosition = new GeometryAttribute.GeometryAttribute({
  422. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  423. componentsPerAttribute: 3,
  424. values: prevPositions,
  425. });
  426. attributes.nextPosition = new GeometryAttribute.GeometryAttribute({
  427. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  428. componentsPerAttribute: 3,
  429. values: nextPositions,
  430. });
  431. attributes.expandAndWidth = new GeometryAttribute.GeometryAttribute({
  432. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  433. componentsPerAttribute: 2,
  434. values: expandAndWidth,
  435. });
  436. if (vertexFormat.st) {
  437. attributes.st = new GeometryAttribute.GeometryAttribute({
  438. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  439. componentsPerAttribute: 2,
  440. values: st,
  441. });
  442. }
  443. if (when.defined(finalColors)) {
  444. attributes.color = new GeometryAttribute.GeometryAttribute({
  445. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  446. componentsPerAttribute: 4,
  447. values: finalColors,
  448. normalize: true,
  449. });
  450. }
  451. var indices = IndexDatatype.IndexDatatype.createTypedArray(size, positionsLength * 6 - 6);
  452. var index = 0;
  453. var indicesIndex = 0;
  454. var length = positionsLength - 1.0;
  455. for (j = 0; j < length; ++j) {
  456. indices[indicesIndex++] = index;
  457. indices[indicesIndex++] = index + 2;
  458. indices[indicesIndex++] = index + 1;
  459. indices[indicesIndex++] = index + 1;
  460. indices[indicesIndex++] = index + 2;
  461. indices[indicesIndex++] = index + 3;
  462. index += 4;
  463. }
  464. return new GeometryAttribute.Geometry({
  465. attributes: attributes,
  466. indices: indices,
  467. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  468. boundingSphere: Transforms.BoundingSphere.fromPoints(positions),
  469. geometryType: GeometryAttribute.GeometryType.POLYLINES,
  470. });
  471. };
  472. function createPolylineGeometry(polylineGeometry, offset) {
  473. if (when.defined(offset)) {
  474. polylineGeometry = PolylineGeometry.unpack(polylineGeometry, offset);
  475. }
  476. polylineGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(polylineGeometry._ellipsoid);
  477. return PolylineGeometry.createGeometry(polylineGeometry);
  478. }
  479. return createPolylineGeometry;
  480. });
  481. //# sourceMappingURL=createPolylineGeometry.js.map