BoxGeometry-5b17b51c.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  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', './Cartesian2-33d2657c', './Transforms-8be64844', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './GeometryOffsetAttribute-d746452d', './VertexFormat-4d8b817a'], function (exports, when, Check, Cartesian2, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, GeometryOffsetAttribute, VertexFormat) { 'use strict';
  24. var diffScratch = new Cartesian2.Cartesian3();
  25. /**
  26. * Describes a cube centered at the origin.
  27. *
  28. * @alias BoxGeometry
  29. * @constructor
  30. *
  31. * @param {Object} options Object with the following properties:
  32. * @param {Cartesian3} options.minimum The minimum x, y, and z coordinates of the box.
  33. * @param {Cartesian3} options.maximum The maximum x, y, and z coordinates of the box.
  34. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  35. *
  36. * @see BoxGeometry.fromDimensions
  37. * @see BoxGeometry.createGeometry
  38. * @see Packable
  39. *
  40. * @demo {@link https://sandcastle.cesium.com/index.html?src=Box.html|Cesium Sandcastle Box Demo}
  41. *
  42. * @example
  43. * var box = new Cesium.BoxGeometry({
  44. * vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  45. * maximum : new Cesium.Cartesian3(250000.0, 250000.0, 250000.0),
  46. * minimum : new Cesium.Cartesian3(-250000.0, -250000.0, -250000.0)
  47. * });
  48. * var geometry = Cesium.BoxGeometry.createGeometry(box);
  49. */
  50. function BoxGeometry(options) {
  51. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  52. var min = options.minimum;
  53. var max = options.maximum;
  54. //>>includeStart('debug', pragmas.debug);
  55. Check.Check.typeOf.object("min", min);
  56. Check.Check.typeOf.object("max", max);
  57. if (
  58. when.defined(options.offsetAttribute) &&
  59. options.offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.TOP
  60. ) {
  61. throw new Check.DeveloperError(
  62. "GeometryOffsetAttribute.TOP is not a supported options.offsetAttribute for this geometry."
  63. );
  64. }
  65. //>>includeEnd('debug');
  66. var vertexFormat = when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT);
  67. this._minimum = Cartesian2.Cartesian3.clone(min);
  68. this._maximum = Cartesian2.Cartesian3.clone(max);
  69. this._vertexFormat = vertexFormat;
  70. this._offsetAttribute = options.offsetAttribute;
  71. this._workerName = "createBoxGeometry";
  72. }
  73. /**
  74. * Creates a cube centered at the origin given its dimensions.
  75. *
  76. * @param {Object} options Object with the following properties:
  77. * @param {Cartesian3} options.dimensions The width, depth, and height of the box stored in the x, y, and z coordinates of the <code>Cartesian3</code>, respectively.
  78. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  79. * @returns {BoxGeometry}
  80. *
  81. * @exception {DeveloperError} All dimensions components must be greater than or equal to zero.
  82. *
  83. *
  84. * @example
  85. * var box = Cesium.BoxGeometry.fromDimensions({
  86. * vertexFormat : Cesium.VertexFormat.POSITION_ONLY,
  87. * dimensions : new Cesium.Cartesian3(500000.0, 500000.0, 500000.0)
  88. * });
  89. * var geometry = Cesium.BoxGeometry.createGeometry(box);
  90. *
  91. * @see BoxGeometry.createGeometry
  92. */
  93. BoxGeometry.fromDimensions = function (options) {
  94. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  95. var dimensions = options.dimensions;
  96. //>>includeStart('debug', pragmas.debug);
  97. Check.Check.typeOf.object("dimensions", dimensions);
  98. Check.Check.typeOf.number.greaterThanOrEquals("dimensions.x", dimensions.x, 0);
  99. Check.Check.typeOf.number.greaterThanOrEquals("dimensions.y", dimensions.y, 0);
  100. Check.Check.typeOf.number.greaterThanOrEquals("dimensions.z", dimensions.z, 0);
  101. //>>includeEnd('debug');
  102. var corner = Cartesian2.Cartesian3.multiplyByScalar(dimensions, 0.5, new Cartesian2.Cartesian3());
  103. return new BoxGeometry({
  104. minimum: Cartesian2.Cartesian3.negate(corner, new Cartesian2.Cartesian3()),
  105. maximum: corner,
  106. vertexFormat: options.vertexFormat,
  107. offsetAttribute: options.offsetAttribute,
  108. });
  109. };
  110. /**
  111. * Creates a cube from the dimensions of an AxisAlignedBoundingBox.
  112. *
  113. * @param {AxisAlignedBoundingBox} boundingBox A description of the AxisAlignedBoundingBox.
  114. * @returns {BoxGeometry}
  115. *
  116. *
  117. *
  118. * @example
  119. * var aabb = Cesium.AxisAlignedBoundingBox.fromPoints(Cesium.Cartesian3.fromDegreesArray([
  120. * -72.0, 40.0,
  121. * -70.0, 35.0,
  122. * -75.0, 30.0,
  123. * -70.0, 30.0,
  124. * -68.0, 40.0
  125. * ]));
  126. * var box = Cesium.BoxGeometry.fromAxisAlignedBoundingBox(aabb);
  127. *
  128. * @see BoxGeometry.createGeometry
  129. */
  130. BoxGeometry.fromAxisAlignedBoundingBox = function (boundingBox) {
  131. //>>includeStart('debug', pragmas.debug);
  132. Check.Check.typeOf.object("boundingBox", boundingBox);
  133. //>>includeEnd('debug');
  134. return new BoxGeometry({
  135. minimum: boundingBox.minimum,
  136. maximum: boundingBox.maximum,
  137. });
  138. };
  139. /**
  140. * The number of elements used to pack the object into an array.
  141. * @type {Number}
  142. */
  143. BoxGeometry.packedLength =
  144. 2 * Cartesian2.Cartesian3.packedLength + VertexFormat.VertexFormat.packedLength + 1;
  145. /**
  146. * Stores the provided instance into the provided array.
  147. *
  148. * @param {BoxGeometry} value The value to pack.
  149. * @param {Number[]} array The array to pack into.
  150. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  151. *
  152. * @returns {Number[]} The array that was packed into
  153. */
  154. BoxGeometry.pack = function (value, array, startingIndex) {
  155. //>>includeStart('debug', pragmas.debug);
  156. Check.Check.typeOf.object("value", value);
  157. Check.Check.defined("array", array);
  158. //>>includeEnd('debug');
  159. startingIndex = when.defaultValue(startingIndex, 0);
  160. Cartesian2.Cartesian3.pack(value._minimum, array, startingIndex);
  161. Cartesian2.Cartesian3.pack(
  162. value._maximum,
  163. array,
  164. startingIndex + Cartesian2.Cartesian3.packedLength
  165. );
  166. VertexFormat.VertexFormat.pack(
  167. value._vertexFormat,
  168. array,
  169. startingIndex + 2 * Cartesian2.Cartesian3.packedLength
  170. );
  171. array[
  172. startingIndex + 2 * Cartesian2.Cartesian3.packedLength + VertexFormat.VertexFormat.packedLength
  173. ] = when.defaultValue(value._offsetAttribute, -1);
  174. return array;
  175. };
  176. var scratchMin = new Cartesian2.Cartesian3();
  177. var scratchMax = new Cartesian2.Cartesian3();
  178. var scratchVertexFormat = new VertexFormat.VertexFormat();
  179. var scratchOptions = {
  180. minimum: scratchMin,
  181. maximum: scratchMax,
  182. vertexFormat: scratchVertexFormat,
  183. offsetAttribute: undefined,
  184. };
  185. /**
  186. * Retrieves an instance from a packed array.
  187. *
  188. * @param {Number[]} array The packed array.
  189. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  190. * @param {BoxGeometry} [result] The object into which to store the result.
  191. * @returns {BoxGeometry} The modified result parameter or a new BoxGeometry instance if one was not provided.
  192. */
  193. BoxGeometry.unpack = function (array, startingIndex, result) {
  194. //>>includeStart('debug', pragmas.debug);
  195. Check.Check.defined("array", array);
  196. //>>includeEnd('debug');
  197. startingIndex = when.defaultValue(startingIndex, 0);
  198. var min = Cartesian2.Cartesian3.unpack(array, startingIndex, scratchMin);
  199. var max = Cartesian2.Cartesian3.unpack(
  200. array,
  201. startingIndex + Cartesian2.Cartesian3.packedLength,
  202. scratchMax
  203. );
  204. var vertexFormat = VertexFormat.VertexFormat.unpack(
  205. array,
  206. startingIndex + 2 * Cartesian2.Cartesian3.packedLength,
  207. scratchVertexFormat
  208. );
  209. var offsetAttribute =
  210. array[
  211. startingIndex + 2 * Cartesian2.Cartesian3.packedLength + VertexFormat.VertexFormat.packedLength
  212. ];
  213. if (!when.defined(result)) {
  214. scratchOptions.offsetAttribute =
  215. offsetAttribute === -1 ? undefined : offsetAttribute;
  216. return new BoxGeometry(scratchOptions);
  217. }
  218. result._minimum = Cartesian2.Cartesian3.clone(min, result._minimum);
  219. result._maximum = Cartesian2.Cartesian3.clone(max, result._maximum);
  220. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  221. result._offsetAttribute =
  222. offsetAttribute === -1 ? undefined : offsetAttribute;
  223. return result;
  224. };
  225. /**
  226. * Computes the geometric representation of a box, including its vertices, indices, and a bounding sphere.
  227. *
  228. * @param {BoxGeometry} boxGeometry A description of the box.
  229. * @returns {Geometry|undefined} The computed vertices and indices.
  230. */
  231. BoxGeometry.createGeometry = function (boxGeometry) {
  232. var min = boxGeometry._minimum;
  233. var max = boxGeometry._maximum;
  234. var vertexFormat = boxGeometry._vertexFormat;
  235. if (Cartesian2.Cartesian3.equals(min, max)) {
  236. return;
  237. }
  238. var attributes = new GeometryAttributes.GeometryAttributes();
  239. var indices;
  240. var positions;
  241. if (
  242. vertexFormat.position &&
  243. (vertexFormat.st ||
  244. vertexFormat.normal ||
  245. vertexFormat.tangent ||
  246. vertexFormat.bitangent)
  247. ) {
  248. if (vertexFormat.position) {
  249. // 8 corner points. Duplicated 3 times each for each incident edge/face.
  250. positions = new Float64Array(6 * 4 * 3);
  251. // +z face
  252. positions[0] = min.x;
  253. positions[1] = min.y;
  254. positions[2] = max.z;
  255. positions[3] = max.x;
  256. positions[4] = min.y;
  257. positions[5] = max.z;
  258. positions[6] = max.x;
  259. positions[7] = max.y;
  260. positions[8] = max.z;
  261. positions[9] = min.x;
  262. positions[10] = max.y;
  263. positions[11] = max.z;
  264. // -z face
  265. positions[12] = min.x;
  266. positions[13] = min.y;
  267. positions[14] = min.z;
  268. positions[15] = max.x;
  269. positions[16] = min.y;
  270. positions[17] = min.z;
  271. positions[18] = max.x;
  272. positions[19] = max.y;
  273. positions[20] = min.z;
  274. positions[21] = min.x;
  275. positions[22] = max.y;
  276. positions[23] = min.z;
  277. // +x face
  278. positions[24] = max.x;
  279. positions[25] = min.y;
  280. positions[26] = min.z;
  281. positions[27] = max.x;
  282. positions[28] = max.y;
  283. positions[29] = min.z;
  284. positions[30] = max.x;
  285. positions[31] = max.y;
  286. positions[32] = max.z;
  287. positions[33] = max.x;
  288. positions[34] = min.y;
  289. positions[35] = max.z;
  290. // -x face
  291. positions[36] = min.x;
  292. positions[37] = min.y;
  293. positions[38] = min.z;
  294. positions[39] = min.x;
  295. positions[40] = max.y;
  296. positions[41] = min.z;
  297. positions[42] = min.x;
  298. positions[43] = max.y;
  299. positions[44] = max.z;
  300. positions[45] = min.x;
  301. positions[46] = min.y;
  302. positions[47] = max.z;
  303. // +y face
  304. positions[48] = min.x;
  305. positions[49] = max.y;
  306. positions[50] = min.z;
  307. positions[51] = max.x;
  308. positions[52] = max.y;
  309. positions[53] = min.z;
  310. positions[54] = max.x;
  311. positions[55] = max.y;
  312. positions[56] = max.z;
  313. positions[57] = min.x;
  314. positions[58] = max.y;
  315. positions[59] = max.z;
  316. // -y face
  317. positions[60] = min.x;
  318. positions[61] = min.y;
  319. positions[62] = min.z;
  320. positions[63] = max.x;
  321. positions[64] = min.y;
  322. positions[65] = min.z;
  323. positions[66] = max.x;
  324. positions[67] = min.y;
  325. positions[68] = max.z;
  326. positions[69] = min.x;
  327. positions[70] = min.y;
  328. positions[71] = max.z;
  329. attributes.position = new GeometryAttribute.GeometryAttribute({
  330. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  331. componentsPerAttribute: 3,
  332. values: positions,
  333. });
  334. }
  335. if (vertexFormat.normal) {
  336. var normals = new Float32Array(6 * 4 * 3);
  337. // +z face
  338. normals[0] = 0.0;
  339. normals[1] = 0.0;
  340. normals[2] = 1.0;
  341. normals[3] = 0.0;
  342. normals[4] = 0.0;
  343. normals[5] = 1.0;
  344. normals[6] = 0.0;
  345. normals[7] = 0.0;
  346. normals[8] = 1.0;
  347. normals[9] = 0.0;
  348. normals[10] = 0.0;
  349. normals[11] = 1.0;
  350. // -z face
  351. normals[12] = 0.0;
  352. normals[13] = 0.0;
  353. normals[14] = -1.0;
  354. normals[15] = 0.0;
  355. normals[16] = 0.0;
  356. normals[17] = -1.0;
  357. normals[18] = 0.0;
  358. normals[19] = 0.0;
  359. normals[20] = -1.0;
  360. normals[21] = 0.0;
  361. normals[22] = 0.0;
  362. normals[23] = -1.0;
  363. // +x face
  364. normals[24] = 1.0;
  365. normals[25] = 0.0;
  366. normals[26] = 0.0;
  367. normals[27] = 1.0;
  368. normals[28] = 0.0;
  369. normals[29] = 0.0;
  370. normals[30] = 1.0;
  371. normals[31] = 0.0;
  372. normals[32] = 0.0;
  373. normals[33] = 1.0;
  374. normals[34] = 0.0;
  375. normals[35] = 0.0;
  376. // -x face
  377. normals[36] = -1.0;
  378. normals[37] = 0.0;
  379. normals[38] = 0.0;
  380. normals[39] = -1.0;
  381. normals[40] = 0.0;
  382. normals[41] = 0.0;
  383. normals[42] = -1.0;
  384. normals[43] = 0.0;
  385. normals[44] = 0.0;
  386. normals[45] = -1.0;
  387. normals[46] = 0.0;
  388. normals[47] = 0.0;
  389. // +y face
  390. normals[48] = 0.0;
  391. normals[49] = 1.0;
  392. normals[50] = 0.0;
  393. normals[51] = 0.0;
  394. normals[52] = 1.0;
  395. normals[53] = 0.0;
  396. normals[54] = 0.0;
  397. normals[55] = 1.0;
  398. normals[56] = 0.0;
  399. normals[57] = 0.0;
  400. normals[58] = 1.0;
  401. normals[59] = 0.0;
  402. // -y face
  403. normals[60] = 0.0;
  404. normals[61] = -1.0;
  405. normals[62] = 0.0;
  406. normals[63] = 0.0;
  407. normals[64] = -1.0;
  408. normals[65] = 0.0;
  409. normals[66] = 0.0;
  410. normals[67] = -1.0;
  411. normals[68] = 0.0;
  412. normals[69] = 0.0;
  413. normals[70] = -1.0;
  414. normals[71] = 0.0;
  415. attributes.normal = new GeometryAttribute.GeometryAttribute({
  416. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  417. componentsPerAttribute: 3,
  418. values: normals,
  419. });
  420. }
  421. if (vertexFormat.st) {
  422. var texCoords = new Float32Array(6 * 4 * 2);
  423. // +z face
  424. texCoords[0] = 0.0;
  425. texCoords[1] = 0.0;
  426. texCoords[2] = 1.0;
  427. texCoords[3] = 0.0;
  428. texCoords[4] = 1.0;
  429. texCoords[5] = 1.0;
  430. texCoords[6] = 0.0;
  431. texCoords[7] = 1.0;
  432. // -z face
  433. texCoords[8] = 1.0;
  434. texCoords[9] = 0.0;
  435. texCoords[10] = 0.0;
  436. texCoords[11] = 0.0;
  437. texCoords[12] = 0.0;
  438. texCoords[13] = 1.0;
  439. texCoords[14] = 1.0;
  440. texCoords[15] = 1.0;
  441. //+x face
  442. texCoords[16] = 0.0;
  443. texCoords[17] = 0.0;
  444. texCoords[18] = 1.0;
  445. texCoords[19] = 0.0;
  446. texCoords[20] = 1.0;
  447. texCoords[21] = 1.0;
  448. texCoords[22] = 0.0;
  449. texCoords[23] = 1.0;
  450. // -x face
  451. texCoords[24] = 1.0;
  452. texCoords[25] = 0.0;
  453. texCoords[26] = 0.0;
  454. texCoords[27] = 0.0;
  455. texCoords[28] = 0.0;
  456. texCoords[29] = 1.0;
  457. texCoords[30] = 1.0;
  458. texCoords[31] = 1.0;
  459. // +y face
  460. texCoords[32] = 1.0;
  461. texCoords[33] = 0.0;
  462. texCoords[34] = 0.0;
  463. texCoords[35] = 0.0;
  464. texCoords[36] = 0.0;
  465. texCoords[37] = 1.0;
  466. texCoords[38] = 1.0;
  467. texCoords[39] = 1.0;
  468. // -y face
  469. texCoords[40] = 0.0;
  470. texCoords[41] = 0.0;
  471. texCoords[42] = 1.0;
  472. texCoords[43] = 0.0;
  473. texCoords[44] = 1.0;
  474. texCoords[45] = 1.0;
  475. texCoords[46] = 0.0;
  476. texCoords[47] = 1.0;
  477. attributes.st = new GeometryAttribute.GeometryAttribute({
  478. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  479. componentsPerAttribute: 2,
  480. values: texCoords,
  481. });
  482. }
  483. if (vertexFormat.tangent) {
  484. var tangents = new Float32Array(6 * 4 * 3);
  485. // +z face
  486. tangents[0] = 1.0;
  487. tangents[1] = 0.0;
  488. tangents[2] = 0.0;
  489. tangents[3] = 1.0;
  490. tangents[4] = 0.0;
  491. tangents[5] = 0.0;
  492. tangents[6] = 1.0;
  493. tangents[7] = 0.0;
  494. tangents[8] = 0.0;
  495. tangents[9] = 1.0;
  496. tangents[10] = 0.0;
  497. tangents[11] = 0.0;
  498. // -z face
  499. tangents[12] = -1.0;
  500. tangents[13] = 0.0;
  501. tangents[14] = 0.0;
  502. tangents[15] = -1.0;
  503. tangents[16] = 0.0;
  504. tangents[17] = 0.0;
  505. tangents[18] = -1.0;
  506. tangents[19] = 0.0;
  507. tangents[20] = 0.0;
  508. tangents[21] = -1.0;
  509. tangents[22] = 0.0;
  510. tangents[23] = 0.0;
  511. // +x face
  512. tangents[24] = 0.0;
  513. tangents[25] = 1.0;
  514. tangents[26] = 0.0;
  515. tangents[27] = 0.0;
  516. tangents[28] = 1.0;
  517. tangents[29] = 0.0;
  518. tangents[30] = 0.0;
  519. tangents[31] = 1.0;
  520. tangents[32] = 0.0;
  521. tangents[33] = 0.0;
  522. tangents[34] = 1.0;
  523. tangents[35] = 0.0;
  524. // -x face
  525. tangents[36] = 0.0;
  526. tangents[37] = -1.0;
  527. tangents[38] = 0.0;
  528. tangents[39] = 0.0;
  529. tangents[40] = -1.0;
  530. tangents[41] = 0.0;
  531. tangents[42] = 0.0;
  532. tangents[43] = -1.0;
  533. tangents[44] = 0.0;
  534. tangents[45] = 0.0;
  535. tangents[46] = -1.0;
  536. tangents[47] = 0.0;
  537. // +y face
  538. tangents[48] = -1.0;
  539. tangents[49] = 0.0;
  540. tangents[50] = 0.0;
  541. tangents[51] = -1.0;
  542. tangents[52] = 0.0;
  543. tangents[53] = 0.0;
  544. tangents[54] = -1.0;
  545. tangents[55] = 0.0;
  546. tangents[56] = 0.0;
  547. tangents[57] = -1.0;
  548. tangents[58] = 0.0;
  549. tangents[59] = 0.0;
  550. // -y face
  551. tangents[60] = 1.0;
  552. tangents[61] = 0.0;
  553. tangents[62] = 0.0;
  554. tangents[63] = 1.0;
  555. tangents[64] = 0.0;
  556. tangents[65] = 0.0;
  557. tangents[66] = 1.0;
  558. tangents[67] = 0.0;
  559. tangents[68] = 0.0;
  560. tangents[69] = 1.0;
  561. tangents[70] = 0.0;
  562. tangents[71] = 0.0;
  563. attributes.tangent = new GeometryAttribute.GeometryAttribute({
  564. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  565. componentsPerAttribute: 3,
  566. values: tangents,
  567. });
  568. }
  569. if (vertexFormat.bitangent) {
  570. var bitangents = new Float32Array(6 * 4 * 3);
  571. // +z face
  572. bitangents[0] = 0.0;
  573. bitangents[1] = 1.0;
  574. bitangents[2] = 0.0;
  575. bitangents[3] = 0.0;
  576. bitangents[4] = 1.0;
  577. bitangents[5] = 0.0;
  578. bitangents[6] = 0.0;
  579. bitangents[7] = 1.0;
  580. bitangents[8] = 0.0;
  581. bitangents[9] = 0.0;
  582. bitangents[10] = 1.0;
  583. bitangents[11] = 0.0;
  584. // -z face
  585. bitangents[12] = 0.0;
  586. bitangents[13] = 1.0;
  587. bitangents[14] = 0.0;
  588. bitangents[15] = 0.0;
  589. bitangents[16] = 1.0;
  590. bitangents[17] = 0.0;
  591. bitangents[18] = 0.0;
  592. bitangents[19] = 1.0;
  593. bitangents[20] = 0.0;
  594. bitangents[21] = 0.0;
  595. bitangents[22] = 1.0;
  596. bitangents[23] = 0.0;
  597. // +x face
  598. bitangents[24] = 0.0;
  599. bitangents[25] = 0.0;
  600. bitangents[26] = 1.0;
  601. bitangents[27] = 0.0;
  602. bitangents[28] = 0.0;
  603. bitangents[29] = 1.0;
  604. bitangents[30] = 0.0;
  605. bitangents[31] = 0.0;
  606. bitangents[32] = 1.0;
  607. bitangents[33] = 0.0;
  608. bitangents[34] = 0.0;
  609. bitangents[35] = 1.0;
  610. // -x face
  611. bitangents[36] = 0.0;
  612. bitangents[37] = 0.0;
  613. bitangents[38] = 1.0;
  614. bitangents[39] = 0.0;
  615. bitangents[40] = 0.0;
  616. bitangents[41] = 1.0;
  617. bitangents[42] = 0.0;
  618. bitangents[43] = 0.0;
  619. bitangents[44] = 1.0;
  620. bitangents[45] = 0.0;
  621. bitangents[46] = 0.0;
  622. bitangents[47] = 1.0;
  623. // +y face
  624. bitangents[48] = 0.0;
  625. bitangents[49] = 0.0;
  626. bitangents[50] = 1.0;
  627. bitangents[51] = 0.0;
  628. bitangents[52] = 0.0;
  629. bitangents[53] = 1.0;
  630. bitangents[54] = 0.0;
  631. bitangents[55] = 0.0;
  632. bitangents[56] = 1.0;
  633. bitangents[57] = 0.0;
  634. bitangents[58] = 0.0;
  635. bitangents[59] = 1.0;
  636. // -y face
  637. bitangents[60] = 0.0;
  638. bitangents[61] = 0.0;
  639. bitangents[62] = 1.0;
  640. bitangents[63] = 0.0;
  641. bitangents[64] = 0.0;
  642. bitangents[65] = 1.0;
  643. bitangents[66] = 0.0;
  644. bitangents[67] = 0.0;
  645. bitangents[68] = 1.0;
  646. bitangents[69] = 0.0;
  647. bitangents[70] = 0.0;
  648. bitangents[71] = 1.0;
  649. attributes.bitangent = new GeometryAttribute.GeometryAttribute({
  650. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  651. componentsPerAttribute: 3,
  652. values: bitangents,
  653. });
  654. }
  655. // 12 triangles: 6 faces, 2 triangles each.
  656. indices = new Uint16Array(6 * 2 * 3);
  657. // +z face
  658. indices[0] = 0;
  659. indices[1] = 1;
  660. indices[2] = 2;
  661. indices[3] = 0;
  662. indices[4] = 2;
  663. indices[5] = 3;
  664. // -z face
  665. indices[6] = 4 + 2;
  666. indices[7] = 4 + 1;
  667. indices[8] = 4 + 0;
  668. indices[9] = 4 + 3;
  669. indices[10] = 4 + 2;
  670. indices[11] = 4 + 0;
  671. // +x face
  672. indices[12] = 8 + 0;
  673. indices[13] = 8 + 1;
  674. indices[14] = 8 + 2;
  675. indices[15] = 8 + 0;
  676. indices[16] = 8 + 2;
  677. indices[17] = 8 + 3;
  678. // -x face
  679. indices[18] = 12 + 2;
  680. indices[19] = 12 + 1;
  681. indices[20] = 12 + 0;
  682. indices[21] = 12 + 3;
  683. indices[22] = 12 + 2;
  684. indices[23] = 12 + 0;
  685. // +y face
  686. indices[24] = 16 + 2;
  687. indices[25] = 16 + 1;
  688. indices[26] = 16 + 0;
  689. indices[27] = 16 + 3;
  690. indices[28] = 16 + 2;
  691. indices[29] = 16 + 0;
  692. // -y face
  693. indices[30] = 20 + 0;
  694. indices[31] = 20 + 1;
  695. indices[32] = 20 + 2;
  696. indices[33] = 20 + 0;
  697. indices[34] = 20 + 2;
  698. indices[35] = 20 + 3;
  699. } else {
  700. // Positions only - no need to duplicate corner points
  701. positions = new Float64Array(8 * 3);
  702. positions[0] = min.x;
  703. positions[1] = min.y;
  704. positions[2] = min.z;
  705. positions[3] = max.x;
  706. positions[4] = min.y;
  707. positions[5] = min.z;
  708. positions[6] = max.x;
  709. positions[7] = max.y;
  710. positions[8] = min.z;
  711. positions[9] = min.x;
  712. positions[10] = max.y;
  713. positions[11] = min.z;
  714. positions[12] = min.x;
  715. positions[13] = min.y;
  716. positions[14] = max.z;
  717. positions[15] = max.x;
  718. positions[16] = min.y;
  719. positions[17] = max.z;
  720. positions[18] = max.x;
  721. positions[19] = max.y;
  722. positions[20] = max.z;
  723. positions[21] = min.x;
  724. positions[22] = max.y;
  725. positions[23] = max.z;
  726. attributes.position = new GeometryAttribute.GeometryAttribute({
  727. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  728. componentsPerAttribute: 3,
  729. values: positions,
  730. });
  731. // 12 triangles: 6 faces, 2 triangles each.
  732. indices = new Uint16Array(6 * 2 * 3);
  733. // plane z = corner.Z
  734. indices[0] = 4;
  735. indices[1] = 5;
  736. indices[2] = 6;
  737. indices[3] = 4;
  738. indices[4] = 6;
  739. indices[5] = 7;
  740. // plane z = -corner.Z
  741. indices[6] = 1;
  742. indices[7] = 0;
  743. indices[8] = 3;
  744. indices[9] = 1;
  745. indices[10] = 3;
  746. indices[11] = 2;
  747. // plane x = corner.X
  748. indices[12] = 1;
  749. indices[13] = 6;
  750. indices[14] = 5;
  751. indices[15] = 1;
  752. indices[16] = 2;
  753. indices[17] = 6;
  754. // plane y = corner.Y
  755. indices[18] = 2;
  756. indices[19] = 3;
  757. indices[20] = 7;
  758. indices[21] = 2;
  759. indices[22] = 7;
  760. indices[23] = 6;
  761. // plane x = -corner.X
  762. indices[24] = 3;
  763. indices[25] = 0;
  764. indices[26] = 4;
  765. indices[27] = 3;
  766. indices[28] = 4;
  767. indices[29] = 7;
  768. // plane y = -corner.Y
  769. indices[30] = 0;
  770. indices[31] = 1;
  771. indices[32] = 5;
  772. indices[33] = 0;
  773. indices[34] = 5;
  774. indices[35] = 4;
  775. }
  776. var diff = Cartesian2.Cartesian3.subtract(max, min, diffScratch);
  777. var radius = Cartesian2.Cartesian3.magnitude(diff) * 0.5;
  778. if (when.defined(boxGeometry._offsetAttribute)) {
  779. var length = positions.length;
  780. var applyOffset = new Uint8Array(length / 3);
  781. var offsetValue =
  782. boxGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE ? 0 : 1;
  783. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  784. attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  785. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  786. componentsPerAttribute: 1,
  787. values: applyOffset,
  788. });
  789. }
  790. return new GeometryAttribute.Geometry({
  791. attributes: attributes,
  792. indices: indices,
  793. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  794. boundingSphere: new Transforms.BoundingSphere(Cartesian2.Cartesian3.ZERO, radius),
  795. offsetAttribute: boxGeometry._offsetAttribute,
  796. });
  797. };
  798. var unitBoxGeometry;
  799. /**
  800. * Returns the geometric representation of a unit box, including its vertices, indices, and a bounding sphere.
  801. * @returns {Geometry} The computed vertices and indices.
  802. *
  803. * @private
  804. */
  805. BoxGeometry.getUnitBox = function () {
  806. if (!when.defined(unitBoxGeometry)) {
  807. unitBoxGeometry = BoxGeometry.createGeometry(
  808. BoxGeometry.fromDimensions({
  809. dimensions: new Cartesian2.Cartesian3(1.0, 1.0, 1.0),
  810. vertexFormat: VertexFormat.VertexFormat.POSITION_ONLY,
  811. })
  812. );
  813. }
  814. return unitBoxGeometry;
  815. };
  816. exports.BoxGeometry = BoxGeometry;
  817. });
  818. //# sourceMappingURL=BoxGeometry-5b17b51c.js.map