CoplanarPolygonGeometryLibrary-f703c864.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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', './Check-6c0211bc', './Cartesian2-33d2657c', './Transforms-8be64844', './OrientedBoundingBox-8897f474'], function (exports, Check, Cartesian2, Transforms, OrientedBoundingBox) { 'use strict';
  24. /**
  25. * @private
  26. */
  27. var CoplanarPolygonGeometryLibrary = {};
  28. var scratchIntersectionPoint = new Cartesian2.Cartesian3();
  29. var scratchXAxis = new Cartesian2.Cartesian3();
  30. var scratchYAxis = new Cartesian2.Cartesian3();
  31. var scratchZAxis = new Cartesian2.Cartesian3();
  32. var obbScratch = new OrientedBoundingBox.OrientedBoundingBox();
  33. CoplanarPolygonGeometryLibrary.validOutline = function (positions) {
  34. //>>includeStart('debug', pragmas.debug);
  35. Check.Check.defined("positions", positions);
  36. //>>includeEnd('debug');
  37. var orientedBoundingBox = OrientedBoundingBox.OrientedBoundingBox.fromPoints(
  38. positions,
  39. obbScratch
  40. );
  41. var halfAxes = orientedBoundingBox.halfAxes;
  42. var xAxis = Transforms.Matrix3.getColumn(halfAxes, 0, scratchXAxis);
  43. var yAxis = Transforms.Matrix3.getColumn(halfAxes, 1, scratchYAxis);
  44. var zAxis = Transforms.Matrix3.getColumn(halfAxes, 2, scratchZAxis);
  45. var xMag = Cartesian2.Cartesian3.magnitude(xAxis);
  46. var yMag = Cartesian2.Cartesian3.magnitude(yAxis);
  47. var zMag = Cartesian2.Cartesian3.magnitude(zAxis);
  48. // If all the points are on a line return undefined because we can't draw a polygon
  49. return !(
  50. (xMag === 0 && (yMag === 0 || zMag === 0)) ||
  51. (yMag === 0 && zMag === 0)
  52. );
  53. };
  54. // call after removeDuplicates
  55. CoplanarPolygonGeometryLibrary.computeProjectTo2DArguments = function (
  56. positions,
  57. centerResult,
  58. planeAxis1Result,
  59. planeAxis2Result
  60. ) {
  61. //>>includeStart('debug', pragmas.debug);
  62. Check.Check.defined("positions", positions);
  63. Check.Check.defined("centerResult", centerResult);
  64. Check.Check.defined("planeAxis1Result", planeAxis1Result);
  65. Check.Check.defined("planeAxis2Result", planeAxis2Result);
  66. //>>includeEnd('debug');
  67. var orientedBoundingBox = OrientedBoundingBox.OrientedBoundingBox.fromPoints(
  68. positions,
  69. obbScratch
  70. );
  71. var halfAxes = orientedBoundingBox.halfAxes;
  72. var xAxis = Transforms.Matrix3.getColumn(halfAxes, 0, scratchXAxis);
  73. var yAxis = Transforms.Matrix3.getColumn(halfAxes, 1, scratchYAxis);
  74. var zAxis = Transforms.Matrix3.getColumn(halfAxes, 2, scratchZAxis);
  75. var xMag = Cartesian2.Cartesian3.magnitude(xAxis);
  76. var yMag = Cartesian2.Cartesian3.magnitude(yAxis);
  77. var zMag = Cartesian2.Cartesian3.magnitude(zAxis);
  78. var min = Math.min(xMag, yMag, zMag);
  79. // If all the points are on a line return undefined because we can't draw a polygon
  80. if (
  81. (xMag === 0 && (yMag === 0 || zMag === 0)) ||
  82. (yMag === 0 && zMag === 0)
  83. ) {
  84. return false;
  85. }
  86. var planeAxis1;
  87. var planeAxis2;
  88. if (min === yMag || min === zMag) {
  89. planeAxis1 = xAxis;
  90. }
  91. if (min === xMag) {
  92. planeAxis1 = yAxis;
  93. } else if (min === zMag) {
  94. planeAxis2 = yAxis;
  95. }
  96. if (min === xMag || min === yMag) {
  97. planeAxis2 = zAxis;
  98. }
  99. Cartesian2.Cartesian3.normalize(planeAxis1, planeAxis1Result);
  100. Cartesian2.Cartesian3.normalize(planeAxis2, planeAxis2Result);
  101. Cartesian2.Cartesian3.clone(orientedBoundingBox.center, centerResult);
  102. return true;
  103. };
  104. function projectTo2D(position, center, axis1, axis2, result) {
  105. var v = Cartesian2.Cartesian3.subtract(position, center, scratchIntersectionPoint);
  106. var x = Cartesian2.Cartesian3.dot(axis1, v);
  107. var y = Cartesian2.Cartesian3.dot(axis2, v);
  108. return Cartesian2.Cartesian2.fromElements(x, y, result);
  109. }
  110. CoplanarPolygonGeometryLibrary.createProjectPointsTo2DFunction = function (
  111. center,
  112. axis1,
  113. axis2
  114. ) {
  115. return function (positions) {
  116. var positionResults = new Array(positions.length);
  117. for (var i = 0; i < positions.length; i++) {
  118. positionResults[i] = projectTo2D(positions[i], center, axis1, axis2);
  119. }
  120. return positionResults;
  121. };
  122. };
  123. CoplanarPolygonGeometryLibrary.createProjectPointTo2DFunction = function (
  124. center,
  125. axis1,
  126. axis2
  127. ) {
  128. return function (position, result) {
  129. return projectTo2D(position, center, axis1, axis2, result);
  130. };
  131. };
  132. exports.CoplanarPolygonGeometryLibrary = CoplanarPolygonGeometryLibrary;
  133. });
  134. //# sourceMappingURL=CoplanarPolygonGeometryLibrary-f703c864.js.map