createPolygonOutlineGeometry.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  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', './AttributeCompression-75249b5e', './GeometryPipeline-466ad516', './EncodedCartesian3-6c97231d', './IndexDatatype-25023891', './IntersectionTests-afc38163', './Plane-fa30fc46', './GeometryOffsetAttribute-d746452d', './GeometryInstance-8c9b4df5', './arrayRemoveDuplicates-0263f42c', './EllipsoidTangentPlane-ce6e380f', './ArcType-dc1c5aee', './EllipsoidRhumbLine-5f1492e5', './PolygonPipeline-9f9b7763', './PolygonGeometryLibrary-98a03962'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, AttributeCompression, GeometryPipeline, EncodedCartesian3, IndexDatatype, IntersectionTests, Plane, GeometryOffsetAttribute, GeometryInstance, arrayRemoveDuplicates, EllipsoidTangentPlane, ArcType, EllipsoidRhumbLine, PolygonPipeline, PolygonGeometryLibrary) { 'use strict';
  24. var createGeometryFromPositionsPositions = [];
  25. var createGeometryFromPositionsSubdivided = [];
  26. function createGeometryFromPositions(
  27. ellipsoid,
  28. positions,
  29. minDistance,
  30. perPositionHeight,
  31. arcType
  32. ) {
  33. var tangentPlane = EllipsoidTangentPlane.EllipsoidTangentPlane.fromPoints(positions, ellipsoid);
  34. var positions2D = tangentPlane.projectPointsOntoPlane(
  35. positions,
  36. createGeometryFromPositionsPositions
  37. );
  38. var originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(positions2D);
  39. if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
  40. positions2D.reverse();
  41. positions = positions.slice().reverse();
  42. }
  43. var subdividedPositions;
  44. var i;
  45. var length = positions.length;
  46. var index = 0;
  47. if (!perPositionHeight) {
  48. var numVertices = 0;
  49. if (arcType === ArcType.ArcType.GEODESIC) {
  50. for (i = 0; i < length; i++) {
  51. numVertices += PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideLineCount(
  52. positions[i],
  53. positions[(i + 1) % length],
  54. minDistance
  55. );
  56. }
  57. } else if (arcType === ArcType.ArcType.RHUMB) {
  58. for (i = 0; i < length; i++) {
  59. numVertices += PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideRhumbLineCount(
  60. ellipsoid,
  61. positions[i],
  62. positions[(i + 1) % length],
  63. minDistance
  64. );
  65. }
  66. }
  67. subdividedPositions = new Float64Array(numVertices * 3);
  68. for (i = 0; i < length; i++) {
  69. var tempPositions;
  70. if (arcType === ArcType.ArcType.GEODESIC) {
  71. tempPositions = PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideLine(
  72. positions[i],
  73. positions[(i + 1) % length],
  74. minDistance,
  75. createGeometryFromPositionsSubdivided
  76. );
  77. } else if (arcType === ArcType.ArcType.RHUMB) {
  78. tempPositions = PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideRhumbLine(
  79. ellipsoid,
  80. positions[i],
  81. positions[(i + 1) % length],
  82. minDistance,
  83. createGeometryFromPositionsSubdivided
  84. );
  85. }
  86. var tempPositionsLength = tempPositions.length;
  87. for (var j = 0; j < tempPositionsLength; ++j) {
  88. subdividedPositions[index++] = tempPositions[j];
  89. }
  90. }
  91. } else {
  92. subdividedPositions = new Float64Array(length * 2 * 3);
  93. for (i = 0; i < length; i++) {
  94. var p0 = positions[i];
  95. var p1 = positions[(i + 1) % length];
  96. subdividedPositions[index++] = p0.x;
  97. subdividedPositions[index++] = p0.y;
  98. subdividedPositions[index++] = p0.z;
  99. subdividedPositions[index++] = p1.x;
  100. subdividedPositions[index++] = p1.y;
  101. subdividedPositions[index++] = p1.z;
  102. }
  103. }
  104. length = subdividedPositions.length / 3;
  105. var indicesSize = length * 2;
  106. var indices = IndexDatatype.IndexDatatype.createTypedArray(length, indicesSize);
  107. index = 0;
  108. for (i = 0; i < length - 1; i++) {
  109. indices[index++] = i;
  110. indices[index++] = i + 1;
  111. }
  112. indices[index++] = length - 1;
  113. indices[index++] = 0;
  114. return new GeometryInstance.GeometryInstance({
  115. geometry: new GeometryAttribute.Geometry({
  116. attributes: new GeometryAttributes.GeometryAttributes({
  117. position: new GeometryAttribute.GeometryAttribute({
  118. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  119. componentsPerAttribute: 3,
  120. values: subdividedPositions,
  121. }),
  122. }),
  123. indices: indices,
  124. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  125. }),
  126. });
  127. }
  128. function createGeometryFromPositionsExtruded(
  129. ellipsoid,
  130. positions,
  131. minDistance,
  132. perPositionHeight,
  133. arcType
  134. ) {
  135. var tangentPlane = EllipsoidTangentPlane.EllipsoidTangentPlane.fromPoints(positions, ellipsoid);
  136. var positions2D = tangentPlane.projectPointsOntoPlane(
  137. positions,
  138. createGeometryFromPositionsPositions
  139. );
  140. var originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(positions2D);
  141. if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
  142. positions2D.reverse();
  143. positions = positions.slice().reverse();
  144. }
  145. var subdividedPositions;
  146. var i;
  147. var length = positions.length;
  148. var corners = new Array(length);
  149. var index = 0;
  150. if (!perPositionHeight) {
  151. var numVertices = 0;
  152. if (arcType === ArcType.ArcType.GEODESIC) {
  153. for (i = 0; i < length; i++) {
  154. numVertices += PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideLineCount(
  155. positions[i],
  156. positions[(i + 1) % length],
  157. minDistance
  158. );
  159. }
  160. } else if (arcType === ArcType.ArcType.RHUMB) {
  161. for (i = 0; i < length; i++) {
  162. numVertices += PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideRhumbLineCount(
  163. ellipsoid,
  164. positions[i],
  165. positions[(i + 1) % length],
  166. minDistance
  167. );
  168. }
  169. }
  170. subdividedPositions = new Float64Array(numVertices * 3 * 2);
  171. for (i = 0; i < length; ++i) {
  172. corners[i] = index / 3;
  173. var tempPositions;
  174. if (arcType === ArcType.ArcType.GEODESIC) {
  175. tempPositions = PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideLine(
  176. positions[i],
  177. positions[(i + 1) % length],
  178. minDistance,
  179. createGeometryFromPositionsSubdivided
  180. );
  181. } else if (arcType === ArcType.ArcType.RHUMB) {
  182. tempPositions = PolygonGeometryLibrary.PolygonGeometryLibrary.subdivideRhumbLine(
  183. ellipsoid,
  184. positions[i],
  185. positions[(i + 1) % length],
  186. minDistance,
  187. createGeometryFromPositionsSubdivided
  188. );
  189. }
  190. var tempPositionsLength = tempPositions.length;
  191. for (var j = 0; j < tempPositionsLength; ++j) {
  192. subdividedPositions[index++] = tempPositions[j];
  193. }
  194. }
  195. } else {
  196. subdividedPositions = new Float64Array(length * 2 * 3 * 2);
  197. for (i = 0; i < length; ++i) {
  198. corners[i] = index / 3;
  199. var p0 = positions[i];
  200. var p1 = positions[(i + 1) % length];
  201. subdividedPositions[index++] = p0.x;
  202. subdividedPositions[index++] = p0.y;
  203. subdividedPositions[index++] = p0.z;
  204. subdividedPositions[index++] = p1.x;
  205. subdividedPositions[index++] = p1.y;
  206. subdividedPositions[index++] = p1.z;
  207. }
  208. }
  209. length = subdividedPositions.length / (3 * 2);
  210. var cornersLength = corners.length;
  211. var indicesSize = (length * 2 + cornersLength) * 2;
  212. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  213. length + cornersLength,
  214. indicesSize
  215. );
  216. index = 0;
  217. for (i = 0; i < length; ++i) {
  218. indices[index++] = i;
  219. indices[index++] = (i + 1) % length;
  220. indices[index++] = i + length;
  221. indices[index++] = ((i + 1) % length) + length;
  222. }
  223. for (i = 0; i < cornersLength; i++) {
  224. var corner = corners[i];
  225. indices[index++] = corner;
  226. indices[index++] = corner + length;
  227. }
  228. return new GeometryInstance.GeometryInstance({
  229. geometry: new GeometryAttribute.Geometry({
  230. attributes: new GeometryAttributes.GeometryAttributes({
  231. position: new GeometryAttribute.GeometryAttribute({
  232. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  233. componentsPerAttribute: 3,
  234. values: subdividedPositions,
  235. }),
  236. }),
  237. indices: indices,
  238. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  239. }),
  240. });
  241. }
  242. /**
  243. * A description of the outline of a polygon on the ellipsoid. The polygon is defined by a polygon hierarchy.
  244. *
  245. * @alias PolygonOutlineGeometry
  246. * @constructor
  247. *
  248. * @param {Object} options Object with the following properties:
  249. * @param {PolygonHierarchy} options.polygonHierarchy A polygon hierarchy that can include holes.
  250. * @param {Number} [options.height=0.0] The distance in meters between the polygon and the ellipsoid surface.
  251. * @param {Number} [options.extrudedHeight] The distance in meters between the polygon's extruded face and the ellipsoid surface.
  252. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  253. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  254. * @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.
  255. * @param {Boolean} [options.perPositionHeight=false] Use the height of options.positions for each position instead of using options.height to determine the height.
  256. * @param {ArcType} [options.arcType=ArcType.GEODESIC] The type of path the outline must follow. Valid options are {@link ArcType.GEODESIC} and {@link ArcType.RHUMB}.
  257. *
  258. * @see PolygonOutlineGeometry#createGeometry
  259. * @see PolygonOutlineGeometry#fromPositions
  260. *
  261. * @example
  262. * // 1. create a polygon outline from points
  263. * var polygon = new Cesium.PolygonOutlineGeometry({
  264. * polygonHierarchy : new Cesium.PolygonHierarchy(
  265. * Cesium.Cartesian3.fromDegreesArray([
  266. * -72.0, 40.0,
  267. * -70.0, 35.0,
  268. * -75.0, 30.0,
  269. * -70.0, 30.0,
  270. * -68.0, 40.0
  271. * ])
  272. * )
  273. * });
  274. * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(polygon);
  275. *
  276. * // 2. create a nested polygon with holes outline
  277. * var polygonWithHole = new Cesium.PolygonOutlineGeometry({
  278. * polygonHierarchy : new Cesium.PolygonHierarchy(
  279. * Cesium.Cartesian3.fromDegreesArray([
  280. * -109.0, 30.0,
  281. * -95.0, 30.0,
  282. * -95.0, 40.0,
  283. * -109.0, 40.0
  284. * ]),
  285. * [new Cesium.PolygonHierarchy(
  286. * Cesium.Cartesian3.fromDegreesArray([
  287. * -107.0, 31.0,
  288. * -107.0, 39.0,
  289. * -97.0, 39.0,
  290. * -97.0, 31.0
  291. * ]),
  292. * [new Cesium.PolygonHierarchy(
  293. * Cesium.Cartesian3.fromDegreesArray([
  294. * -105.0, 33.0,
  295. * -99.0, 33.0,
  296. * -99.0, 37.0,
  297. * -105.0, 37.0
  298. * ]),
  299. * [new Cesium.PolygonHierarchy(
  300. * Cesium.Cartesian3.fromDegreesArray([
  301. * -103.0, 34.0,
  302. * -101.0, 34.0,
  303. * -101.0, 36.0,
  304. * -103.0, 36.0
  305. * ])
  306. * )]
  307. * )]
  308. * )]
  309. * )
  310. * });
  311. * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(polygonWithHole);
  312. *
  313. * // 3. create extruded polygon outline
  314. * var extrudedPolygon = new Cesium.PolygonOutlineGeometry({
  315. * polygonHierarchy : new Cesium.PolygonHierarchy(
  316. * Cesium.Cartesian3.fromDegreesArray([
  317. * -72.0, 40.0,
  318. * -70.0, 35.0,
  319. * -75.0, 30.0,
  320. * -70.0, 30.0,
  321. * -68.0, 40.0
  322. * ])
  323. * ),
  324. * extrudedHeight: 300000
  325. * });
  326. * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(extrudedPolygon);
  327. */
  328. function PolygonOutlineGeometry(options) {
  329. //>>includeStart('debug', pragmas.debug);
  330. Check.Check.typeOf.object("options", options);
  331. Check.Check.typeOf.object("options.polygonHierarchy", options.polygonHierarchy);
  332. if (options.perPositionHeight && when.defined(options.height)) {
  333. throw new Check.DeveloperError(
  334. "Cannot use both options.perPositionHeight and options.height"
  335. );
  336. }
  337. if (
  338. when.defined(options.arcType) &&
  339. options.arcType !== ArcType.ArcType.GEODESIC &&
  340. options.arcType !== ArcType.ArcType.RHUMB
  341. ) {
  342. throw new Check.DeveloperError(
  343. "Invalid arcType. Valid options are ArcType.GEODESIC and ArcType.RHUMB."
  344. );
  345. }
  346. //>>includeEnd('debug');
  347. var polygonHierarchy = options.polygonHierarchy;
  348. var ellipsoid = when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84);
  349. var granularity = when.defaultValue(
  350. options.granularity,
  351. _Math.CesiumMath.RADIANS_PER_DEGREE
  352. );
  353. var perPositionHeight = when.defaultValue(options.perPositionHeight, false);
  354. var perPositionHeightExtrude =
  355. perPositionHeight && when.defined(options.extrudedHeight);
  356. var arcType = when.defaultValue(options.arcType, ArcType.ArcType.GEODESIC);
  357. var height = when.defaultValue(options.height, 0.0);
  358. var extrudedHeight = when.defaultValue(options.extrudedHeight, height);
  359. if (!perPositionHeightExtrude) {
  360. var h = Math.max(height, extrudedHeight);
  361. extrudedHeight = Math.min(height, extrudedHeight);
  362. height = h;
  363. }
  364. this._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid);
  365. this._granularity = granularity;
  366. this._height = height;
  367. this._extrudedHeight = extrudedHeight;
  368. this._arcType = arcType;
  369. this._polygonHierarchy = polygonHierarchy;
  370. this._perPositionHeight = perPositionHeight;
  371. this._perPositionHeightExtrude = perPositionHeightExtrude;
  372. this._offsetAttribute = options.offsetAttribute;
  373. this._workerName = "createPolygonOutlineGeometry";
  374. /**
  375. * The number of elements used to pack the object into an array.
  376. * @type {Number}
  377. */
  378. this.packedLength =
  379. PolygonGeometryLibrary.PolygonGeometryLibrary.computeHierarchyPackedLength(polygonHierarchy) +
  380. Cartesian2.Ellipsoid.packedLength +
  381. 8;
  382. }
  383. /**
  384. * Stores the provided instance into the provided array.
  385. *
  386. * @param {PolygonOutlineGeometry} value The value to pack.
  387. * @param {Number[]} array The array to pack into.
  388. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  389. *
  390. * @returns {Number[]} The array that was packed into
  391. */
  392. PolygonOutlineGeometry.pack = function (value, array, startingIndex) {
  393. //>>includeStart('debug', pragmas.debug);
  394. Check.Check.typeOf.object("value", value);
  395. Check.Check.defined("array", array);
  396. //>>includeEnd('debug');
  397. startingIndex = when.defaultValue(startingIndex, 0);
  398. startingIndex = PolygonGeometryLibrary.PolygonGeometryLibrary.packPolygonHierarchy(
  399. value._polygonHierarchy,
  400. array,
  401. startingIndex
  402. );
  403. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  404. startingIndex += Cartesian2.Ellipsoid.packedLength;
  405. array[startingIndex++] = value._height;
  406. array[startingIndex++] = value._extrudedHeight;
  407. array[startingIndex++] = value._granularity;
  408. array[startingIndex++] = value._perPositionHeightExtrude ? 1.0 : 0.0;
  409. array[startingIndex++] = value._perPositionHeight ? 1.0 : 0.0;
  410. array[startingIndex++] = value._arcType;
  411. array[startingIndex++] = when.defaultValue(value._offsetAttribute, -1);
  412. array[startingIndex] = value.packedLength;
  413. return array;
  414. };
  415. var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE);
  416. var dummyOptions = {
  417. polygonHierarchy: {},
  418. };
  419. /**
  420. * Retrieves an instance from a packed array.
  421. *
  422. * @param {Number[]} array The packed array.
  423. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  424. * @param {PolygonOutlineGeometry} [result] The object into which to store the result.
  425. * @returns {PolygonOutlineGeometry} The modified result parameter or a new PolygonOutlineGeometry instance if one was not provided.
  426. */
  427. PolygonOutlineGeometry.unpack = function (array, startingIndex, result) {
  428. //>>includeStart('debug', pragmas.debug);
  429. Check.Check.defined("array", array);
  430. //>>includeEnd('debug');
  431. startingIndex = when.defaultValue(startingIndex, 0);
  432. var polygonHierarchy = PolygonGeometryLibrary.PolygonGeometryLibrary.unpackPolygonHierarchy(
  433. array,
  434. startingIndex
  435. );
  436. startingIndex = polygonHierarchy.startingIndex;
  437. delete polygonHierarchy.startingIndex;
  438. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
  439. startingIndex += Cartesian2.Ellipsoid.packedLength;
  440. var height = array[startingIndex++];
  441. var extrudedHeight = array[startingIndex++];
  442. var granularity = array[startingIndex++];
  443. var perPositionHeightExtrude = array[startingIndex++] === 1.0;
  444. var perPositionHeight = array[startingIndex++] === 1.0;
  445. var arcType = array[startingIndex++];
  446. var offsetAttribute = array[startingIndex++];
  447. var packedLength = array[startingIndex];
  448. if (!when.defined(result)) {
  449. result = new PolygonOutlineGeometry(dummyOptions);
  450. }
  451. result._polygonHierarchy = polygonHierarchy;
  452. result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
  453. result._height = height;
  454. result._extrudedHeight = extrudedHeight;
  455. result._granularity = granularity;
  456. result._perPositionHeight = perPositionHeight;
  457. result._perPositionHeightExtrude = perPositionHeightExtrude;
  458. result._arcType = arcType;
  459. result._offsetAttribute =
  460. offsetAttribute === -1 ? undefined : offsetAttribute;
  461. result.packedLength = packedLength;
  462. return result;
  463. };
  464. /**
  465. * A description of a polygon outline from an array of positions.
  466. *
  467. * @param {Object} options Object with the following properties:
  468. * @param {Cartesian3[]} options.positions An array of positions that defined the corner points of the polygon.
  469. * @param {Number} [options.height=0.0] The height of the polygon.
  470. * @param {Number} [options.extrudedHeight] The height of the polygon extrusion.
  471. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  472. * @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.
  473. * @param {Boolean} [options.perPositionHeight=false] Use the height of options.positions for each position instead of using options.height to determine the height.
  474. * @param {ArcType} [options.arcType=ArcType.GEODESIC] The type of path the outline must follow. Valid options are {@link LinkType.GEODESIC} and {@link ArcType.RHUMB}.
  475. * @returns {PolygonOutlineGeometry}
  476. *
  477. *
  478. * @example
  479. * // create a polygon from points
  480. * var polygon = Cesium.PolygonOutlineGeometry.fromPositions({
  481. * positions : Cesium.Cartesian3.fromDegreesArray([
  482. * -72.0, 40.0,
  483. * -70.0, 35.0,
  484. * -75.0, 30.0,
  485. * -70.0, 30.0,
  486. * -68.0, 40.0
  487. * ])
  488. * });
  489. * var geometry = Cesium.PolygonOutlineGeometry.createGeometry(polygon);
  490. *
  491. * @see PolygonOutlineGeometry#createGeometry
  492. */
  493. PolygonOutlineGeometry.fromPositions = function (options) {
  494. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  495. //>>includeStart('debug', pragmas.debug);
  496. Check.Check.defined("options.positions", options.positions);
  497. //>>includeEnd('debug');
  498. var newOptions = {
  499. polygonHierarchy: {
  500. positions: options.positions,
  501. },
  502. height: options.height,
  503. extrudedHeight: options.extrudedHeight,
  504. ellipsoid: options.ellipsoid,
  505. granularity: options.granularity,
  506. perPositionHeight: options.perPositionHeight,
  507. arcType: options.arcType,
  508. offsetAttribute: options.offsetAttribute,
  509. };
  510. return new PolygonOutlineGeometry(newOptions);
  511. };
  512. /**
  513. * Computes the geometric representation of a polygon outline, including its vertices, indices, and a bounding sphere.
  514. *
  515. * @param {PolygonOutlineGeometry} polygonGeometry A description of the polygon outline.
  516. * @returns {Geometry|undefined} The computed vertices and indices.
  517. */
  518. PolygonOutlineGeometry.createGeometry = function (polygonGeometry) {
  519. var ellipsoid = polygonGeometry._ellipsoid;
  520. var granularity = polygonGeometry._granularity;
  521. var polygonHierarchy = polygonGeometry._polygonHierarchy;
  522. var perPositionHeight = polygonGeometry._perPositionHeight;
  523. var arcType = polygonGeometry._arcType;
  524. var polygons = PolygonGeometryLibrary.PolygonGeometryLibrary.polygonOutlinesFromHierarchy(
  525. polygonHierarchy,
  526. !perPositionHeight,
  527. ellipsoid
  528. );
  529. if (polygons.length === 0) {
  530. return undefined;
  531. }
  532. var geometryInstance;
  533. var geometries = [];
  534. var minDistance = _Math.CesiumMath.chordLength(
  535. granularity,
  536. ellipsoid.maximumRadius
  537. );
  538. var height = polygonGeometry._height;
  539. var extrudedHeight = polygonGeometry._extrudedHeight;
  540. var extrude =
  541. polygonGeometry._perPositionHeightExtrude ||
  542. !_Math.CesiumMath.equalsEpsilon(height, extrudedHeight, 0, _Math.CesiumMath.EPSILON2);
  543. var offsetValue;
  544. var i;
  545. if (extrude) {
  546. for (i = 0; i < polygons.length; i++) {
  547. geometryInstance = createGeometryFromPositionsExtruded(
  548. ellipsoid,
  549. polygons[i],
  550. minDistance,
  551. perPositionHeight,
  552. arcType
  553. );
  554. geometryInstance.geometry = PolygonGeometryLibrary.PolygonGeometryLibrary.scaleToGeodeticHeightExtruded(
  555. geometryInstance.geometry,
  556. height,
  557. extrudedHeight,
  558. ellipsoid,
  559. perPositionHeight
  560. );
  561. if (when.defined(polygonGeometry._offsetAttribute)) {
  562. var size =
  563. geometryInstance.geometry.attributes.position.values.length / 3;
  564. var offsetAttribute = new Uint8Array(size);
  565. if (polygonGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.TOP) {
  566. offsetAttribute = GeometryOffsetAttribute.arrayFill(offsetAttribute, 1, 0, size / 2);
  567. } else {
  568. offsetValue =
  569. polygonGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  570. ? 0
  571. : 1;
  572. offsetAttribute = GeometryOffsetAttribute.arrayFill(offsetAttribute, offsetValue);
  573. }
  574. geometryInstance.geometry.attributes.applyOffset = new GeometryAttribute.GeometryAttribute(
  575. {
  576. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  577. componentsPerAttribute: 1,
  578. values: offsetAttribute,
  579. }
  580. );
  581. }
  582. geometries.push(geometryInstance);
  583. }
  584. } else {
  585. for (i = 0; i < polygons.length; i++) {
  586. geometryInstance = createGeometryFromPositions(
  587. ellipsoid,
  588. polygons[i],
  589. minDistance,
  590. perPositionHeight,
  591. arcType
  592. );
  593. geometryInstance.geometry.attributes.position.values = PolygonPipeline.PolygonPipeline.scaleToGeodeticHeight(
  594. geometryInstance.geometry.attributes.position.values,
  595. height,
  596. ellipsoid,
  597. !perPositionHeight
  598. );
  599. if (when.defined(polygonGeometry._offsetAttribute)) {
  600. var length =
  601. geometryInstance.geometry.attributes.position.values.length;
  602. var applyOffset = new Uint8Array(length / 3);
  603. offsetValue =
  604. polygonGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  605. ? 0
  606. : 1;
  607. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  608. geometryInstance.geometry.attributes.applyOffset = new GeometryAttribute.GeometryAttribute(
  609. {
  610. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  611. componentsPerAttribute: 1,
  612. values: applyOffset,
  613. }
  614. );
  615. }
  616. geometries.push(geometryInstance);
  617. }
  618. }
  619. var geometry = GeometryPipeline.GeometryPipeline.combineInstances(geometries)[0];
  620. var boundingSphere = Transforms.BoundingSphere.fromVertices(
  621. geometry.attributes.position.values
  622. );
  623. return new GeometryAttribute.Geometry({
  624. attributes: geometry.attributes,
  625. indices: geometry.indices,
  626. primitiveType: geometry.primitiveType,
  627. boundingSphere: boundingSphere,
  628. offsetAttribute: polygonGeometry._offsetAttribute,
  629. });
  630. };
  631. function createPolygonOutlineGeometry(polygonGeometry, offset) {
  632. if (when.defined(offset)) {
  633. polygonGeometry = PolygonOutlineGeometry.unpack(polygonGeometry, offset);
  634. }
  635. polygonGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(polygonGeometry._ellipsoid);
  636. return PolygonOutlineGeometry.createGeometry(polygonGeometry);
  637. }
  638. return createPolygonOutlineGeometry;
  639. });
  640. //# sourceMappingURL=createPolygonOutlineGeometry.js.map