createPolylineVolumeOutlineGeometry.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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', './arrayRemoveDuplicates-0263f42c', './BoundingRectangle-dede91e8', './EllipsoidTangentPlane-ce6e380f', './EllipsoidRhumbLine-5f1492e5', './PolygonPipeline-9f9b7763', './PolylineVolumeGeometryLibrary-d573ce10', './EllipsoidGeodesic-0f41968b', './PolylinePipeline-25d1e129'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, IntersectionTests, Plane, arrayRemoveDuplicates, BoundingRectangle, EllipsoidTangentPlane, EllipsoidRhumbLine, PolygonPipeline, PolylineVolumeGeometryLibrary, EllipsoidGeodesic, PolylinePipeline) { 'use strict';
  24. function computeAttributes(positions, shape) {
  25. var attributes = new GeometryAttributes.GeometryAttributes();
  26. attributes.position = new GeometryAttribute.GeometryAttribute({
  27. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  28. componentsPerAttribute: 3,
  29. values: positions,
  30. });
  31. var shapeLength = shape.length;
  32. var vertexCount = attributes.position.values.length / 3;
  33. var positionLength = positions.length / 3;
  34. var shapeCount = positionLength / shapeLength;
  35. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  36. vertexCount,
  37. 2 * shapeLength * (shapeCount + 1)
  38. );
  39. var i, j;
  40. var index = 0;
  41. i = 0;
  42. var offset = i * shapeLength;
  43. for (j = 0; j < shapeLength - 1; j++) {
  44. indices[index++] = j + offset;
  45. indices[index++] = j + offset + 1;
  46. }
  47. indices[index++] = shapeLength - 1 + offset;
  48. indices[index++] = offset;
  49. i = shapeCount - 1;
  50. offset = i * shapeLength;
  51. for (j = 0; j < shapeLength - 1; j++) {
  52. indices[index++] = j + offset;
  53. indices[index++] = j + offset + 1;
  54. }
  55. indices[index++] = shapeLength - 1 + offset;
  56. indices[index++] = offset;
  57. for (i = 0; i < shapeCount - 1; i++) {
  58. var firstOffset = shapeLength * i;
  59. var secondOffset = firstOffset + shapeLength;
  60. for (j = 0; j < shapeLength; j++) {
  61. indices[index++] = j + firstOffset;
  62. indices[index++] = j + secondOffset;
  63. }
  64. }
  65. var geometry = new GeometryAttribute.Geometry({
  66. attributes: attributes,
  67. indices: IndexDatatype.IndexDatatype.createTypedArray(vertexCount, indices),
  68. boundingSphere: Transforms.BoundingSphere.fromVertices(positions),
  69. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  70. });
  71. return geometry;
  72. }
  73. /**
  74. * A description of a polyline with a volume (a 2D shape extruded along a polyline).
  75. *
  76. * @alias PolylineVolumeOutlineGeometry
  77. * @constructor
  78. *
  79. * @param {Object} options Object with the following properties:
  80. * @param {Cartesian3[]} options.polylinePositions An array of positions that define the center of the polyline volume.
  81. * @param {Cartesian2[]} options.shapePositions An array of positions that define the shape to be extruded along the polyline
  82. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
  83. * @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.
  84. * @param {CornerType} [options.cornerType=CornerType.ROUNDED] Determines the style of the corners.
  85. *
  86. * @see PolylineVolumeOutlineGeometry#createGeometry
  87. *
  88. * @example
  89. * function computeCircle(radius) {
  90. * var positions = [];
  91. * for (var i = 0; i < 360; i++) {
  92. * var radians = Cesium.Math.toRadians(i);
  93. * positions.push(new Cesium.Cartesian2(radius * Math.cos(radians), radius * Math.sin(radians)));
  94. * }
  95. * return positions;
  96. * }
  97. *
  98. * var volumeOutline = new Cesium.PolylineVolumeOutlineGeometry({
  99. * polylinePositions : Cesium.Cartesian3.fromDegreesArray([
  100. * -72.0, 40.0,
  101. * -70.0, 35.0
  102. * ]),
  103. * shapePositions : computeCircle(100000.0)
  104. * });
  105. */
  106. function PolylineVolumeOutlineGeometry(options) {
  107. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  108. var positions = options.polylinePositions;
  109. var shape = options.shapePositions;
  110. //>>includeStart('debug', pragmas.debug);
  111. if (!when.defined(positions)) {
  112. throw new Check.DeveloperError("options.polylinePositions is required.");
  113. }
  114. if (!when.defined(shape)) {
  115. throw new Check.DeveloperError("options.shapePositions is required.");
  116. }
  117. //>>includeEnd('debug');
  118. this._positions = positions;
  119. this._shape = shape;
  120. this._ellipsoid = Cartesian2.Ellipsoid.clone(
  121. when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84)
  122. );
  123. this._cornerType = when.defaultValue(options.cornerType, PolylineVolumeGeometryLibrary.CornerType.ROUNDED);
  124. this._granularity = when.defaultValue(
  125. options.granularity,
  126. _Math.CesiumMath.RADIANS_PER_DEGREE
  127. );
  128. this._workerName = "createPolylineVolumeOutlineGeometry";
  129. var numComponents = 1 + positions.length * Cartesian2.Cartesian3.packedLength;
  130. numComponents += 1 + shape.length * Cartesian2.Cartesian2.packedLength;
  131. /**
  132. * The number of elements used to pack the object into an array.
  133. * @type {Number}
  134. */
  135. this.packedLength = numComponents + Cartesian2.Ellipsoid.packedLength + 2;
  136. }
  137. /**
  138. * Stores the provided instance into the provided array.
  139. *
  140. * @param {PolylineVolumeOutlineGeometry} value The value to pack.
  141. * @param {Number[]} array The array to pack into.
  142. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  143. *
  144. * @returns {Number[]} The array that was packed into
  145. */
  146. PolylineVolumeOutlineGeometry.pack = function (value, array, startingIndex) {
  147. //>>includeStart('debug', pragmas.debug);
  148. if (!when.defined(value)) {
  149. throw new Check.DeveloperError("value is required");
  150. }
  151. if (!when.defined(array)) {
  152. throw new Check.DeveloperError("array is required");
  153. }
  154. //>>includeEnd('debug');
  155. startingIndex = when.defaultValue(startingIndex, 0);
  156. var i;
  157. var positions = value._positions;
  158. var length = positions.length;
  159. array[startingIndex++] = length;
  160. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  161. Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
  162. }
  163. var shape = value._shape;
  164. length = shape.length;
  165. array[startingIndex++] = length;
  166. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
  167. Cartesian2.Cartesian2.pack(shape[i], array, startingIndex);
  168. }
  169. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  170. startingIndex += Cartesian2.Ellipsoid.packedLength;
  171. array[startingIndex++] = value._cornerType;
  172. array[startingIndex] = value._granularity;
  173. return array;
  174. };
  175. var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE);
  176. var scratchOptions = {
  177. polylinePositions: undefined,
  178. shapePositions: undefined,
  179. ellipsoid: scratchEllipsoid,
  180. height: undefined,
  181. cornerType: undefined,
  182. granularity: undefined,
  183. };
  184. /**
  185. * Retrieves an instance from a packed array.
  186. *
  187. * @param {Number[]} array The packed array.
  188. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  189. * @param {PolylineVolumeOutlineGeometry} [result] The object into which to store the result.
  190. * @returns {PolylineVolumeOutlineGeometry} The modified result parameter or a new PolylineVolumeOutlineGeometry instance if one was not provided.
  191. */
  192. PolylineVolumeOutlineGeometry.unpack = function (array, startingIndex, result) {
  193. //>>includeStart('debug', pragmas.debug);
  194. if (!when.defined(array)) {
  195. throw new Check.DeveloperError("array is required");
  196. }
  197. //>>includeEnd('debug');
  198. startingIndex = when.defaultValue(startingIndex, 0);
  199. var i;
  200. var length = array[startingIndex++];
  201. var positions = new Array(length);
  202. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
  203. positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
  204. }
  205. length = array[startingIndex++];
  206. var shape = new Array(length);
  207. for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
  208. shape[i] = Cartesian2.Cartesian2.unpack(array, startingIndex);
  209. }
  210. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
  211. startingIndex += Cartesian2.Ellipsoid.packedLength;
  212. var cornerType = array[startingIndex++];
  213. var granularity = array[startingIndex];
  214. if (!when.defined(result)) {
  215. scratchOptions.polylinePositions = positions;
  216. scratchOptions.shapePositions = shape;
  217. scratchOptions.cornerType = cornerType;
  218. scratchOptions.granularity = granularity;
  219. return new PolylineVolumeOutlineGeometry(scratchOptions);
  220. }
  221. result._positions = positions;
  222. result._shape = shape;
  223. result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
  224. result._cornerType = cornerType;
  225. result._granularity = granularity;
  226. return result;
  227. };
  228. var brScratch = new BoundingRectangle.BoundingRectangle();
  229. /**
  230. * Computes the geometric representation of the outline of a polyline with a volume, including its vertices, indices, and a bounding sphere.
  231. *
  232. * @param {PolylineVolumeOutlineGeometry} polylineVolumeOutlineGeometry A description of the polyline volume outline.
  233. * @returns {Geometry|undefined} The computed vertices and indices.
  234. */
  235. PolylineVolumeOutlineGeometry.createGeometry = function (
  236. polylineVolumeOutlineGeometry
  237. ) {
  238. var positions = polylineVolumeOutlineGeometry._positions;
  239. var cleanPositions = arrayRemoveDuplicates.arrayRemoveDuplicates(
  240. positions,
  241. Cartesian2.Cartesian3.equalsEpsilon
  242. );
  243. var shape2D = polylineVolumeOutlineGeometry._shape;
  244. shape2D = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.removeDuplicatesFromShape(shape2D);
  245. if (cleanPositions.length < 2 || shape2D.length < 3) {
  246. return undefined;
  247. }
  248. if (
  249. PolygonPipeline.PolygonPipeline.computeWindingOrder2D(shape2D) === PolygonPipeline.WindingOrder.CLOCKWISE
  250. ) {
  251. shape2D.reverse();
  252. }
  253. var boundingRectangle = BoundingRectangle.BoundingRectangle.fromPoints(shape2D, brScratch);
  254. var computedPositions = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.computePositions(
  255. cleanPositions,
  256. shape2D,
  257. boundingRectangle,
  258. polylineVolumeOutlineGeometry,
  259. false
  260. );
  261. return computeAttributes(computedPositions, shape2D);
  262. };
  263. function createPolylineVolumeOutlineGeometry(
  264. polylineVolumeOutlineGeometry,
  265. offset
  266. ) {
  267. if (when.defined(offset)) {
  268. polylineVolumeOutlineGeometry = PolylineVolumeOutlineGeometry.unpack(
  269. polylineVolumeOutlineGeometry,
  270. offset
  271. );
  272. }
  273. polylineVolumeOutlineGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(
  274. polylineVolumeOutlineGeometry._ellipsoid
  275. );
  276. return PolylineVolumeOutlineGeometry.createGeometry(
  277. polylineVolumeOutlineGeometry
  278. );
  279. }
  280. return createPolylineVolumeOutlineGeometry;
  281. });
  282. //# sourceMappingURL=createPolylineVolumeOutlineGeometry.js.map