GeometryAttributes-4fcfcf40.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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'], function (exports, when) { 'use strict';
  24. /**
  25. * Attributes, which make up a geometry's vertices. Each property in this object corresponds to a
  26. * {@link GeometryAttribute} containing the attribute's data.
  27. * <p>
  28. * Attributes are always stored non-interleaved in a Geometry.
  29. * </p>
  30. *
  31. * @alias GeometryAttributes
  32. * @constructor
  33. */
  34. function GeometryAttributes(options) {
  35. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  36. /**
  37. * The 3D position attribute.
  38. * <p>
  39. * 64-bit floating-point (for precision). 3 components per attribute.
  40. * </p>
  41. *
  42. * @type GeometryAttribute
  43. *
  44. * @default undefined
  45. */
  46. this.position = options.position;
  47. /**
  48. * The normal attribute (normalized), which is commonly used for lighting.
  49. * <p>
  50. * 32-bit floating-point. 3 components per attribute.
  51. * </p>
  52. *
  53. * @type GeometryAttribute
  54. *
  55. * @default undefined
  56. */
  57. this.normal = options.normal;
  58. /**
  59. * The 2D texture coordinate attribute.
  60. * <p>
  61. * 32-bit floating-point. 2 components per attribute
  62. * </p>
  63. *
  64. * @type GeometryAttribute
  65. *
  66. * @default undefined
  67. */
  68. this.st = options.st;
  69. /**
  70. * The bitangent attribute (normalized), which is used for tangent-space effects like bump mapping.
  71. * <p>
  72. * 32-bit floating-point. 3 components per attribute.
  73. * </p>
  74. *
  75. * @type GeometryAttribute
  76. *
  77. * @default undefined
  78. */
  79. this.bitangent = options.bitangent;
  80. /**
  81. * The tangent attribute (normalized), which is used for tangent-space effects like bump mapping.
  82. * <p>
  83. * 32-bit floating-point. 3 components per attribute.
  84. * </p>
  85. *
  86. * @type GeometryAttribute
  87. *
  88. * @default undefined
  89. */
  90. this.tangent = options.tangent;
  91. /**
  92. * The color attribute.
  93. * <p>
  94. * 8-bit unsigned integer. 4 components per attribute.
  95. * </p>
  96. *
  97. * @type GeometryAttribute
  98. *
  99. * @default undefined
  100. */
  101. this.color = options.color;
  102. }
  103. exports.GeometryAttributes = GeometryAttributes;
  104. });
  105. //# sourceMappingURL=GeometryAttributes-4fcfcf40.js.map