arrayRemoveDuplicates-0263f42c.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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', './Math-1124a290'], function (exports, when, Check, _Math) { 'use strict';
  24. var removeDuplicatesEpsilon = _Math.CesiumMath.EPSILON10;
  25. /**
  26. * Removes adjacent duplicate values in an array of values.
  27. *
  28. * @param {Array.<*>} [values] The array of values.
  29. * @param {Function} equalsEpsilon Function to compare values with an epsilon. Boolean equalsEpsilon(left, right, epsilon).
  30. * @param {Boolean} [wrapAround=false] Compare the last value in the array against the first value.
  31. * @returns {Array.<*>|undefined} A new array of values with no adjacent duplicate values or the input array if no duplicates were found.
  32. *
  33. * @example
  34. * // Returns [(1.0, 1.0, 1.0), (2.0, 2.0, 2.0), (3.0, 3.0, 3.0), (1.0, 1.0, 1.0)]
  35. * var values = [
  36. * new Cesium.Cartesian3(1.0, 1.0, 1.0),
  37. * new Cesium.Cartesian3(1.0, 1.0, 1.0),
  38. * new Cesium.Cartesian3(2.0, 2.0, 2.0),
  39. * new Cesium.Cartesian3(3.0, 3.0, 3.0),
  40. * new Cesium.Cartesian3(1.0, 1.0, 1.0)];
  41. * var nonDuplicatevalues = Cesium.PolylinePipeline.removeDuplicates(values, Cartesian3.equalsEpsilon);
  42. *
  43. * @example
  44. * // Returns [(1.0, 1.0, 1.0), (2.0, 2.0, 2.0), (3.0, 3.0, 3.0)]
  45. * var values = [
  46. * new Cesium.Cartesian3(1.0, 1.0, 1.0),
  47. * new Cesium.Cartesian3(1.0, 1.0, 1.0),
  48. * new Cesium.Cartesian3(2.0, 2.0, 2.0),
  49. * new Cesium.Cartesian3(3.0, 3.0, 3.0),
  50. * new Cesium.Cartesian3(1.0, 1.0, 1.0)];
  51. * var nonDuplicatevalues = Cesium.PolylinePipeline.removeDuplicates(values, Cartesian3.equalsEpsilon, true);
  52. *
  53. * @private
  54. */
  55. function arrayRemoveDuplicates(values, equalsEpsilon, wrapAround) {
  56. //>>includeStart('debug', pragmas.debug);
  57. Check.Check.defined("equalsEpsilon", equalsEpsilon);
  58. //>>includeEnd('debug');
  59. if (!when.defined(values)) {
  60. return undefined;
  61. }
  62. wrapAround = when.defaultValue(wrapAround, false);
  63. var length = values.length;
  64. if (length < 2) {
  65. return values;
  66. }
  67. var i;
  68. var v0;
  69. var v1;
  70. for (i = 1; i < length; ++i) {
  71. v0 = values[i - 1];
  72. v1 = values[i];
  73. if (equalsEpsilon(v0, v1, removeDuplicatesEpsilon)) {
  74. break;
  75. }
  76. }
  77. if (i === length) {
  78. if (
  79. wrapAround &&
  80. equalsEpsilon(
  81. values[0],
  82. values[values.length - 1],
  83. removeDuplicatesEpsilon
  84. )
  85. ) {
  86. return values.slice(1);
  87. }
  88. return values;
  89. }
  90. var cleanedvalues = values.slice(0, i);
  91. for (; i < length; ++i) {
  92. // v0 is set by either the previous loop, or the previous clean point.
  93. v1 = values[i];
  94. if (!equalsEpsilon(v0, v1, removeDuplicatesEpsilon)) {
  95. cleanedvalues.push(v1);
  96. v0 = v1;
  97. }
  98. }
  99. if (
  100. wrapAround &&
  101. cleanedvalues.length > 1 &&
  102. equalsEpsilon(
  103. cleanedvalues[0],
  104. cleanedvalues[cleanedvalues.length - 1],
  105. removeDuplicatesEpsilon
  106. )
  107. ) {
  108. cleanedvalues.shift();
  109. }
  110. return cleanedvalues;
  111. }
  112. exports.arrayRemoveDuplicates = arrayRemoveDuplicates;
  113. });
  114. //# sourceMappingURL=arrayRemoveDuplicates-0263f42c.js.map