CylinderGeometry-14abab0d.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  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', './CylinderGeometryLibrary-8580810e'], function (exports, when, Check, _Math, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, GeometryOffsetAttribute, VertexFormat, CylinderGeometryLibrary) { 'use strict';
  24. var radiusScratch = new Cartesian2.Cartesian2();
  25. var normalScratch = new Cartesian2.Cartesian3();
  26. var bitangentScratch = new Cartesian2.Cartesian3();
  27. var tangentScratch = new Cartesian2.Cartesian3();
  28. var positionScratch = new Cartesian2.Cartesian3();
  29. /**
  30. * A description of a cylinder.
  31. *
  32. * @alias CylinderGeometry
  33. * @constructor
  34. *
  35. * @param {Object} options Object with the following properties:
  36. * @param {Number} options.length The length of the cylinder.
  37. * @param {Number} options.topRadius The radius of the top of the cylinder.
  38. * @param {Number} options.bottomRadius The radius of the bottom of the cylinder.
  39. * @param {Number} [options.slices=128] The number of edges around the perimeter of the cylinder.
  40. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  41. *
  42. * @exception {DeveloperError} options.slices must be greater than or equal to 3.
  43. *
  44. * @see CylinderGeometry.createGeometry
  45. *
  46. * @example
  47. * // create cylinder geometry
  48. * var cylinder = new Cesium.CylinderGeometry({
  49. * length: 200000,
  50. * topRadius: 80000,
  51. * bottomRadius: 200000,
  52. * });
  53. * var geometry = Cesium.CylinderGeometry.createGeometry(cylinder);
  54. */
  55. function CylinderGeometry(options) {
  56. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  57. var length = options.length;
  58. var topRadius = options.topRadius;
  59. var bottomRadius = options.bottomRadius;
  60. var vertexFormat = when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT);
  61. var slices = when.defaultValue(options.slices, 128);
  62. //>>includeStart('debug', pragmas.debug);
  63. if (!when.defined(length)) {
  64. throw new Check.DeveloperError("options.length must be defined.");
  65. }
  66. if (!when.defined(topRadius)) {
  67. throw new Check.DeveloperError("options.topRadius must be defined.");
  68. }
  69. if (!when.defined(bottomRadius)) {
  70. throw new Check.DeveloperError("options.bottomRadius must be defined.");
  71. }
  72. if (slices < 3) {
  73. throw new Check.DeveloperError(
  74. "options.slices must be greater than or equal to 3."
  75. );
  76. }
  77. if (
  78. when.defined(options.offsetAttribute) &&
  79. options.offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.TOP
  80. ) {
  81. throw new Check.DeveloperError(
  82. "GeometryOffsetAttribute.TOP is not a supported options.offsetAttribute for this geometry."
  83. );
  84. }
  85. //>>includeEnd('debug');
  86. this._length = length;
  87. this._topRadius = topRadius;
  88. this._bottomRadius = bottomRadius;
  89. this._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat);
  90. this._slices = slices;
  91. this._offsetAttribute = options.offsetAttribute;
  92. this._workerName = "createCylinderGeometry";
  93. }
  94. /**
  95. * The number of elements used to pack the object into an array.
  96. * @type {Number}
  97. */
  98. CylinderGeometry.packedLength = VertexFormat.VertexFormat.packedLength + 5;
  99. /**
  100. * Stores the provided instance into the provided array.
  101. *
  102. * @param {CylinderGeometry} value The value to pack.
  103. * @param {Number[]} array The array to pack into.
  104. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  105. *
  106. * @returns {Number[]} The array that was packed into
  107. */
  108. CylinderGeometry.pack = function (value, array, startingIndex) {
  109. //>>includeStart('debug', pragmas.debug);
  110. if (!when.defined(value)) {
  111. throw new Check.DeveloperError("value is required");
  112. }
  113. if (!when.defined(array)) {
  114. throw new Check.DeveloperError("array is required");
  115. }
  116. //>>includeEnd('debug');
  117. startingIndex = when.defaultValue(startingIndex, 0);
  118. VertexFormat.VertexFormat.pack(value._vertexFormat, array, startingIndex);
  119. startingIndex += VertexFormat.VertexFormat.packedLength;
  120. array[startingIndex++] = value._length;
  121. array[startingIndex++] = value._topRadius;
  122. array[startingIndex++] = value._bottomRadius;
  123. array[startingIndex++] = value._slices;
  124. array[startingIndex] = when.defaultValue(value._offsetAttribute, -1);
  125. return array;
  126. };
  127. var scratchVertexFormat = new VertexFormat.VertexFormat();
  128. var scratchOptions = {
  129. vertexFormat: scratchVertexFormat,
  130. length: undefined,
  131. topRadius: undefined,
  132. bottomRadius: undefined,
  133. slices: undefined,
  134. offsetAttribute: undefined,
  135. };
  136. /**
  137. * Retrieves an instance from a packed array.
  138. *
  139. * @param {Number[]} array The packed array.
  140. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  141. * @param {CylinderGeometry} [result] The object into which to store the result.
  142. * @returns {CylinderGeometry} The modified result parameter or a new CylinderGeometry instance if one was not provided.
  143. */
  144. CylinderGeometry.unpack = function (array, startingIndex, result) {
  145. //>>includeStart('debug', pragmas.debug);
  146. if (!when.defined(array)) {
  147. throw new Check.DeveloperError("array is required");
  148. }
  149. //>>includeEnd('debug');
  150. startingIndex = when.defaultValue(startingIndex, 0);
  151. var vertexFormat = VertexFormat.VertexFormat.unpack(
  152. array,
  153. startingIndex,
  154. scratchVertexFormat
  155. );
  156. startingIndex += VertexFormat.VertexFormat.packedLength;
  157. var length = array[startingIndex++];
  158. var topRadius = array[startingIndex++];
  159. var bottomRadius = array[startingIndex++];
  160. var slices = array[startingIndex++];
  161. var offsetAttribute = array[startingIndex];
  162. if (!when.defined(result)) {
  163. scratchOptions.length = length;
  164. scratchOptions.topRadius = topRadius;
  165. scratchOptions.bottomRadius = bottomRadius;
  166. scratchOptions.slices = slices;
  167. scratchOptions.offsetAttribute =
  168. offsetAttribute === -1 ? undefined : offsetAttribute;
  169. return new CylinderGeometry(scratchOptions);
  170. }
  171. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  172. result._length = length;
  173. result._topRadius = topRadius;
  174. result._bottomRadius = bottomRadius;
  175. result._slices = slices;
  176. result._offsetAttribute =
  177. offsetAttribute === -1 ? undefined : offsetAttribute;
  178. return result;
  179. };
  180. /**
  181. * Computes the geometric representation of a cylinder, including its vertices, indices, and a bounding sphere.
  182. *
  183. * @param {CylinderGeometry} cylinderGeometry A description of the cylinder.
  184. * @returns {Geometry|undefined} The computed vertices and indices.
  185. */
  186. CylinderGeometry.createGeometry = function (cylinderGeometry) {
  187. var length = cylinderGeometry._length;
  188. var topRadius = cylinderGeometry._topRadius;
  189. var bottomRadius = cylinderGeometry._bottomRadius;
  190. var vertexFormat = cylinderGeometry._vertexFormat;
  191. var slices = cylinderGeometry._slices;
  192. if (
  193. length <= 0 ||
  194. topRadius < 0 ||
  195. bottomRadius < 0 ||
  196. (topRadius === 0 && bottomRadius === 0)
  197. ) {
  198. return;
  199. }
  200. var twoSlices = slices + slices;
  201. var threeSlices = slices + twoSlices;
  202. var numVertices = twoSlices + twoSlices;
  203. var positions = CylinderGeometryLibrary.CylinderGeometryLibrary.computePositions(
  204. length,
  205. topRadius,
  206. bottomRadius,
  207. slices,
  208. true
  209. );
  210. var st = vertexFormat.st ? new Float32Array(numVertices * 2) : undefined;
  211. var normals = vertexFormat.normal
  212. ? new Float32Array(numVertices * 3)
  213. : undefined;
  214. var tangents = vertexFormat.tangent
  215. ? new Float32Array(numVertices * 3)
  216. : undefined;
  217. var bitangents = vertexFormat.bitangent
  218. ? new Float32Array(numVertices * 3)
  219. : undefined;
  220. var i;
  221. var computeNormal =
  222. vertexFormat.normal || vertexFormat.tangent || vertexFormat.bitangent;
  223. if (computeNormal) {
  224. var computeTangent = vertexFormat.tangent || vertexFormat.bitangent;
  225. var normalIndex = 0;
  226. var tangentIndex = 0;
  227. var bitangentIndex = 0;
  228. var theta = Math.atan2(bottomRadius - topRadius, length);
  229. var normal = normalScratch;
  230. normal.z = Math.sin(theta);
  231. var normalScale = Math.cos(theta);
  232. var tangent = tangentScratch;
  233. var bitangent = bitangentScratch;
  234. for (i = 0; i < slices; i++) {
  235. var angle = (i / slices) * _Math.CesiumMath.TWO_PI;
  236. var x = normalScale * Math.cos(angle);
  237. var y = normalScale * Math.sin(angle);
  238. if (computeNormal) {
  239. normal.x = x;
  240. normal.y = y;
  241. if (computeTangent) {
  242. tangent = Cartesian2.Cartesian3.normalize(
  243. Cartesian2.Cartesian3.cross(Cartesian2.Cartesian3.UNIT_Z, normal, tangent),
  244. tangent
  245. );
  246. }
  247. if (vertexFormat.normal) {
  248. normals[normalIndex++] = normal.x;
  249. normals[normalIndex++] = normal.y;
  250. normals[normalIndex++] = normal.z;
  251. normals[normalIndex++] = normal.x;
  252. normals[normalIndex++] = normal.y;
  253. normals[normalIndex++] = normal.z;
  254. }
  255. if (vertexFormat.tangent) {
  256. tangents[tangentIndex++] = tangent.x;
  257. tangents[tangentIndex++] = tangent.y;
  258. tangents[tangentIndex++] = tangent.z;
  259. tangents[tangentIndex++] = tangent.x;
  260. tangents[tangentIndex++] = tangent.y;
  261. tangents[tangentIndex++] = tangent.z;
  262. }
  263. if (vertexFormat.bitangent) {
  264. bitangent = Cartesian2.Cartesian3.normalize(
  265. Cartesian2.Cartesian3.cross(normal, tangent, bitangent),
  266. bitangent
  267. );
  268. bitangents[bitangentIndex++] = bitangent.x;
  269. bitangents[bitangentIndex++] = bitangent.y;
  270. bitangents[bitangentIndex++] = bitangent.z;
  271. bitangents[bitangentIndex++] = bitangent.x;
  272. bitangents[bitangentIndex++] = bitangent.y;
  273. bitangents[bitangentIndex++] = bitangent.z;
  274. }
  275. }
  276. }
  277. for (i = 0; i < slices; i++) {
  278. if (vertexFormat.normal) {
  279. normals[normalIndex++] = 0;
  280. normals[normalIndex++] = 0;
  281. normals[normalIndex++] = -1;
  282. }
  283. if (vertexFormat.tangent) {
  284. tangents[tangentIndex++] = 1;
  285. tangents[tangentIndex++] = 0;
  286. tangents[tangentIndex++] = 0;
  287. }
  288. if (vertexFormat.bitangent) {
  289. bitangents[bitangentIndex++] = 0;
  290. bitangents[bitangentIndex++] = -1;
  291. bitangents[bitangentIndex++] = 0;
  292. }
  293. }
  294. for (i = 0; i < slices; i++) {
  295. if (vertexFormat.normal) {
  296. normals[normalIndex++] = 0;
  297. normals[normalIndex++] = 0;
  298. normals[normalIndex++] = 1;
  299. }
  300. if (vertexFormat.tangent) {
  301. tangents[tangentIndex++] = 1;
  302. tangents[tangentIndex++] = 0;
  303. tangents[tangentIndex++] = 0;
  304. }
  305. if (vertexFormat.bitangent) {
  306. bitangents[bitangentIndex++] = 0;
  307. bitangents[bitangentIndex++] = 1;
  308. bitangents[bitangentIndex++] = 0;
  309. }
  310. }
  311. }
  312. var numIndices = 12 * slices - 12;
  313. var indices = IndexDatatype.IndexDatatype.createTypedArray(numVertices, numIndices);
  314. var index = 0;
  315. var j = 0;
  316. for (i = 0; i < slices - 1; i++) {
  317. indices[index++] = j;
  318. indices[index++] = j + 2;
  319. indices[index++] = j + 3;
  320. indices[index++] = j;
  321. indices[index++] = j + 3;
  322. indices[index++] = j + 1;
  323. j += 2;
  324. }
  325. indices[index++] = twoSlices - 2;
  326. indices[index++] = 0;
  327. indices[index++] = 1;
  328. indices[index++] = twoSlices - 2;
  329. indices[index++] = 1;
  330. indices[index++] = twoSlices - 1;
  331. for (i = 1; i < slices - 1; i++) {
  332. indices[index++] = twoSlices + i + 1;
  333. indices[index++] = twoSlices + i;
  334. indices[index++] = twoSlices;
  335. }
  336. for (i = 1; i < slices - 1; i++) {
  337. indices[index++] = threeSlices;
  338. indices[index++] = threeSlices + i;
  339. indices[index++] = threeSlices + i + 1;
  340. }
  341. var textureCoordIndex = 0;
  342. if (vertexFormat.st) {
  343. var rad = Math.max(topRadius, bottomRadius);
  344. for (i = 0; i < numVertices; i++) {
  345. var position = Cartesian2.Cartesian3.fromArray(positions, i * 3, positionScratch);
  346. st[textureCoordIndex++] = (position.x + rad) / (2.0 * rad);
  347. st[textureCoordIndex++] = (position.y + rad) / (2.0 * rad);
  348. }
  349. }
  350. var attributes = new GeometryAttributes.GeometryAttributes();
  351. if (vertexFormat.position) {
  352. attributes.position = new GeometryAttribute.GeometryAttribute({
  353. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  354. componentsPerAttribute: 3,
  355. values: positions,
  356. });
  357. }
  358. if (vertexFormat.normal) {
  359. attributes.normal = new GeometryAttribute.GeometryAttribute({
  360. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  361. componentsPerAttribute: 3,
  362. values: normals,
  363. });
  364. }
  365. if (vertexFormat.tangent) {
  366. attributes.tangent = new GeometryAttribute.GeometryAttribute({
  367. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  368. componentsPerAttribute: 3,
  369. values: tangents,
  370. });
  371. }
  372. if (vertexFormat.bitangent) {
  373. attributes.bitangent = new GeometryAttribute.GeometryAttribute({
  374. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  375. componentsPerAttribute: 3,
  376. values: bitangents,
  377. });
  378. }
  379. if (vertexFormat.st) {
  380. attributes.st = new GeometryAttribute.GeometryAttribute({
  381. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  382. componentsPerAttribute: 2,
  383. values: st,
  384. });
  385. }
  386. radiusScratch.x = length * 0.5;
  387. radiusScratch.y = Math.max(bottomRadius, topRadius);
  388. var boundingSphere = new Transforms.BoundingSphere(
  389. Cartesian2.Cartesian3.ZERO,
  390. Cartesian2.Cartesian2.magnitude(radiusScratch)
  391. );
  392. if (when.defined(cylinderGeometry._offsetAttribute)) {
  393. length = positions.length;
  394. var applyOffset = new Uint8Array(length / 3);
  395. var offsetValue =
  396. cylinderGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  397. ? 0
  398. : 1;
  399. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  400. attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  401. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  402. componentsPerAttribute: 1,
  403. values: applyOffset,
  404. });
  405. }
  406. return new GeometryAttribute.Geometry({
  407. attributes: attributes,
  408. indices: indices,
  409. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  410. boundingSphere: boundingSphere,
  411. offsetAttribute: cylinderGeometry._offsetAttribute,
  412. });
  413. };
  414. var unitCylinderGeometry;
  415. /**
  416. * Returns the geometric representation of a unit cylinder, including its vertices, indices, and a bounding sphere.
  417. * @returns {Geometry} The computed vertices and indices.
  418. *
  419. * @private
  420. */
  421. CylinderGeometry.getUnitCylinder = function () {
  422. if (!when.defined(unitCylinderGeometry)) {
  423. unitCylinderGeometry = CylinderGeometry.createGeometry(
  424. new CylinderGeometry({
  425. topRadius: 1.0,
  426. bottomRadius: 1.0,
  427. length: 1.0,
  428. vertexFormat: VertexFormat.VertexFormat.POSITION_ONLY,
  429. })
  430. );
  431. }
  432. return unitCylinderGeometry;
  433. };
  434. exports.CylinderGeometry = CylinderGeometry;
  435. });
  436. //# sourceMappingURL=CylinderGeometry-14abab0d.js.map