createSphereOutlineGeometry.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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', './IndexDatatype-25023891', './GeometryOffsetAttribute-d746452d', './EllipsoidOutlineGeometry-040f1e9f'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, GeometryOffsetAttribute, EllipsoidOutlineGeometry) { 'use strict';
  24. /**
  25. * A description of the outline of a sphere.
  26. *
  27. * @alias SphereOutlineGeometry
  28. * @constructor
  29. *
  30. * @param {Object} [options] Object with the following properties:
  31. * @param {Number} [options.radius=1.0] The radius of the sphere.
  32. * @param {Number} [options.stackPartitions=10] The count of stacks for the sphere (1 greater than the number of parallel lines).
  33. * @param {Number} [options.slicePartitions=8] The count of slices for the sphere (Equal to the number of radial lines).
  34. * @param {Number} [options.subdivisions=200] The number of points per line, determining the granularity of the curvature .
  35. *
  36. * @exception {DeveloperError} options.stackPartitions must be greater than or equal to one.
  37. * @exception {DeveloperError} options.slicePartitions must be greater than or equal to zero.
  38. * @exception {DeveloperError} options.subdivisions must be greater than or equal to zero.
  39. *
  40. * @example
  41. * var sphere = new Cesium.SphereOutlineGeometry({
  42. * radius : 100.0,
  43. * stackPartitions : 6,
  44. * slicePartitions: 5
  45. * });
  46. * var geometry = Cesium.SphereOutlineGeometry.createGeometry(sphere);
  47. */
  48. function SphereOutlineGeometry(options) {
  49. var radius = when.defaultValue(options.radius, 1.0);
  50. var radii = new Cartesian2.Cartesian3(radius, radius, radius);
  51. var ellipsoidOptions = {
  52. radii: radii,
  53. stackPartitions: options.stackPartitions,
  54. slicePartitions: options.slicePartitions,
  55. subdivisions: options.subdivisions,
  56. };
  57. this._ellipsoidGeometry = new EllipsoidOutlineGeometry.EllipsoidOutlineGeometry(ellipsoidOptions);
  58. this._workerName = "createSphereOutlineGeometry";
  59. }
  60. /**
  61. * The number of elements used to pack the object into an array.
  62. * @type {Number}
  63. */
  64. SphereOutlineGeometry.packedLength = EllipsoidOutlineGeometry.EllipsoidOutlineGeometry.packedLength;
  65. /**
  66. * Stores the provided instance into the provided array.
  67. *
  68. * @param {SphereOutlineGeometry} value The value to pack.
  69. * @param {Number[]} array The array to pack into.
  70. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  71. *
  72. * @returns {Number[]} The array that was packed into
  73. */
  74. SphereOutlineGeometry.pack = function (value, array, startingIndex) {
  75. //>>includeStart('debug', pragmas.debug);
  76. Check.Check.typeOf.object("value", value);
  77. //>>includeEnd('debug');
  78. return EllipsoidOutlineGeometry.EllipsoidOutlineGeometry.pack(
  79. value._ellipsoidGeometry,
  80. array,
  81. startingIndex
  82. );
  83. };
  84. var scratchEllipsoidGeometry = new EllipsoidOutlineGeometry.EllipsoidOutlineGeometry();
  85. var scratchOptions = {
  86. radius: undefined,
  87. radii: new Cartesian2.Cartesian3(),
  88. stackPartitions: undefined,
  89. slicePartitions: undefined,
  90. subdivisions: undefined,
  91. };
  92. /**
  93. * Retrieves an instance from a packed array.
  94. *
  95. * @param {Number[]} array The packed array.
  96. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  97. * @param {SphereOutlineGeometry} [result] The object into which to store the result.
  98. * @returns {SphereOutlineGeometry} The modified result parameter or a new SphereOutlineGeometry instance if one was not provided.
  99. */
  100. SphereOutlineGeometry.unpack = function (array, startingIndex, result) {
  101. var ellipsoidGeometry = EllipsoidOutlineGeometry.EllipsoidOutlineGeometry.unpack(
  102. array,
  103. startingIndex,
  104. scratchEllipsoidGeometry
  105. );
  106. scratchOptions.stackPartitions = ellipsoidGeometry._stackPartitions;
  107. scratchOptions.slicePartitions = ellipsoidGeometry._slicePartitions;
  108. scratchOptions.subdivisions = ellipsoidGeometry._subdivisions;
  109. if (!when.defined(result)) {
  110. scratchOptions.radius = ellipsoidGeometry._radii.x;
  111. return new SphereOutlineGeometry(scratchOptions);
  112. }
  113. Cartesian2.Cartesian3.clone(ellipsoidGeometry._radii, scratchOptions.radii);
  114. result._ellipsoidGeometry = new EllipsoidOutlineGeometry.EllipsoidOutlineGeometry(scratchOptions);
  115. return result;
  116. };
  117. /**
  118. * Computes the geometric representation of an outline of a sphere, including its vertices, indices, and a bounding sphere.
  119. *
  120. * @param {SphereOutlineGeometry} sphereGeometry A description of the sphere outline.
  121. * @returns {Geometry|undefined} The computed vertices and indices.
  122. */
  123. SphereOutlineGeometry.createGeometry = function (sphereGeometry) {
  124. return EllipsoidOutlineGeometry.EllipsoidOutlineGeometry.createGeometry(
  125. sphereGeometry._ellipsoidGeometry
  126. );
  127. };
  128. function createSphereOutlineGeometry(sphereGeometry, offset) {
  129. if (when.defined(offset)) {
  130. sphereGeometry = SphereOutlineGeometry.unpack(sphereGeometry, offset);
  131. }
  132. return SphereOutlineGeometry.createGeometry(sphereGeometry);
  133. }
  134. return createSphereOutlineGeometry;
  135. });
  136. //# sourceMappingURL=createSphereOutlineGeometry.js.map