VertexFormat-4d8b817a.js 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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'], function (exports, when, Check) { 'use strict';
  24. /**
  25. * A vertex format defines what attributes make up a vertex. A VertexFormat can be provided
  26. * to a {@link Geometry} to request that certain properties be computed, e.g., just position,
  27. * position and normal, etc.
  28. *
  29. * @param {Object} [options] An object with boolean properties corresponding to VertexFormat properties as shown in the code example.
  30. *
  31. * @alias VertexFormat
  32. * @constructor
  33. *
  34. * @example
  35. * // Create a vertex format with position and 2D texture coordinate attributes.
  36. * var format = new Cesium.VertexFormat({
  37. * position : true,
  38. * st : true
  39. * });
  40. *
  41. * @see Geometry#attributes
  42. * @see Packable
  43. */
  44. function VertexFormat(options) {
  45. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  46. /**
  47. * When <code>true</code>, the vertex has a 3D position attribute.
  48. * <p>
  49. * 64-bit floating-point (for precision). 3 components per attribute.
  50. * </p>
  51. *
  52. * @type Boolean
  53. *
  54. * @default false
  55. */
  56. this.position = when.defaultValue(options.position, false);
  57. /**
  58. * When <code>true</code>, the vertex has a normal attribute (normalized), which is commonly used for lighting.
  59. * <p>
  60. * 32-bit floating-point. 3 components per attribute.
  61. * </p>
  62. *
  63. * @type Boolean
  64. *
  65. * @default false
  66. */
  67. this.normal = when.defaultValue(options.normal, false);
  68. /**
  69. * When <code>true</code>, the vertex has a 2D texture coordinate attribute.
  70. * <p>
  71. * 32-bit floating-point. 2 components per attribute
  72. * </p>
  73. *
  74. * @type Boolean
  75. *
  76. * @default false
  77. */
  78. this.st = when.defaultValue(options.st, false);
  79. /**
  80. * When <code>true</code>, the vertex has a bitangent attribute (normalized), which is used for tangent-space effects like bump mapping.
  81. * <p>
  82. * 32-bit floating-point. 3 components per attribute.
  83. * </p>
  84. *
  85. * @type Boolean
  86. *
  87. * @default false
  88. */
  89. this.bitangent = when.defaultValue(options.bitangent, false);
  90. /**
  91. * When <code>true</code>, the vertex has a tangent attribute (normalized), which is used for tangent-space effects like bump mapping.
  92. * <p>
  93. * 32-bit floating-point. 3 components per attribute.
  94. * </p>
  95. *
  96. * @type Boolean
  97. *
  98. * @default false
  99. */
  100. this.tangent = when.defaultValue(options.tangent, false);
  101. /**
  102. * When <code>true</code>, the vertex has an RGB color attribute.
  103. * <p>
  104. * 8-bit unsigned byte. 3 components per attribute.
  105. * </p>
  106. *
  107. * @type Boolean
  108. *
  109. * @default false
  110. */
  111. this.color = when.defaultValue(options.color, false);
  112. }
  113. /**
  114. * An immutable vertex format with only a position attribute.
  115. *
  116. * @type {VertexFormat}
  117. * @constant
  118. *
  119. * @see VertexFormat#position
  120. */
  121. VertexFormat.POSITION_ONLY = Object.freeze(
  122. new VertexFormat({
  123. position: true,
  124. })
  125. );
  126. /**
  127. * An immutable vertex format with position and normal attributes.
  128. * This is compatible with per-instance color appearances like {@link PerInstanceColorAppearance}.
  129. *
  130. * @type {VertexFormat}
  131. * @constant
  132. *
  133. * @see VertexFormat#position
  134. * @see VertexFormat#normal
  135. */
  136. VertexFormat.POSITION_AND_NORMAL = Object.freeze(
  137. new VertexFormat({
  138. position: true,
  139. normal: true,
  140. })
  141. );
  142. /**
  143. * An immutable vertex format with position, normal, and st attributes.
  144. * This is compatible with {@link MaterialAppearance} when {@link MaterialAppearance#materialSupport}
  145. * is <code>TEXTURED/code>.
  146. *
  147. * @type {VertexFormat}
  148. * @constant
  149. *
  150. * @see VertexFormat#position
  151. * @see VertexFormat#normal
  152. * @see VertexFormat#st
  153. */
  154. VertexFormat.POSITION_NORMAL_AND_ST = Object.freeze(
  155. new VertexFormat({
  156. position: true,
  157. normal: true,
  158. st: true,
  159. })
  160. );
  161. /**
  162. * An immutable vertex format with position and st attributes.
  163. * This is compatible with {@link EllipsoidSurfaceAppearance}.
  164. *
  165. * @type {VertexFormat}
  166. * @constant
  167. *
  168. * @see VertexFormat#position
  169. * @see VertexFormat#st
  170. */
  171. VertexFormat.POSITION_AND_ST = Object.freeze(
  172. new VertexFormat({
  173. position: true,
  174. st: true,
  175. })
  176. );
  177. /**
  178. * An immutable vertex format with position and color attributes.
  179. *
  180. * @type {VertexFormat}
  181. * @constant
  182. *
  183. * @see VertexFormat#position
  184. * @see VertexFormat#color
  185. */
  186. VertexFormat.POSITION_AND_COLOR = Object.freeze(
  187. new VertexFormat({
  188. position: true,
  189. color: true,
  190. })
  191. );
  192. /**
  193. * An immutable vertex format with well-known attributes: position, normal, st, tangent, and bitangent.
  194. *
  195. * @type {VertexFormat}
  196. * @constant
  197. *
  198. * @see VertexFormat#position
  199. * @see VertexFormat#normal
  200. * @see VertexFormat#st
  201. * @see VertexFormat#tangent
  202. * @see VertexFormat#bitangent
  203. */
  204. VertexFormat.ALL = Object.freeze(
  205. new VertexFormat({
  206. position: true,
  207. normal: true,
  208. st: true,
  209. tangent: true,
  210. bitangent: true,
  211. })
  212. );
  213. /**
  214. * An immutable vertex format with position, normal, and st attributes.
  215. * This is compatible with most appearances and materials; however
  216. * normal and st attributes are not always required. When this is
  217. * known in advance, another <code>VertexFormat</code> should be used.
  218. *
  219. * @type {VertexFormat}
  220. * @constant
  221. *
  222. * @see VertexFormat#position
  223. * @see VertexFormat#normal
  224. */
  225. VertexFormat.DEFAULT = VertexFormat.POSITION_NORMAL_AND_ST;
  226. /**
  227. * The number of elements used to pack the object into an array.
  228. * @type {Number}
  229. */
  230. VertexFormat.packedLength = 6;
  231. /**
  232. * Stores the provided instance into the provided array.
  233. *
  234. * @param {VertexFormat} value The value to pack.
  235. * @param {Number[]} array The array to pack into.
  236. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  237. *
  238. * @returns {Number[]} The array that was packed into
  239. */
  240. VertexFormat.pack = function (value, array, startingIndex) {
  241. //>>includeStart('debug', pragmas.debug);
  242. if (!when.defined(value)) {
  243. throw new Check.DeveloperError("value is required");
  244. }
  245. if (!when.defined(array)) {
  246. throw new Check.DeveloperError("array is required");
  247. }
  248. //>>includeEnd('debug');
  249. startingIndex = when.defaultValue(startingIndex, 0);
  250. array[startingIndex++] = value.position ? 1.0 : 0.0;
  251. array[startingIndex++] = value.normal ? 1.0 : 0.0;
  252. array[startingIndex++] = value.st ? 1.0 : 0.0;
  253. array[startingIndex++] = value.tangent ? 1.0 : 0.0;
  254. array[startingIndex++] = value.bitangent ? 1.0 : 0.0;
  255. array[startingIndex] = value.color ? 1.0 : 0.0;
  256. return array;
  257. };
  258. /**
  259. * Retrieves an instance from a packed array.
  260. *
  261. * @param {Number[]} array The packed array.
  262. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  263. * @param {VertexFormat} [result] The object into which to store the result.
  264. * @returns {VertexFormat} The modified result parameter or a new VertexFormat instance if one was not provided.
  265. */
  266. VertexFormat.unpack = function (array, startingIndex, result) {
  267. //>>includeStart('debug', pragmas.debug);
  268. if (!when.defined(array)) {
  269. throw new Check.DeveloperError("array is required");
  270. }
  271. //>>includeEnd('debug');
  272. startingIndex = when.defaultValue(startingIndex, 0);
  273. if (!when.defined(result)) {
  274. result = new VertexFormat();
  275. }
  276. result.position = array[startingIndex++] === 1.0;
  277. result.normal = array[startingIndex++] === 1.0;
  278. result.st = array[startingIndex++] === 1.0;
  279. result.tangent = array[startingIndex++] === 1.0;
  280. result.bitangent = array[startingIndex++] === 1.0;
  281. result.color = array[startingIndex] === 1.0;
  282. return result;
  283. };
  284. /**
  285. * Duplicates a VertexFormat instance.
  286. *
  287. * @param {VertexFormat} vertexFormat The vertex format to duplicate.
  288. * @param {VertexFormat} [result] The object onto which to store the result.
  289. * @returns {VertexFormat} The modified result parameter or a new VertexFormat instance if one was not provided. (Returns undefined if vertexFormat is undefined)
  290. */
  291. VertexFormat.clone = function (vertexFormat, result) {
  292. if (!when.defined(vertexFormat)) {
  293. return undefined;
  294. }
  295. if (!when.defined(result)) {
  296. result = new VertexFormat();
  297. }
  298. result.position = vertexFormat.position;
  299. result.normal = vertexFormat.normal;
  300. result.st = vertexFormat.st;
  301. result.tangent = vertexFormat.tangent;
  302. result.bitangent = vertexFormat.bitangent;
  303. result.color = vertexFormat.color;
  304. return result;
  305. };
  306. exports.VertexFormat = VertexFormat;
  307. });
  308. //# sourceMappingURL=VertexFormat-4d8b817a.js.map