EllipsoidGeometry-bbf1c319.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  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', './VertexFormat-4d8b817a'], function (exports, when, Check, _Math, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, GeometryOffsetAttribute, VertexFormat) { 'use strict';
  24. var scratchPosition = new Cartesian2.Cartesian3();
  25. var scratchNormal = new Cartesian2.Cartesian3();
  26. var scratchTangent = new Cartesian2.Cartesian3();
  27. var scratchBitangent = new Cartesian2.Cartesian3();
  28. var scratchNormalST = new Cartesian2.Cartesian3();
  29. var defaultRadii = new Cartesian2.Cartesian3(1.0, 1.0, 1.0);
  30. var cos = Math.cos;
  31. var sin = Math.sin;
  32. /**
  33. * A description of an ellipsoid centered at the origin.
  34. *
  35. * @alias EllipsoidGeometry
  36. * @constructor
  37. *
  38. * @param {Object} [options] Object with the following properties:
  39. * @param {Cartesian3} [options.radii=Cartesian3(1.0, 1.0, 1.0)] The radii of the ellipsoid in the x, y, and z directions.
  40. * @param {Cartesian3} [options.innerRadii=options.radii] The inner radii of the ellipsoid in the x, y, and z directions.
  41. * @param {Number} [options.minimumClock=0.0] The minimum angle lying in the xy-plane measured from the positive x-axis and toward the positive y-axis.
  42. * @param {Number} [options.maximumClock=2*PI] The maximum angle lying in the xy-plane measured from the positive x-axis and toward the positive y-axis.
  43. * @param {Number} [options.minimumCone=0.0] The minimum angle measured from the positive z-axis and toward the negative z-axis.
  44. * @param {Number} [options.maximumCone=PI] The maximum angle measured from the positive z-axis and toward the negative z-axis.
  45. * @param {Number} [options.stackPartitions=64] The number of times to partition the ellipsoid into stacks.
  46. * @param {Number} [options.slicePartitions=64] The number of times to partition the ellipsoid into radial slices.
  47. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  48. *
  49. * @exception {DeveloperError} options.slicePartitions cannot be less than three.
  50. * @exception {DeveloperError} options.stackPartitions cannot be less than three.
  51. *
  52. * @see EllipsoidGeometry#createGeometry
  53. *
  54. * @example
  55. * var ellipsoid = new Cesium.EllipsoidGeometry({
  56. * vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  57. * radii : new Cesium.Cartesian3(1000000.0, 500000.0, 500000.0)
  58. * });
  59. * var geometry = Cesium.EllipsoidGeometry.createGeometry(ellipsoid);
  60. */
  61. function EllipsoidGeometry(options) {
  62. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  63. var radii = when.defaultValue(options.radii, defaultRadii);
  64. var innerRadii = when.defaultValue(options.innerRadii, radii);
  65. var minimumClock = when.defaultValue(options.minimumClock, 0.0);
  66. var maximumClock = when.defaultValue(options.maximumClock, _Math.CesiumMath.TWO_PI);
  67. var minimumCone = when.defaultValue(options.minimumCone, 0.0);
  68. var maximumCone = when.defaultValue(options.maximumCone, _Math.CesiumMath.PI);
  69. var stackPartitions = Math.round(when.defaultValue(options.stackPartitions, 64));
  70. var slicePartitions = Math.round(when.defaultValue(options.slicePartitions, 64));
  71. var vertexFormat = when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT);
  72. //>>includeStart('debug', pragmas.debug);
  73. if (slicePartitions < 3) {
  74. throw new Check.DeveloperError(
  75. "options.slicePartitions cannot be less than three."
  76. );
  77. }
  78. if (stackPartitions < 3) {
  79. throw new Check.DeveloperError(
  80. "options.stackPartitions cannot be less than three."
  81. );
  82. }
  83. //>>includeEnd('debug');
  84. this._radii = Cartesian2.Cartesian3.clone(radii);
  85. this._innerRadii = Cartesian2.Cartesian3.clone(innerRadii);
  86. this._minimumClock = minimumClock;
  87. this._maximumClock = maximumClock;
  88. this._minimumCone = minimumCone;
  89. this._maximumCone = maximumCone;
  90. this._stackPartitions = stackPartitions;
  91. this._slicePartitions = slicePartitions;
  92. this._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat);
  93. this._offsetAttribute = options.offsetAttribute;
  94. this._workerName = "createEllipsoidGeometry";
  95. }
  96. /**
  97. * The number of elements used to pack the object into an array.
  98. * @type {Number}
  99. */
  100. EllipsoidGeometry.packedLength =
  101. 2 * Cartesian2.Cartesian3.packedLength + VertexFormat.VertexFormat.packedLength + 7;
  102. /**
  103. * Stores the provided instance into the provided array.
  104. *
  105. * @param {EllipsoidGeometry} value The value to pack.
  106. * @param {Number[]} array The array to pack into.
  107. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  108. *
  109. * @returns {Number[]} The array that was packed into
  110. */
  111. EllipsoidGeometry.pack = function (value, array, startingIndex) {
  112. //>>includeStart('debug', pragmas.debug);
  113. if (!when.defined(value)) {
  114. throw new Check.DeveloperError("value is required");
  115. }
  116. if (!when.defined(array)) {
  117. throw new Check.DeveloperError("array is required");
  118. }
  119. //>>includeEnd('debug');
  120. startingIndex = when.defaultValue(startingIndex, 0);
  121. Cartesian2.Cartesian3.pack(value._radii, array, startingIndex);
  122. startingIndex += Cartesian2.Cartesian3.packedLength;
  123. Cartesian2.Cartesian3.pack(value._innerRadii, array, startingIndex);
  124. startingIndex += Cartesian2.Cartesian3.packedLength;
  125. VertexFormat.VertexFormat.pack(value._vertexFormat, array, startingIndex);
  126. startingIndex += VertexFormat.VertexFormat.packedLength;
  127. array[startingIndex++] = value._minimumClock;
  128. array[startingIndex++] = value._maximumClock;
  129. array[startingIndex++] = value._minimumCone;
  130. array[startingIndex++] = value._maximumCone;
  131. array[startingIndex++] = value._stackPartitions;
  132. array[startingIndex++] = value._slicePartitions;
  133. array[startingIndex] = when.defaultValue(value._offsetAttribute, -1);
  134. return array;
  135. };
  136. var scratchRadii = new Cartesian2.Cartesian3();
  137. var scratchInnerRadii = new Cartesian2.Cartesian3();
  138. var scratchVertexFormat = new VertexFormat.VertexFormat();
  139. var scratchOptions = {
  140. radii: scratchRadii,
  141. innerRadii: scratchInnerRadii,
  142. vertexFormat: scratchVertexFormat,
  143. minimumClock: undefined,
  144. maximumClock: undefined,
  145. minimumCone: undefined,
  146. maximumCone: undefined,
  147. stackPartitions: undefined,
  148. slicePartitions: undefined,
  149. offsetAttribute: undefined,
  150. };
  151. /**
  152. * Retrieves an instance from a packed array.
  153. *
  154. * @param {Number[]} array The packed array.
  155. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  156. * @param {EllipsoidGeometry} [result] The object into which to store the result.
  157. * @returns {EllipsoidGeometry} The modified result parameter or a new EllipsoidGeometry instance if one was not provided.
  158. */
  159. EllipsoidGeometry.unpack = function (array, startingIndex, result) {
  160. //>>includeStart('debug', pragmas.debug);
  161. if (!when.defined(array)) {
  162. throw new Check.DeveloperError("array is required");
  163. }
  164. //>>includeEnd('debug');
  165. startingIndex = when.defaultValue(startingIndex, 0);
  166. var radii = Cartesian2.Cartesian3.unpack(array, startingIndex, scratchRadii);
  167. startingIndex += Cartesian2.Cartesian3.packedLength;
  168. var innerRadii = Cartesian2.Cartesian3.unpack(array, startingIndex, scratchInnerRadii);
  169. startingIndex += Cartesian2.Cartesian3.packedLength;
  170. var vertexFormat = VertexFormat.VertexFormat.unpack(
  171. array,
  172. startingIndex,
  173. scratchVertexFormat
  174. );
  175. startingIndex += VertexFormat.VertexFormat.packedLength;
  176. var minimumClock = array[startingIndex++];
  177. var maximumClock = array[startingIndex++];
  178. var minimumCone = array[startingIndex++];
  179. var maximumCone = array[startingIndex++];
  180. var stackPartitions = array[startingIndex++];
  181. var slicePartitions = array[startingIndex++];
  182. var offsetAttribute = array[startingIndex];
  183. if (!when.defined(result)) {
  184. scratchOptions.minimumClock = minimumClock;
  185. scratchOptions.maximumClock = maximumClock;
  186. scratchOptions.minimumCone = minimumCone;
  187. scratchOptions.maximumCone = maximumCone;
  188. scratchOptions.stackPartitions = stackPartitions;
  189. scratchOptions.slicePartitions = slicePartitions;
  190. scratchOptions.offsetAttribute =
  191. offsetAttribute === -1 ? undefined : offsetAttribute;
  192. return new EllipsoidGeometry(scratchOptions);
  193. }
  194. result._radii = Cartesian2.Cartesian3.clone(radii, result._radii);
  195. result._innerRadii = Cartesian2.Cartesian3.clone(innerRadii, result._innerRadii);
  196. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  197. result._minimumClock = minimumClock;
  198. result._maximumClock = maximumClock;
  199. result._minimumCone = minimumCone;
  200. result._maximumCone = maximumCone;
  201. result._stackPartitions = stackPartitions;
  202. result._slicePartitions = slicePartitions;
  203. result._offsetAttribute =
  204. offsetAttribute === -1 ? undefined : offsetAttribute;
  205. return result;
  206. };
  207. /**
  208. * Computes the geometric representation of an ellipsoid, including its vertices, indices, and a bounding sphere.
  209. *
  210. * @param {EllipsoidGeometry} ellipsoidGeometry A description of the ellipsoid.
  211. * @returns {Geometry|undefined} The computed vertices and indices.
  212. */
  213. EllipsoidGeometry.createGeometry = function (ellipsoidGeometry) {
  214. var radii = ellipsoidGeometry._radii;
  215. if (radii.x <= 0 || radii.y <= 0 || radii.z <= 0) {
  216. return;
  217. }
  218. var innerRadii = ellipsoidGeometry._innerRadii;
  219. if (innerRadii.x <= 0 || innerRadii.y <= 0 || innerRadii.z <= 0) {
  220. return;
  221. }
  222. var minimumClock = ellipsoidGeometry._minimumClock;
  223. var maximumClock = ellipsoidGeometry._maximumClock;
  224. var minimumCone = ellipsoidGeometry._minimumCone;
  225. var maximumCone = ellipsoidGeometry._maximumCone;
  226. var vertexFormat = ellipsoidGeometry._vertexFormat;
  227. // Add an extra slice and stack so that the number of partitions is the
  228. // number of surfaces rather than the number of joints
  229. var slicePartitions = ellipsoidGeometry._slicePartitions + 1;
  230. var stackPartitions = ellipsoidGeometry._stackPartitions + 1;
  231. slicePartitions = Math.round(
  232. (slicePartitions * Math.abs(maximumClock - minimumClock)) /
  233. _Math.CesiumMath.TWO_PI
  234. );
  235. stackPartitions = Math.round(
  236. (stackPartitions * Math.abs(maximumCone - minimumCone)) / _Math.CesiumMath.PI
  237. );
  238. if (slicePartitions < 2) {
  239. slicePartitions = 2;
  240. }
  241. if (stackPartitions < 2) {
  242. stackPartitions = 2;
  243. }
  244. var i;
  245. var j;
  246. var index = 0;
  247. // Create arrays for theta and phi. Duplicate first and last angle to
  248. // allow different normals at the intersections.
  249. var phis = [minimumCone];
  250. var thetas = [minimumClock];
  251. for (i = 0; i < stackPartitions; i++) {
  252. phis.push(
  253. minimumCone + (i * (maximumCone - minimumCone)) / (stackPartitions - 1)
  254. );
  255. }
  256. phis.push(maximumCone);
  257. for (j = 0; j < slicePartitions; j++) {
  258. thetas.push(
  259. minimumClock + (j * (maximumClock - minimumClock)) / (slicePartitions - 1)
  260. );
  261. }
  262. thetas.push(maximumClock);
  263. var numPhis = phis.length;
  264. var numThetas = thetas.length;
  265. // Allow for extra indices if there is an inner surface and if we need
  266. // to close the sides if the clock range is not a full circle
  267. var extraIndices = 0;
  268. var vertexMultiplier = 1.0;
  269. var hasInnerSurface =
  270. innerRadii.x !== radii.x ||
  271. innerRadii.y !== radii.y ||
  272. innerRadii.z !== radii.z;
  273. var isTopOpen = false;
  274. var isBotOpen = false;
  275. var isClockOpen = false;
  276. if (hasInnerSurface) {
  277. vertexMultiplier = 2.0;
  278. if (minimumCone > 0.0) {
  279. isTopOpen = true;
  280. extraIndices += slicePartitions - 1;
  281. }
  282. if (maximumCone < Math.PI) {
  283. isBotOpen = true;
  284. extraIndices += slicePartitions - 1;
  285. }
  286. if ((maximumClock - minimumClock) % _Math.CesiumMath.TWO_PI) {
  287. isClockOpen = true;
  288. extraIndices += (stackPartitions - 1) * 2 + 1;
  289. } else {
  290. extraIndices += 1;
  291. }
  292. }
  293. var vertexCount = numThetas * numPhis * vertexMultiplier;
  294. var positions = new Float64Array(vertexCount * 3);
  295. var isInner = GeometryOffsetAttribute.arrayFill(new Array(vertexCount), false);
  296. var negateNormal = GeometryOffsetAttribute.arrayFill(new Array(vertexCount), false);
  297. // Multiply by 6 because there are two triangles per sector
  298. var indexCount = slicePartitions * stackPartitions * vertexMultiplier;
  299. var numIndices =
  300. 6 *
  301. (indexCount +
  302. extraIndices +
  303. 1 -
  304. (slicePartitions + stackPartitions) * vertexMultiplier);
  305. var indices = IndexDatatype.IndexDatatype.createTypedArray(indexCount, numIndices);
  306. var normals = vertexFormat.normal
  307. ? new Float32Array(vertexCount * 3)
  308. : undefined;
  309. var tangents = vertexFormat.tangent
  310. ? new Float32Array(vertexCount * 3)
  311. : undefined;
  312. var bitangents = vertexFormat.bitangent
  313. ? new Float32Array(vertexCount * 3)
  314. : undefined;
  315. var st = vertexFormat.st ? new Float32Array(vertexCount * 2) : undefined;
  316. // Calculate sin/cos phi
  317. var sinPhi = new Array(numPhis);
  318. var cosPhi = new Array(numPhis);
  319. for (i = 0; i < numPhis; i++) {
  320. sinPhi[i] = sin(phis[i]);
  321. cosPhi[i] = cos(phis[i]);
  322. }
  323. // Calculate sin/cos theta
  324. var sinTheta = new Array(numThetas);
  325. var cosTheta = new Array(numThetas);
  326. for (j = 0; j < numThetas; j++) {
  327. cosTheta[j] = cos(thetas[j]);
  328. sinTheta[j] = sin(thetas[j]);
  329. }
  330. // Create outer surface
  331. for (i = 0; i < numPhis; i++) {
  332. for (j = 0; j < numThetas; j++) {
  333. positions[index++] = radii.x * sinPhi[i] * cosTheta[j];
  334. positions[index++] = radii.y * sinPhi[i] * sinTheta[j];
  335. positions[index++] = radii.z * cosPhi[i];
  336. }
  337. }
  338. // Create inner surface
  339. var vertexIndex = vertexCount / 2.0;
  340. if (hasInnerSurface) {
  341. for (i = 0; i < numPhis; i++) {
  342. for (j = 0; j < numThetas; j++) {
  343. positions[index++] = innerRadii.x * sinPhi[i] * cosTheta[j];
  344. positions[index++] = innerRadii.y * sinPhi[i] * sinTheta[j];
  345. positions[index++] = innerRadii.z * cosPhi[i];
  346. // Keep track of which vertices are the inner and which ones
  347. // need the normal to be negated
  348. isInner[vertexIndex] = true;
  349. if (i > 0 && i !== numPhis - 1 && j !== 0 && j !== numThetas - 1) {
  350. negateNormal[vertexIndex] = true;
  351. }
  352. vertexIndex++;
  353. }
  354. }
  355. }
  356. // Create indices for outer surface
  357. index = 0;
  358. var topOffset;
  359. var bottomOffset;
  360. for (i = 1; i < numPhis - 2; i++) {
  361. topOffset = i * numThetas;
  362. bottomOffset = (i + 1) * numThetas;
  363. for (j = 1; j < numThetas - 2; j++) {
  364. indices[index++] = bottomOffset + j;
  365. indices[index++] = bottomOffset + j + 1;
  366. indices[index++] = topOffset + j + 1;
  367. indices[index++] = bottomOffset + j;
  368. indices[index++] = topOffset + j + 1;
  369. indices[index++] = topOffset + j;
  370. }
  371. }
  372. // Create indices for inner surface
  373. if (hasInnerSurface) {
  374. var offset = numPhis * numThetas;
  375. for (i = 1; i < numPhis - 2; i++) {
  376. topOffset = offset + i * numThetas;
  377. bottomOffset = offset + (i + 1) * numThetas;
  378. for (j = 1; j < numThetas - 2; j++) {
  379. indices[index++] = bottomOffset + j;
  380. indices[index++] = topOffset + j;
  381. indices[index++] = topOffset + j + 1;
  382. indices[index++] = bottomOffset + j;
  383. indices[index++] = topOffset + j + 1;
  384. indices[index++] = bottomOffset + j + 1;
  385. }
  386. }
  387. }
  388. var outerOffset;
  389. var innerOffset;
  390. if (hasInnerSurface) {
  391. if (isTopOpen) {
  392. // Connect the top of the inner surface to the top of the outer surface
  393. innerOffset = numPhis * numThetas;
  394. for (i = 1; i < numThetas - 2; i++) {
  395. indices[index++] = i;
  396. indices[index++] = i + 1;
  397. indices[index++] = innerOffset + i + 1;
  398. indices[index++] = i;
  399. indices[index++] = innerOffset + i + 1;
  400. indices[index++] = innerOffset + i;
  401. }
  402. }
  403. if (isBotOpen) {
  404. // Connect the bottom of the inner surface to the bottom of the outer surface
  405. outerOffset = numPhis * numThetas - numThetas;
  406. innerOffset = numPhis * numThetas * vertexMultiplier - numThetas;
  407. for (i = 1; i < numThetas - 2; i++) {
  408. indices[index++] = outerOffset + i + 1;
  409. indices[index++] = outerOffset + i;
  410. indices[index++] = innerOffset + i;
  411. indices[index++] = outerOffset + i + 1;
  412. indices[index++] = innerOffset + i;
  413. indices[index++] = innerOffset + i + 1;
  414. }
  415. }
  416. }
  417. // Connect the edges if clock is not closed
  418. if (isClockOpen) {
  419. for (i = 1; i < numPhis - 2; i++) {
  420. innerOffset = numThetas * numPhis + numThetas * i;
  421. outerOffset = numThetas * i;
  422. indices[index++] = innerOffset;
  423. indices[index++] = outerOffset + numThetas;
  424. indices[index++] = outerOffset;
  425. indices[index++] = innerOffset;
  426. indices[index++] = innerOffset + numThetas;
  427. indices[index++] = outerOffset + numThetas;
  428. }
  429. for (i = 1; i < numPhis - 2; i++) {
  430. innerOffset = numThetas * numPhis + numThetas * (i + 1) - 1;
  431. outerOffset = numThetas * (i + 1) - 1;
  432. indices[index++] = outerOffset + numThetas;
  433. indices[index++] = innerOffset;
  434. indices[index++] = outerOffset;
  435. indices[index++] = outerOffset + numThetas;
  436. indices[index++] = innerOffset + numThetas;
  437. indices[index++] = innerOffset;
  438. }
  439. }
  440. var attributes = new GeometryAttributes.GeometryAttributes();
  441. if (vertexFormat.position) {
  442. attributes.position = new GeometryAttribute.GeometryAttribute({
  443. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  444. componentsPerAttribute: 3,
  445. values: positions,
  446. });
  447. }
  448. var stIndex = 0;
  449. var normalIndex = 0;
  450. var tangentIndex = 0;
  451. var bitangentIndex = 0;
  452. var vertexCountHalf = vertexCount / 2.0;
  453. var ellipsoid;
  454. var ellipsoidOuter = Cartesian2.Ellipsoid.fromCartesian3(radii);
  455. var ellipsoidInner = Cartesian2.Ellipsoid.fromCartesian3(innerRadii);
  456. if (
  457. vertexFormat.st ||
  458. vertexFormat.normal ||
  459. vertexFormat.tangent ||
  460. vertexFormat.bitangent
  461. ) {
  462. for (i = 0; i < vertexCount; i++) {
  463. ellipsoid = isInner[i] ? ellipsoidInner : ellipsoidOuter;
  464. var position = Cartesian2.Cartesian3.fromArray(positions, i * 3, scratchPosition);
  465. var normal = ellipsoid.geodeticSurfaceNormal(position, scratchNormal);
  466. if (negateNormal[i]) {
  467. Cartesian2.Cartesian3.negate(normal, normal);
  468. }
  469. if (vertexFormat.st) {
  470. var normalST = Cartesian2.Cartesian2.negate(normal, scratchNormalST);
  471. st[stIndex++] =
  472. Math.atan2(normalST.y, normalST.x) / _Math.CesiumMath.TWO_PI + 0.5;
  473. st[stIndex++] = Math.asin(normal.z) / Math.PI + 0.5;
  474. }
  475. if (vertexFormat.normal) {
  476. normals[normalIndex++] = normal.x;
  477. normals[normalIndex++] = normal.y;
  478. normals[normalIndex++] = normal.z;
  479. }
  480. if (vertexFormat.tangent || vertexFormat.bitangent) {
  481. var tangent = scratchTangent;
  482. // Use UNIT_X for the poles
  483. var tangetOffset = 0;
  484. var unit;
  485. if (isInner[i]) {
  486. tangetOffset = vertexCountHalf;
  487. }
  488. if (
  489. !isTopOpen &&
  490. i >= tangetOffset &&
  491. i < tangetOffset + numThetas * 2
  492. ) {
  493. unit = Cartesian2.Cartesian3.UNIT_X;
  494. } else {
  495. unit = Cartesian2.Cartesian3.UNIT_Z;
  496. }
  497. Cartesian2.Cartesian3.cross(unit, normal, tangent);
  498. Cartesian2.Cartesian3.normalize(tangent, tangent);
  499. if (vertexFormat.tangent) {
  500. tangents[tangentIndex++] = tangent.x;
  501. tangents[tangentIndex++] = tangent.y;
  502. tangents[tangentIndex++] = tangent.z;
  503. }
  504. if (vertexFormat.bitangent) {
  505. var bitangent = Cartesian2.Cartesian3.cross(normal, tangent, scratchBitangent);
  506. Cartesian2.Cartesian3.normalize(bitangent, bitangent);
  507. bitangents[bitangentIndex++] = bitangent.x;
  508. bitangents[bitangentIndex++] = bitangent.y;
  509. bitangents[bitangentIndex++] = bitangent.z;
  510. }
  511. }
  512. }
  513. if (vertexFormat.st) {
  514. attributes.st = new GeometryAttribute.GeometryAttribute({
  515. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  516. componentsPerAttribute: 2,
  517. values: st,
  518. });
  519. }
  520. if (vertexFormat.normal) {
  521. attributes.normal = new GeometryAttribute.GeometryAttribute({
  522. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  523. componentsPerAttribute: 3,
  524. values: normals,
  525. });
  526. }
  527. if (vertexFormat.tangent) {
  528. attributes.tangent = new GeometryAttribute.GeometryAttribute({
  529. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  530. componentsPerAttribute: 3,
  531. values: tangents,
  532. });
  533. }
  534. if (vertexFormat.bitangent) {
  535. attributes.bitangent = new GeometryAttribute.GeometryAttribute({
  536. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  537. componentsPerAttribute: 3,
  538. values: bitangents,
  539. });
  540. }
  541. }
  542. if (when.defined(ellipsoidGeometry._offsetAttribute)) {
  543. var length = positions.length;
  544. var applyOffset = new Uint8Array(length / 3);
  545. var offsetValue =
  546. ellipsoidGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  547. ? 0
  548. : 1;
  549. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  550. attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  551. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  552. componentsPerAttribute: 1,
  553. values: applyOffset,
  554. });
  555. }
  556. return new GeometryAttribute.Geometry({
  557. attributes: attributes,
  558. indices: indices,
  559. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  560. boundingSphere: Transforms.BoundingSphere.fromEllipsoid(ellipsoidOuter),
  561. offsetAttribute: ellipsoidGeometry._offsetAttribute,
  562. });
  563. };
  564. var unitEllipsoidGeometry;
  565. /**
  566. * Returns the geometric representation of a unit ellipsoid, including its vertices, indices, and a bounding sphere.
  567. * @returns {Geometry} The computed vertices and indices.
  568. *
  569. * @private
  570. */
  571. EllipsoidGeometry.getUnitEllipsoid = function () {
  572. if (!when.defined(unitEllipsoidGeometry)) {
  573. unitEllipsoidGeometry = EllipsoidGeometry.createGeometry(
  574. new EllipsoidGeometry({
  575. radii: new Cartesian2.Cartesian3(1.0, 1.0, 1.0),
  576. vertexFormat: VertexFormat.VertexFormat.POSITION_ONLY,
  577. })
  578. );
  579. }
  580. return unitEllipsoidGeometry;
  581. };
  582. exports.EllipsoidGeometry = EllipsoidGeometry;
  583. });
  584. //# sourceMappingURL=EllipsoidGeometry-bbf1c319.js.map