GeometryInstance-8c9b4df5.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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', './Transforms-8be64844'], function (exports, when, Check, Transforms) { 'use strict';
  24. /**
  25. * Geometry instancing allows one {@link Geometry} object to be positions in several
  26. * different locations and colored uniquely. For example, one {@link BoxGeometry} can
  27. * be instanced several times, each with a different <code>modelMatrix</code> to change
  28. * its position, rotation, and scale.
  29. *
  30. * @alias GeometryInstance
  31. * @constructor
  32. *
  33. * @param {Object} options Object with the following properties:
  34. * @param {Geometry|GeometryFactory} options.geometry The geometry to instance.
  35. * @param {Matrix4} [options.modelMatrix=Matrix4.IDENTITY] The model matrix that transforms to transform the geometry from model to world coordinates.
  36. * @param {Object} [options.id] A user-defined object to return when the instance is picked with {@link Scene#pick} or get/set per-instance attributes with {@link Primitive#getGeometryInstanceAttributes}.
  37. * @param {Object} [options.attributes] Per-instance attributes like a show or color attribute shown in the example below.
  38. *
  39. *
  40. * @example
  41. * // Create geometry for a box, and two instances that refer to it.
  42. * // One instance positions the box on the bottom and colored aqua.
  43. * // The other instance positions the box on the top and color white.
  44. * var geometry = Cesium.BoxGeometry.fromDimensions({
  45. * vertexFormat : Cesium.VertexFormat.POSITION_AND_NORMAL,
  46. * dimensions : new Cesium.Cartesian3(1000000.0, 1000000.0, 500000.0)
  47. * });
  48. * var instanceBottom = new Cesium.GeometryInstance({
  49. * geometry : geometry,
  50. * modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
  51. * Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883)), new Cesium.Cartesian3(0.0, 0.0, 1000000.0), new Cesium.Matrix4()),
  52. * attributes : {
  53. * color : Cesium.ColorGeometryInstanceAttribute.fromColor(Cesium.Color.AQUA)
  54. * },
  55. * id : 'bottom'
  56. * });
  57. * var instanceTop = new Cesium.GeometryInstance({
  58. * geometry : geometry,
  59. * modelMatrix : Cesium.Matrix4.multiplyByTranslation(Cesium.Transforms.eastNorthUpToFixedFrame(
  60. * Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883)), new Cesium.Cartesian3(0.0, 0.0, 3000000.0), new Cesium.Matrix4()),
  61. * attributes : {
  62. * color : Cesium.ColorGeometryInstanceAttribute.fromColor(Cesium.Color.AQUA)
  63. * },
  64. * id : 'top'
  65. * });
  66. *
  67. * @see Geometry
  68. */
  69. function GeometryInstance(options) {
  70. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  71. //>>includeStart('debug', pragmas.debug);
  72. if (!when.defined(options.geometry)) {
  73. throw new Check.DeveloperError("options.geometry is required.");
  74. }
  75. //>>includeEnd('debug');
  76. /**
  77. * The geometry being instanced.
  78. *
  79. * @type Geometry
  80. *
  81. * @default undefined
  82. */
  83. this.geometry = options.geometry;
  84. /**
  85. * The 4x4 transformation matrix that transforms the geometry from model to world coordinates.
  86. * When this is the identity matrix, the geometry is drawn in world coordinates, i.e., Earth's WGS84 coordinates.
  87. * Local reference frames can be used by providing a different transformation matrix, like that returned
  88. * by {@link Transforms.eastNorthUpToFixedFrame}.
  89. *
  90. * @type Matrix4
  91. *
  92. * @default Matrix4.IDENTITY
  93. */
  94. this.modelMatrix = Transforms.Matrix4.clone(
  95. when.defaultValue(options.modelMatrix, Transforms.Matrix4.IDENTITY)
  96. );
  97. /**
  98. * User-defined object returned when the instance is picked or used to get/set per-instance attributes.
  99. *
  100. * @type Object
  101. *
  102. * @default undefined
  103. *
  104. * @see Scene#pick
  105. * @see Primitive#getGeometryInstanceAttributes
  106. */
  107. this.id = options.id;
  108. /**
  109. * Used for picking primitives that wrap geometry instances.
  110. *
  111. * @private
  112. */
  113. this.pickPrimitive = options.pickPrimitive;
  114. /**
  115. * Per-instance attributes like {@link ColorGeometryInstanceAttribute} or {@link ShowGeometryInstanceAttribute}.
  116. * {@link Geometry} attributes varying per vertex; these attributes are constant for the entire instance.
  117. *
  118. * @type Object
  119. *
  120. * @default undefined
  121. */
  122. this.attributes = when.defaultValue(options.attributes, {});
  123. /**
  124. * @private
  125. */
  126. this.westHemisphereGeometry = undefined;
  127. /**
  128. * @private
  129. */
  130. this.eastHemisphereGeometry = undefined;
  131. }
  132. exports.GeometryInstance = GeometryInstance;
  133. });
  134. //# sourceMappingURL=GeometryInstance-8c9b4df5.js.map