createPlaneGeometry.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['./when-54c2dc71', './Check-6c0211bc', './Math-1124a290', './Cartesian2-33d2657c', './Transforms-8be64844', './RuntimeError-2109023a', './WebGLConstants-76bb35d1', './ComponentDatatype-a26dd044', './GeometryAttribute-e9a8b203', './GeometryAttributes-4fcfcf40', './VertexFormat-4d8b817a'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, VertexFormat) { 'use strict';
  24. /**
  25. * Describes geometry representing a plane centered at the origin, with a unit width and length.
  26. *
  27. * @alias PlaneGeometry
  28. * @constructor
  29. *
  30. * @param {Object} [options] Object with the following properties:
  31. * @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
  32. *
  33. * @example
  34. * var planeGeometry = new Cesium.PlaneGeometry({
  35. * vertexFormat : Cesium.VertexFormat.POSITION_ONLY
  36. * });
  37. */
  38. function PlaneGeometry(options) {
  39. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  40. var vertexFormat = when.defaultValue(options.vertexFormat, VertexFormat.VertexFormat.DEFAULT);
  41. this._vertexFormat = vertexFormat;
  42. this._workerName = "createPlaneGeometry";
  43. }
  44. /**
  45. * The number of elements used to pack the object into an array.
  46. * @type {Number}
  47. */
  48. PlaneGeometry.packedLength = VertexFormat.VertexFormat.packedLength;
  49. /**
  50. * Stores the provided instance into the provided array.
  51. *
  52. * @param {PlaneGeometry} value The value to pack.
  53. * @param {Number[]} array The array to pack into.
  54. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  55. *
  56. * @returns {Number[]} The array that was packed into
  57. */
  58. PlaneGeometry.pack = function (value, array, startingIndex) {
  59. //>>includeStart('debug', pragmas.debug);
  60. Check.Check.typeOf.object("value", value);
  61. Check.Check.defined("array", array);
  62. //>>includeEnd('debug');
  63. startingIndex = when.defaultValue(startingIndex, 0);
  64. VertexFormat.VertexFormat.pack(value._vertexFormat, array, startingIndex);
  65. return array;
  66. };
  67. var scratchVertexFormat = new VertexFormat.VertexFormat();
  68. var scratchOptions = {
  69. vertexFormat: scratchVertexFormat,
  70. };
  71. /**
  72. * Retrieves an instance from a packed array.
  73. *
  74. * @param {Number[]} array The packed array.
  75. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  76. * @param {PlaneGeometry} [result] The object into which to store the result.
  77. * @returns {PlaneGeometry} The modified result parameter or a new PlaneGeometry instance if one was not provided.
  78. */
  79. PlaneGeometry.unpack = function (array, startingIndex, result) {
  80. //>>includeStart('debug', pragmas.debug);
  81. Check.Check.defined("array", array);
  82. //>>includeEnd('debug');
  83. startingIndex = when.defaultValue(startingIndex, 0);
  84. var vertexFormat = VertexFormat.VertexFormat.unpack(
  85. array,
  86. startingIndex,
  87. scratchVertexFormat
  88. );
  89. if (!when.defined(result)) {
  90. return new PlaneGeometry(scratchOptions);
  91. }
  92. result._vertexFormat = VertexFormat.VertexFormat.clone(vertexFormat, result._vertexFormat);
  93. return result;
  94. };
  95. var min = new Cartesian2.Cartesian3(-0.5, -0.5, 0.0);
  96. var max = new Cartesian2.Cartesian3(0.5, 0.5, 0.0);
  97. /**
  98. * Computes the geometric representation of a plane, including its vertices, indices, and a bounding sphere.
  99. *
  100. * @param {PlaneGeometry} planeGeometry A description of the plane.
  101. * @returns {Geometry|undefined} The computed vertices and indices.
  102. */
  103. PlaneGeometry.createGeometry = function (planeGeometry) {
  104. var vertexFormat = planeGeometry._vertexFormat;
  105. var attributes = new GeometryAttributes.GeometryAttributes();
  106. var indices;
  107. var positions;
  108. if (vertexFormat.position) {
  109. // 4 corner points. Duplicated 3 times each for each incident edge/face.
  110. positions = new Float64Array(4 * 3);
  111. // +z face
  112. positions[0] = min.x;
  113. positions[1] = min.y;
  114. positions[2] = 0.0;
  115. positions[3] = max.x;
  116. positions[4] = min.y;
  117. positions[5] = 0.0;
  118. positions[6] = max.x;
  119. positions[7] = max.y;
  120. positions[8] = 0.0;
  121. positions[9] = min.x;
  122. positions[10] = max.y;
  123. positions[11] = 0.0;
  124. attributes.position = new GeometryAttribute.GeometryAttribute({
  125. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  126. componentsPerAttribute: 3,
  127. values: positions,
  128. });
  129. if (vertexFormat.normal) {
  130. var normals = new Float32Array(4 * 3);
  131. // +z face
  132. normals[0] = 0.0;
  133. normals[1] = 0.0;
  134. normals[2] = 1.0;
  135. normals[3] = 0.0;
  136. normals[4] = 0.0;
  137. normals[5] = 1.0;
  138. normals[6] = 0.0;
  139. normals[7] = 0.0;
  140. normals[8] = 1.0;
  141. normals[9] = 0.0;
  142. normals[10] = 0.0;
  143. normals[11] = 1.0;
  144. attributes.normal = new GeometryAttribute.GeometryAttribute({
  145. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  146. componentsPerAttribute: 3,
  147. values: normals,
  148. });
  149. }
  150. if (vertexFormat.st) {
  151. var texCoords = new Float32Array(4 * 2);
  152. // +z face
  153. texCoords[0] = 0.0;
  154. texCoords[1] = 0.0;
  155. texCoords[2] = 1.0;
  156. texCoords[3] = 0.0;
  157. texCoords[4] = 1.0;
  158. texCoords[5] = 1.0;
  159. texCoords[6] = 0.0;
  160. texCoords[7] = 1.0;
  161. attributes.st = new GeometryAttribute.GeometryAttribute({
  162. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  163. componentsPerAttribute: 2,
  164. values: texCoords,
  165. });
  166. }
  167. if (vertexFormat.tangent) {
  168. var tangents = new Float32Array(4 * 3);
  169. // +z face
  170. tangents[0] = 1.0;
  171. tangents[1] = 0.0;
  172. tangents[2] = 0.0;
  173. tangents[3] = 1.0;
  174. tangents[4] = 0.0;
  175. tangents[5] = 0.0;
  176. tangents[6] = 1.0;
  177. tangents[7] = 0.0;
  178. tangents[8] = 0.0;
  179. tangents[9] = 1.0;
  180. tangents[10] = 0.0;
  181. tangents[11] = 0.0;
  182. attributes.tangent = new GeometryAttribute.GeometryAttribute({
  183. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  184. componentsPerAttribute: 3,
  185. values: tangents,
  186. });
  187. }
  188. if (vertexFormat.bitangent) {
  189. var bitangents = new Float32Array(4 * 3);
  190. // +z face
  191. bitangents[0] = 0.0;
  192. bitangents[1] = 1.0;
  193. bitangents[2] = 0.0;
  194. bitangents[3] = 0.0;
  195. bitangents[4] = 1.0;
  196. bitangents[5] = 0.0;
  197. bitangents[6] = 0.0;
  198. bitangents[7] = 1.0;
  199. bitangents[8] = 0.0;
  200. bitangents[9] = 0.0;
  201. bitangents[10] = 1.0;
  202. bitangents[11] = 0.0;
  203. attributes.bitangent = new GeometryAttribute.GeometryAttribute({
  204. componentDatatype: ComponentDatatype.ComponentDatatype.FLOAT,
  205. componentsPerAttribute: 3,
  206. values: bitangents,
  207. });
  208. }
  209. // 2 triangles
  210. indices = new Uint16Array(2 * 3);
  211. // +z face
  212. indices[0] = 0;
  213. indices[1] = 1;
  214. indices[2] = 2;
  215. indices[3] = 0;
  216. indices[4] = 2;
  217. indices[5] = 3;
  218. }
  219. return new GeometryAttribute.Geometry({
  220. attributes: attributes,
  221. indices: indices,
  222. primitiveType: GeometryAttribute.PrimitiveType.TRIANGLES,
  223. boundingSphere: new Transforms.BoundingSphere(Cartesian2.Cartesian3.ZERO, Math.sqrt(2.0)),
  224. });
  225. };
  226. function createPlaneGeometry(planeGeometry, offset) {
  227. if (when.defined(offset)) {
  228. planeGeometry = PlaneGeometry.unpack(planeGeometry, offset);
  229. }
  230. return PlaneGeometry.createGeometry(planeGeometry);
  231. }
  232. return createPlaneGeometry;
  233. });
  234. //# sourceMappingURL=createPlaneGeometry.js.map