EllipseOutlineGeometry-77d8a0bf.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  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', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './IndexDatatype-25023891', './GeometryOffsetAttribute-d746452d', './EllipseGeometryLibrary-12b8d523'], function (exports, when, Check, _Math, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, GeometryOffsetAttribute, EllipseGeometryLibrary) { 'use strict';
  24. var scratchCartesian1 = new Cartesian2.Cartesian3();
  25. var boundingSphereCenter = new Cartesian2.Cartesian3();
  26. function computeEllipse(options) {
  27. var center = options.center;
  28. boundingSphereCenter = Cartesian2.Cartesian3.multiplyByScalar(
  29. options.ellipsoid.geodeticSurfaceNormal(center, boundingSphereCenter),
  30. options.height,
  31. boundingSphereCenter
  32. );
  33. boundingSphereCenter = Cartesian2.Cartesian3.add(
  34. center,
  35. boundingSphereCenter,
  36. boundingSphereCenter
  37. );
  38. var boundingSphere = new Transforms.BoundingSphere(
  39. boundingSphereCenter,
  40. options.semiMajorAxis
  41. );
  42. var positions = EllipseGeometryLibrary.EllipseGeometryLibrary.computeEllipsePositions(
  43. options,
  44. false,
  45. true
  46. ).outerPositions;
  47. var attributes = new GeometryAttributes.GeometryAttributes({
  48. position: new GeometryAttribute.GeometryAttribute({
  49. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  50. componentsPerAttribute: 3,
  51. values: EllipseGeometryLibrary.EllipseGeometryLibrary.raisePositionsToHeight(
  52. positions,
  53. options,
  54. false
  55. ),
  56. }),
  57. });
  58. var length = positions.length / 3;
  59. var indices = IndexDatatype.IndexDatatype.createTypedArray(length, length * 2);
  60. var index = 0;
  61. for (var i = 0; i < length; ++i) {
  62. indices[index++] = i;
  63. indices[index++] = (i + 1) % length;
  64. }
  65. return {
  66. boundingSphere: boundingSphere,
  67. attributes: attributes,
  68. indices: indices,
  69. };
  70. }
  71. var topBoundingSphere = new Transforms.BoundingSphere();
  72. var bottomBoundingSphere = new Transforms.BoundingSphere();
  73. function computeExtrudedEllipse(options) {
  74. var center = options.center;
  75. var ellipsoid = options.ellipsoid;
  76. var semiMajorAxis = options.semiMajorAxis;
  77. var scaledNormal = Cartesian2.Cartesian3.multiplyByScalar(
  78. ellipsoid.geodeticSurfaceNormal(center, scratchCartesian1),
  79. options.height,
  80. scratchCartesian1
  81. );
  82. topBoundingSphere.center = Cartesian2.Cartesian3.add(
  83. center,
  84. scaledNormal,
  85. topBoundingSphere.center
  86. );
  87. topBoundingSphere.radius = semiMajorAxis;
  88. scaledNormal = Cartesian2.Cartesian3.multiplyByScalar(
  89. ellipsoid.geodeticSurfaceNormal(center, scaledNormal),
  90. options.extrudedHeight,
  91. scaledNormal
  92. );
  93. bottomBoundingSphere.center = Cartesian2.Cartesian3.add(
  94. center,
  95. scaledNormal,
  96. bottomBoundingSphere.center
  97. );
  98. bottomBoundingSphere.radius = semiMajorAxis;
  99. var positions = EllipseGeometryLibrary.EllipseGeometryLibrary.computeEllipsePositions(
  100. options,
  101. false,
  102. true
  103. ).outerPositions;
  104. var attributes = new GeometryAttributes.GeometryAttributes({
  105. position: new GeometryAttribute.GeometryAttribute({
  106. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  107. componentsPerAttribute: 3,
  108. values: EllipseGeometryLibrary.EllipseGeometryLibrary.raisePositionsToHeight(
  109. positions,
  110. options,
  111. true
  112. ),
  113. }),
  114. });
  115. positions = attributes.position.values;
  116. var boundingSphere = Transforms.BoundingSphere.union(
  117. topBoundingSphere,
  118. bottomBoundingSphere
  119. );
  120. var length = positions.length / 3;
  121. if (when.defined(options.offsetAttribute)) {
  122. var applyOffset = new Uint8Array(length);
  123. if (options.offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.TOP) {
  124. applyOffset = GeometryOffsetAttribute.arrayFill(applyOffset, 1, 0, length / 2);
  125. } else {
  126. var offsetValue =
  127. options.offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE ? 0 : 1;
  128. applyOffset = GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  129. }
  130. attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  131. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  132. componentsPerAttribute: 1,
  133. values: applyOffset,
  134. });
  135. }
  136. var numberOfVerticalLines = when.defaultValue(options.numberOfVerticalLines, 16);
  137. numberOfVerticalLines = _Math.CesiumMath.clamp(
  138. numberOfVerticalLines,
  139. 0,
  140. length / 2
  141. );
  142. var indices = IndexDatatype.IndexDatatype.createTypedArray(
  143. length,
  144. length * 2 + numberOfVerticalLines * 2
  145. );
  146. length /= 2;
  147. var index = 0;
  148. var i;
  149. for (i = 0; i < length; ++i) {
  150. indices[index++] = i;
  151. indices[index++] = (i + 1) % length;
  152. indices[index++] = i + length;
  153. indices[index++] = ((i + 1) % length) + length;
  154. }
  155. var numSide;
  156. if (numberOfVerticalLines > 0) {
  157. var numSideLines = Math.min(numberOfVerticalLines, length);
  158. numSide = Math.round(length / numSideLines);
  159. var maxI = Math.min(numSide * numberOfVerticalLines, length);
  160. for (i = 0; i < maxI; i += numSide) {
  161. indices[index++] = i;
  162. indices[index++] = i + length;
  163. }
  164. }
  165. return {
  166. boundingSphere: boundingSphere,
  167. attributes: attributes,
  168. indices: indices,
  169. };
  170. }
  171. /**
  172. * A description of the outline of an ellipse on an ellipsoid.
  173. *
  174. * @alias EllipseOutlineGeometry
  175. * @constructor
  176. *
  177. * @param {Object} options Object with the following properties:
  178. * @param {Cartesian3} options.center The ellipse's center point in the fixed frame.
  179. * @param {Number} options.semiMajorAxis The length of the ellipse's semi-major axis in meters.
  180. * @param {Number} options.semiMinorAxis The length of the ellipse's semi-minor axis in meters.
  181. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid the ellipse will be on.
  182. * @param {Number} [options.height=0.0] The distance in meters between the ellipse and the ellipsoid surface.
  183. * @param {Number} [options.extrudedHeight] The distance in meters between the ellipse's extruded face and the ellipsoid surface.
  184. * @param {Number} [options.rotation=0.0] The angle from north (counter-clockwise) in radians.
  185. * @param {Number} [options.granularity=0.02] The angular distance between points on the ellipse in radians.
  186. * @param {Number} [options.numberOfVerticalLines=16] Number of lines to draw between the top and bottom surface of an extruded ellipse.
  187. *
  188. * @exception {DeveloperError} semiMajorAxis and semiMinorAxis must be greater than zero.
  189. * @exception {DeveloperError} semiMajorAxis must be greater than or equal to the semiMinorAxis.
  190. * @exception {DeveloperError} granularity must be greater than zero.
  191. *
  192. * @see EllipseOutlineGeometry.createGeometry
  193. *
  194. * @example
  195. * var ellipse = new Cesium.EllipseOutlineGeometry({
  196. * center : Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883),
  197. * semiMajorAxis : 500000.0,
  198. * semiMinorAxis : 300000.0,
  199. * rotation : Cesium.Math.toRadians(60.0)
  200. * });
  201. * var geometry = Cesium.EllipseOutlineGeometry.createGeometry(ellipse);
  202. */
  203. function EllipseOutlineGeometry(options) {
  204. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  205. var center = options.center;
  206. var ellipsoid = when.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84);
  207. var semiMajorAxis = options.semiMajorAxis;
  208. var semiMinorAxis = options.semiMinorAxis;
  209. var granularity = when.defaultValue(
  210. options.granularity,
  211. _Math.CesiumMath.RADIANS_PER_DEGREE
  212. );
  213. //>>includeStart('debug', pragmas.debug);
  214. if (!when.defined(center)) {
  215. throw new Check.DeveloperError("center is required.");
  216. }
  217. if (!when.defined(semiMajorAxis)) {
  218. throw new Check.DeveloperError("semiMajorAxis is required.");
  219. }
  220. if (!when.defined(semiMinorAxis)) {
  221. throw new Check.DeveloperError("semiMinorAxis is required.");
  222. }
  223. if (semiMajorAxis < semiMinorAxis) {
  224. throw new Check.DeveloperError(
  225. "semiMajorAxis must be greater than or equal to the semiMinorAxis."
  226. );
  227. }
  228. if (granularity <= 0.0) {
  229. throw new Check.DeveloperError("granularity must be greater than zero.");
  230. }
  231. //>>includeEnd('debug');
  232. var height = when.defaultValue(options.height, 0.0);
  233. var extrudedHeight = when.defaultValue(options.extrudedHeight, height);
  234. this._center = Cartesian2.Cartesian3.clone(center);
  235. this._semiMajorAxis = semiMajorAxis;
  236. this._semiMinorAxis = semiMinorAxis;
  237. this._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid);
  238. this._rotation = when.defaultValue(options.rotation, 0.0);
  239. this._height = Math.max(extrudedHeight, height);
  240. this._granularity = granularity;
  241. this._extrudedHeight = Math.min(extrudedHeight, height);
  242. this._numberOfVerticalLines = Math.max(
  243. when.defaultValue(options.numberOfVerticalLines, 16),
  244. 0
  245. );
  246. this._offsetAttribute = options.offsetAttribute;
  247. this._workerName = "createEllipseOutlineGeometry";
  248. }
  249. /**
  250. * The number of elements used to pack the object into an array.
  251. * @type {Number}
  252. */
  253. EllipseOutlineGeometry.packedLength =
  254. Cartesian2.Cartesian3.packedLength + Cartesian2.Ellipsoid.packedLength + 8;
  255. /**
  256. * Stores the provided instance into the provided array.
  257. *
  258. * @param {EllipseOutlineGeometry} value The value to pack.
  259. * @param {Number[]} array The array to pack into.
  260. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  261. *
  262. * @returns {Number[]} The array that was packed into
  263. */
  264. EllipseOutlineGeometry.pack = function (value, array, startingIndex) {
  265. //>>includeStart('debug', pragmas.debug);
  266. if (!when.defined(value)) {
  267. throw new Check.DeveloperError("value is required");
  268. }
  269. if (!when.defined(array)) {
  270. throw new Check.DeveloperError("array is required");
  271. }
  272. //>>includeEnd('debug');
  273. startingIndex = when.defaultValue(startingIndex, 0);
  274. Cartesian2.Cartesian3.pack(value._center, array, startingIndex);
  275. startingIndex += Cartesian2.Cartesian3.packedLength;
  276. Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
  277. startingIndex += Cartesian2.Ellipsoid.packedLength;
  278. array[startingIndex++] = value._semiMajorAxis;
  279. array[startingIndex++] = value._semiMinorAxis;
  280. array[startingIndex++] = value._rotation;
  281. array[startingIndex++] = value._height;
  282. array[startingIndex++] = value._granularity;
  283. array[startingIndex++] = value._extrudedHeight;
  284. array[startingIndex++] = value._numberOfVerticalLines;
  285. array[startingIndex] = when.defaultValue(value._offsetAttribute, -1);
  286. return array;
  287. };
  288. var scratchCenter = new Cartesian2.Cartesian3();
  289. var scratchEllipsoid = new Cartesian2.Ellipsoid();
  290. var scratchOptions = {
  291. center: scratchCenter,
  292. ellipsoid: scratchEllipsoid,
  293. semiMajorAxis: undefined,
  294. semiMinorAxis: undefined,
  295. rotation: undefined,
  296. height: undefined,
  297. granularity: undefined,
  298. extrudedHeight: undefined,
  299. numberOfVerticalLines: undefined,
  300. offsetAttribute: undefined,
  301. };
  302. /**
  303. * Retrieves an instance from a packed array.
  304. *
  305. * @param {Number[]} array The packed array.
  306. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  307. * @param {EllipseOutlineGeometry} [result] The object into which to store the result.
  308. * @returns {EllipseOutlineGeometry} The modified result parameter or a new EllipseOutlineGeometry instance if one was not provided.
  309. */
  310. EllipseOutlineGeometry.unpack = function (array, startingIndex, result) {
  311. //>>includeStart('debug', pragmas.debug);
  312. if (!when.defined(array)) {
  313. throw new Check.DeveloperError("array is required");
  314. }
  315. //>>includeEnd('debug');
  316. startingIndex = when.defaultValue(startingIndex, 0);
  317. var center = Cartesian2.Cartesian3.unpack(array, startingIndex, scratchCenter);
  318. startingIndex += Cartesian2.Cartesian3.packedLength;
  319. var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
  320. startingIndex += Cartesian2.Ellipsoid.packedLength;
  321. var semiMajorAxis = array[startingIndex++];
  322. var semiMinorAxis = array[startingIndex++];
  323. var rotation = array[startingIndex++];
  324. var height = array[startingIndex++];
  325. var granularity = array[startingIndex++];
  326. var extrudedHeight = array[startingIndex++];
  327. var numberOfVerticalLines = array[startingIndex++];
  328. var offsetAttribute = array[startingIndex];
  329. if (!when.defined(result)) {
  330. scratchOptions.height = height;
  331. scratchOptions.extrudedHeight = extrudedHeight;
  332. scratchOptions.granularity = granularity;
  333. scratchOptions.rotation = rotation;
  334. scratchOptions.semiMajorAxis = semiMajorAxis;
  335. scratchOptions.semiMinorAxis = semiMinorAxis;
  336. scratchOptions.numberOfVerticalLines = numberOfVerticalLines;
  337. scratchOptions.offsetAttribute =
  338. offsetAttribute === -1 ? undefined : offsetAttribute;
  339. return new EllipseOutlineGeometry(scratchOptions);
  340. }
  341. result._center = Cartesian2.Cartesian3.clone(center, result._center);
  342. result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
  343. result._semiMajorAxis = semiMajorAxis;
  344. result._semiMinorAxis = semiMinorAxis;
  345. result._rotation = rotation;
  346. result._height = height;
  347. result._granularity = granularity;
  348. result._extrudedHeight = extrudedHeight;
  349. result._numberOfVerticalLines = numberOfVerticalLines;
  350. result._offsetAttribute =
  351. offsetAttribute === -1 ? undefined : offsetAttribute;
  352. return result;
  353. };
  354. /**
  355. * Computes the geometric representation of an outline of an ellipse on an ellipsoid, including its vertices, indices, and a bounding sphere.
  356. *
  357. * @param {EllipseOutlineGeometry} ellipseGeometry A description of the ellipse.
  358. * @returns {Geometry|undefined} The computed vertices and indices.
  359. */
  360. EllipseOutlineGeometry.createGeometry = function (ellipseGeometry) {
  361. if (
  362. ellipseGeometry._semiMajorAxis <= 0.0 ||
  363. ellipseGeometry._semiMinorAxis <= 0.0
  364. ) {
  365. return;
  366. }
  367. var height = ellipseGeometry._height;
  368. var extrudedHeight = ellipseGeometry._extrudedHeight;
  369. var extrude = !_Math.CesiumMath.equalsEpsilon(
  370. height,
  371. extrudedHeight,
  372. 0,
  373. _Math.CesiumMath.EPSILON2
  374. );
  375. ellipseGeometry._center = ellipseGeometry._ellipsoid.scaleToGeodeticSurface(
  376. ellipseGeometry._center,
  377. ellipseGeometry._center
  378. );
  379. var options = {
  380. center: ellipseGeometry._center,
  381. semiMajorAxis: ellipseGeometry._semiMajorAxis,
  382. semiMinorAxis: ellipseGeometry._semiMinorAxis,
  383. ellipsoid: ellipseGeometry._ellipsoid,
  384. rotation: ellipseGeometry._rotation,
  385. height: height,
  386. granularity: ellipseGeometry._granularity,
  387. numberOfVerticalLines: ellipseGeometry._numberOfVerticalLines,
  388. };
  389. var geometry;
  390. if (extrude) {
  391. options.extrudedHeight = extrudedHeight;
  392. options.offsetAttribute = ellipseGeometry._offsetAttribute;
  393. geometry = computeExtrudedEllipse(options);
  394. } else {
  395. geometry = computeEllipse(options);
  396. if (when.defined(ellipseGeometry._offsetAttribute)) {
  397. var length = geometry.attributes.position.values.length;
  398. var applyOffset = new Uint8Array(length / 3);
  399. var offsetValue =
  400. ellipseGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  401. ? 0
  402. : 1;
  403. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  404. geometry.attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  405. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  406. componentsPerAttribute: 1,
  407. values: applyOffset,
  408. });
  409. }
  410. }
  411. return new GeometryAttribute.Geometry({
  412. attributes: geometry.attributes,
  413. indices: geometry.indices,
  414. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  415. boundingSphere: geometry.boundingSphere,
  416. offsetAttribute: ellipseGeometry._offsetAttribute,
  417. });
  418. };
  419. exports.EllipseOutlineGeometry = EllipseOutlineGeometry;
  420. });
  421. //# sourceMappingURL=EllipseOutlineGeometry-77d8a0bf.js.map