GeometryOffsetAttribute-d746452d.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. * Fill an array or a portion of an array with a given value.
  26. *
  27. * @param {Array} array The array to fill.
  28. * @param {*} value The value to fill the array with.
  29. * @param {Number} [start=0] The index to start filling at.
  30. * @param {Number} [end=array.length] The index to end stop at.
  31. *
  32. * @returns {Array} The resulting array.
  33. * @private
  34. */
  35. function arrayFill(array, value, start, end) {
  36. //>>includeStart('debug', pragmas.debug);
  37. Check.Check.defined("array", array);
  38. Check.Check.defined("value", value);
  39. if (when.defined(start)) {
  40. Check.Check.typeOf.number("start", start);
  41. }
  42. if (when.defined(end)) {
  43. Check.Check.typeOf.number("end", end);
  44. }
  45. //>>includeEnd('debug');
  46. if (typeof array.fill === "function") {
  47. return array.fill(value, start, end);
  48. }
  49. var length = array.length >>> 0;
  50. var relativeStart = when.defaultValue(start, 0);
  51. // If negative, find wrap around position
  52. var k =
  53. relativeStart < 0
  54. ? Math.max(length + relativeStart, 0)
  55. : Math.min(relativeStart, length);
  56. var relativeEnd = when.defaultValue(end, length);
  57. // If negative, find wrap around position
  58. var last =
  59. relativeEnd < 0
  60. ? Math.max(length + relativeEnd, 0)
  61. : Math.min(relativeEnd, length);
  62. // Fill array accordingly
  63. while (k < last) {
  64. array[k] = value;
  65. k++;
  66. }
  67. return array;
  68. }
  69. /**
  70. * Represents which vertices should have a value of `true` for the `applyOffset` attribute
  71. * @private
  72. */
  73. var GeometryOffsetAttribute = {
  74. NONE: 0,
  75. TOP: 1,
  76. ALL: 2,
  77. };
  78. var GeometryOffsetAttribute$1 = Object.freeze(GeometryOffsetAttribute);
  79. exports.GeometryOffsetAttribute = GeometryOffsetAttribute$1;
  80. exports.arrayFill = arrayFill;
  81. });
  82. //# sourceMappingURL=GeometryOffsetAttribute-d746452d.js.map