createCylinderOutlineGeometry.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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', './CylinderGeometryLibrary-8580810e'], function (when, Check, _Math, Cartesian2, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, GeometryAttributes, IndexDatatype, GeometryOffsetAttribute, CylinderGeometryLibrary) { 'use strict';
  24. var radiusScratch = new Cartesian2.Cartesian2();
  25. /**
  26. * A description of the outline of a cylinder.
  27. *
  28. * @alias CylinderOutlineGeometry
  29. * @constructor
  30. *
  31. * @param {Object} options Object with the following properties:
  32. * @param {Number} options.length The length of the cylinder.
  33. * @param {Number} options.topRadius The radius of the top of the cylinder.
  34. * @param {Number} options.bottomRadius The radius of the bottom of the cylinder.
  35. * @param {Number} [options.slices=128] The number of edges around the perimeter of the cylinder.
  36. * @param {Number} [options.numberOfVerticalLines=16] Number of lines to draw between the top and bottom surfaces of the cylinder.
  37. *
  38. * @exception {DeveloperError} options.length must be greater than 0.
  39. * @exception {DeveloperError} options.topRadius must be greater than 0.
  40. * @exception {DeveloperError} options.bottomRadius must be greater than 0.
  41. * @exception {DeveloperError} bottomRadius and topRadius cannot both equal 0.
  42. * @exception {DeveloperError} options.slices must be greater than or equal to 3.
  43. *
  44. * @see CylinderOutlineGeometry.createGeometry
  45. *
  46. * @example
  47. * // create cylinder geometry
  48. * var cylinder = new Cesium.CylinderOutlineGeometry({
  49. * length: 200000,
  50. * topRadius: 80000,
  51. * bottomRadius: 200000,
  52. * });
  53. * var geometry = Cesium.CylinderOutlineGeometry.createGeometry(cylinder);
  54. */
  55. function CylinderOutlineGeometry(options) {
  56. options = when.defaultValue(options, when.defaultValue.EMPTY_OBJECT);
  57. var length = options.length;
  58. var topRadius = options.topRadius;
  59. var bottomRadius = options.bottomRadius;
  60. var slices = when.defaultValue(options.slices, 128);
  61. var numberOfVerticalLines = Math.max(
  62. when.defaultValue(options.numberOfVerticalLines, 16),
  63. 0
  64. );
  65. //>>includeStart('debug', pragmas.debug);
  66. Check.Check.typeOf.number("options.positions", length);
  67. Check.Check.typeOf.number("options.topRadius", topRadius);
  68. Check.Check.typeOf.number("options.bottomRadius", bottomRadius);
  69. Check.Check.typeOf.number.greaterThanOrEquals("options.slices", slices, 3);
  70. if (
  71. when.defined(options.offsetAttribute) &&
  72. options.offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.TOP
  73. ) {
  74. throw new Check.DeveloperError(
  75. "GeometryOffsetAttribute.TOP is not a supported options.offsetAttribute for this geometry."
  76. );
  77. }
  78. //>>includeEnd('debug');
  79. this._length = length;
  80. this._topRadius = topRadius;
  81. this._bottomRadius = bottomRadius;
  82. this._slices = slices;
  83. this._numberOfVerticalLines = numberOfVerticalLines;
  84. this._offsetAttribute = options.offsetAttribute;
  85. this._workerName = "createCylinderOutlineGeometry";
  86. }
  87. /**
  88. * The number of elements used to pack the object into an array.
  89. * @type {Number}
  90. */
  91. CylinderOutlineGeometry.packedLength = 6;
  92. /**
  93. * Stores the provided instance into the provided array.
  94. *
  95. * @param {CylinderOutlineGeometry} value The value to pack.
  96. * @param {Number[]} array The array to pack into.
  97. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements.
  98. *
  99. * @returns {Number[]} The array that was packed into
  100. */
  101. CylinderOutlineGeometry.pack = function (value, array, startingIndex) {
  102. //>>includeStart('debug', pragmas.debug);
  103. Check.Check.typeOf.object("value", value);
  104. Check.Check.defined("array", array);
  105. //>>includeEnd('debug');
  106. startingIndex = when.defaultValue(startingIndex, 0);
  107. array[startingIndex++] = value._length;
  108. array[startingIndex++] = value._topRadius;
  109. array[startingIndex++] = value._bottomRadius;
  110. array[startingIndex++] = value._slices;
  111. array[startingIndex++] = value._numberOfVerticalLines;
  112. array[startingIndex] = when.defaultValue(value._offsetAttribute, -1);
  113. return array;
  114. };
  115. var scratchOptions = {
  116. length: undefined,
  117. topRadius: undefined,
  118. bottomRadius: undefined,
  119. slices: undefined,
  120. numberOfVerticalLines: undefined,
  121. offsetAttribute: undefined,
  122. };
  123. /**
  124. * Retrieves an instance from a packed array.
  125. *
  126. * @param {Number[]} array The packed array.
  127. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked.
  128. * @param {CylinderOutlineGeometry} [result] The object into which to store the result.
  129. * @returns {CylinderOutlineGeometry} The modified result parameter or a new CylinderOutlineGeometry instance if one was not provided.
  130. */
  131. CylinderOutlineGeometry.unpack = function (array, startingIndex, result) {
  132. //>>includeStart('debug', pragmas.debug);
  133. Check.Check.defined("array", array);
  134. //>>includeEnd('debug');
  135. startingIndex = when.defaultValue(startingIndex, 0);
  136. var length = array[startingIndex++];
  137. var topRadius = array[startingIndex++];
  138. var bottomRadius = array[startingIndex++];
  139. var slices = array[startingIndex++];
  140. var numberOfVerticalLines = array[startingIndex++];
  141. var offsetAttribute = array[startingIndex];
  142. if (!when.defined(result)) {
  143. scratchOptions.length = length;
  144. scratchOptions.topRadius = topRadius;
  145. scratchOptions.bottomRadius = bottomRadius;
  146. scratchOptions.slices = slices;
  147. scratchOptions.numberOfVerticalLines = numberOfVerticalLines;
  148. scratchOptions.offsetAttribute =
  149. offsetAttribute === -1 ? undefined : offsetAttribute;
  150. return new CylinderOutlineGeometry(scratchOptions);
  151. }
  152. result._length = length;
  153. result._topRadius = topRadius;
  154. result._bottomRadius = bottomRadius;
  155. result._slices = slices;
  156. result._numberOfVerticalLines = numberOfVerticalLines;
  157. result._offsetAttribute =
  158. offsetAttribute === -1 ? undefined : offsetAttribute;
  159. return result;
  160. };
  161. /**
  162. * Computes the geometric representation of an outline of a cylinder, including its vertices, indices, and a bounding sphere.
  163. *
  164. * @param {CylinderOutlineGeometry} cylinderGeometry A description of the cylinder outline.
  165. * @returns {Geometry|undefined} The computed vertices and indices.
  166. */
  167. CylinderOutlineGeometry.createGeometry = function (cylinderGeometry) {
  168. var length = cylinderGeometry._length;
  169. var topRadius = cylinderGeometry._topRadius;
  170. var bottomRadius = cylinderGeometry._bottomRadius;
  171. var slices = cylinderGeometry._slices;
  172. var numberOfVerticalLines = cylinderGeometry._numberOfVerticalLines;
  173. if (
  174. length <= 0 ||
  175. topRadius < 0 ||
  176. bottomRadius < 0 ||
  177. (topRadius === 0 && bottomRadius === 0)
  178. ) {
  179. return;
  180. }
  181. var numVertices = slices * 2;
  182. var positions = CylinderGeometryLibrary.CylinderGeometryLibrary.computePositions(
  183. length,
  184. topRadius,
  185. bottomRadius,
  186. slices,
  187. false
  188. );
  189. var numIndices = slices * 2;
  190. var numSide;
  191. if (numberOfVerticalLines > 0) {
  192. var numSideLines = Math.min(numberOfVerticalLines, slices);
  193. numSide = Math.round(slices / numSideLines);
  194. numIndices += numSideLines;
  195. }
  196. var indices = IndexDatatype.IndexDatatype.createTypedArray(numVertices, numIndices * 2);
  197. var index = 0;
  198. var i;
  199. for (i = 0; i < slices - 1; i++) {
  200. indices[index++] = i;
  201. indices[index++] = i + 1;
  202. indices[index++] = i + slices;
  203. indices[index++] = i + 1 + slices;
  204. }
  205. indices[index++] = slices - 1;
  206. indices[index++] = 0;
  207. indices[index++] = slices + slices - 1;
  208. indices[index++] = slices;
  209. if (numberOfVerticalLines > 0) {
  210. for (i = 0; i < slices; i += numSide) {
  211. indices[index++] = i;
  212. indices[index++] = i + slices;
  213. }
  214. }
  215. var attributes = new GeometryAttributes.GeometryAttributes();
  216. attributes.position = new GeometryAttribute.GeometryAttribute({
  217. componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
  218. componentsPerAttribute: 3,
  219. values: positions,
  220. });
  221. radiusScratch.x = length * 0.5;
  222. radiusScratch.y = Math.max(bottomRadius, topRadius);
  223. var boundingSphere = new Transforms.BoundingSphere(
  224. Cartesian2.Cartesian3.ZERO,
  225. Cartesian2.Cartesian2.magnitude(radiusScratch)
  226. );
  227. if (when.defined(cylinderGeometry._offsetAttribute)) {
  228. length = positions.length;
  229. var applyOffset = new Uint8Array(length / 3);
  230. var offsetValue =
  231. cylinderGeometry._offsetAttribute === GeometryOffsetAttribute.GeometryOffsetAttribute.NONE
  232. ? 0
  233. : 1;
  234. GeometryOffsetAttribute.arrayFill(applyOffset, offsetValue);
  235. attributes.applyOffset = new GeometryAttribute.GeometryAttribute({
  236. componentDatatype: ComponentDatatype.ComponentDatatype.UNSIGNED_BYTE,
  237. componentsPerAttribute: 1,
  238. values: applyOffset,
  239. });
  240. }
  241. return new GeometryAttribute.Geometry({
  242. attributes: attributes,
  243. indices: indices,
  244. primitiveType: GeometryAttribute.PrimitiveType.LINES,
  245. boundingSphere: boundingSphere,
  246. offsetAttribute: cylinderGeometry._offsetAttribute,
  247. });
  248. };
  249. function createCylinderOutlineGeometry(cylinderGeometry, offset) {
  250. if (when.defined(offset)) {
  251. cylinderGeometry = CylinderOutlineGeometry.unpack(cylinderGeometry, offset);
  252. }
  253. return CylinderOutlineGeometry.createGeometry(cylinderGeometry);
  254. }
  255. return createCylinderOutlineGeometry;
  256. });
  257. //# sourceMappingURL=createCylinderOutlineGeometry.js.map