RectangleGeometryLibrary-3ec48410.js 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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', './Cartesian2-33d2657c', './Transforms-8be64844', './GeometryAttribute-e9a8b203'], function (exports, when, Check, _Math, Cartesian2, Transforms, GeometryAttribute) { 'use strict';
  24. var cos = Math.cos;
  25. var sin = Math.sin;
  26. var sqrt = Math.sqrt;
  27. /**
  28. * @private
  29. */
  30. var RectangleGeometryLibrary = {};
  31. /**
  32. * @private
  33. */
  34. RectangleGeometryLibrary.computePosition = function (
  35. computedOptions,
  36. ellipsoid,
  37. computeST,
  38. row,
  39. col,
  40. position,
  41. st
  42. ) {
  43. var radiiSquared = ellipsoid.radiiSquared;
  44. var nwCorner = computedOptions.nwCorner;
  45. var rectangle = computedOptions.boundingRectangle;
  46. var stLatitude =
  47. nwCorner.latitude -
  48. computedOptions.granYCos * row +
  49. col * computedOptions.granXSin;
  50. var cosLatitude = cos(stLatitude);
  51. var nZ = sin(stLatitude);
  52. var kZ = radiiSquared.z * nZ;
  53. var stLongitude =
  54. nwCorner.longitude +
  55. row * computedOptions.granYSin +
  56. col * computedOptions.granXCos;
  57. var nX = cosLatitude * cos(stLongitude);
  58. var nY = cosLatitude * sin(stLongitude);
  59. var kX = radiiSquared.x * nX;
  60. var kY = radiiSquared.y * nY;
  61. var gamma = sqrt(kX * nX + kY * nY + kZ * nZ);
  62. position.x = kX / gamma;
  63. position.y = kY / gamma;
  64. position.z = kZ / gamma;
  65. if (computeST) {
  66. var stNwCorner = computedOptions.stNwCorner;
  67. if (when.defined(stNwCorner)) {
  68. stLatitude =
  69. stNwCorner.latitude -
  70. computedOptions.stGranYCos * row +
  71. col * computedOptions.stGranXSin;
  72. stLongitude =
  73. stNwCorner.longitude +
  74. row * computedOptions.stGranYSin +
  75. col * computedOptions.stGranXCos;
  76. st.x = (stLongitude - computedOptions.stWest) * computedOptions.lonScalar;
  77. st.y = (stLatitude - computedOptions.stSouth) * computedOptions.latScalar;
  78. } else {
  79. st.x = (stLongitude - rectangle.west) * computedOptions.lonScalar;
  80. st.y = (stLatitude - rectangle.south) * computedOptions.latScalar;
  81. }
  82. }
  83. };
  84. var rotationMatrixScratch = new GeometryAttribute.Matrix2();
  85. var nwCartesian = new Cartesian2.Cartesian3();
  86. var centerScratch = new Cartesian2.Cartographic();
  87. var centerCartesian = new Cartesian2.Cartesian3();
  88. var proj = new Transforms.GeographicProjection();
  89. function getRotationOptions(
  90. nwCorner,
  91. rotation,
  92. granularityX,
  93. granularityY,
  94. center,
  95. width,
  96. height
  97. ) {
  98. var cosRotation = Math.cos(rotation);
  99. var granYCos = granularityY * cosRotation;
  100. var granXCos = granularityX * cosRotation;
  101. var sinRotation = Math.sin(rotation);
  102. var granYSin = granularityY * sinRotation;
  103. var granXSin = granularityX * sinRotation;
  104. nwCartesian = proj.project(nwCorner, nwCartesian);
  105. nwCartesian = Cartesian2.Cartesian3.subtract(nwCartesian, centerCartesian, nwCartesian);
  106. var rotationMatrix = GeometryAttribute.Matrix2.fromRotation(rotation, rotationMatrixScratch);
  107. nwCartesian = GeometryAttribute.Matrix2.multiplyByVector(
  108. rotationMatrix,
  109. nwCartesian,
  110. nwCartesian
  111. );
  112. nwCartesian = Cartesian2.Cartesian3.add(nwCartesian, centerCartesian, nwCartesian);
  113. nwCorner = proj.unproject(nwCartesian, nwCorner);
  114. width -= 1;
  115. height -= 1;
  116. var latitude = nwCorner.latitude;
  117. var latitude0 = latitude + width * granXSin;
  118. var latitude1 = latitude - granYCos * height;
  119. var latitude2 = latitude - granYCos * height + width * granXSin;
  120. var north = Math.max(latitude, latitude0, latitude1, latitude2);
  121. var south = Math.min(latitude, latitude0, latitude1, latitude2);
  122. var longitude = nwCorner.longitude;
  123. var longitude0 = longitude + width * granXCos;
  124. var longitude1 = longitude + height * granYSin;
  125. var longitude2 = longitude + height * granYSin + width * granXCos;
  126. var east = Math.max(longitude, longitude0, longitude1, longitude2);
  127. var west = Math.min(longitude, longitude0, longitude1, longitude2);
  128. return {
  129. north: north,
  130. south: south,
  131. east: east,
  132. west: west,
  133. granYCos: granYCos,
  134. granYSin: granYSin,
  135. granXCos: granXCos,
  136. granXSin: granXSin,
  137. nwCorner: nwCorner,
  138. };
  139. }
  140. /**
  141. * @private
  142. */
  143. RectangleGeometryLibrary.computeOptions = function (
  144. rectangle,
  145. granularity,
  146. rotation,
  147. stRotation,
  148. boundingRectangleScratch,
  149. nwCornerResult,
  150. stNwCornerResult
  151. ) {
  152. var east = rectangle.east;
  153. var west = rectangle.west;
  154. var north = rectangle.north;
  155. var south = rectangle.south;
  156. var northCap = false;
  157. var southCap = false;
  158. if (north === _Math.CesiumMath.PI_OVER_TWO) {
  159. northCap = true;
  160. }
  161. if (south === -_Math.CesiumMath.PI_OVER_TWO) {
  162. southCap = true;
  163. }
  164. var width;
  165. var height;
  166. var granularityX;
  167. var granularityY;
  168. var dx;
  169. var dy = north - south;
  170. if (west > east) {
  171. dx = _Math.CesiumMath.TWO_PI - west + east;
  172. } else {
  173. dx = east - west;
  174. }
  175. width = Math.ceil(dx / granularity) + 1;
  176. height = Math.ceil(dy / granularity) + 1;
  177. granularityX = dx / (width - 1);
  178. granularityY = dy / (height - 1);
  179. var nwCorner = Cartesian2.Rectangle.northwest(rectangle, nwCornerResult);
  180. var center = Cartesian2.Rectangle.center(rectangle, centerScratch);
  181. if (rotation !== 0 || stRotation !== 0) {
  182. if (center.longitude < nwCorner.longitude) {
  183. center.longitude += _Math.CesiumMath.TWO_PI;
  184. }
  185. centerCartesian = proj.project(center, centerCartesian);
  186. }
  187. var granYCos = granularityY;
  188. var granXCos = granularityX;
  189. var granYSin = 0.0;
  190. var granXSin = 0.0;
  191. var boundingRectangle = Cartesian2.Rectangle.clone(rectangle, boundingRectangleScratch);
  192. var computedOptions = {
  193. granYCos: granYCos,
  194. granYSin: granYSin,
  195. granXCos: granXCos,
  196. granXSin: granXSin,
  197. nwCorner: nwCorner,
  198. boundingRectangle: boundingRectangle,
  199. width: width,
  200. height: height,
  201. northCap: northCap,
  202. southCap: southCap,
  203. };
  204. if (rotation !== 0) {
  205. var rotationOptions = getRotationOptions(
  206. nwCorner,
  207. rotation,
  208. granularityX,
  209. granularityY,
  210. center,
  211. width,
  212. height
  213. );
  214. north = rotationOptions.north;
  215. south = rotationOptions.south;
  216. east = rotationOptions.east;
  217. west = rotationOptions.west;
  218. //>>includeStart('debug', pragmas.debug);
  219. if (
  220. north < -_Math.CesiumMath.PI_OVER_TWO ||
  221. north > _Math.CesiumMath.PI_OVER_TWO ||
  222. south < -_Math.CesiumMath.PI_OVER_TWO ||
  223. south > _Math.CesiumMath.PI_OVER_TWO
  224. ) {
  225. throw new Check.DeveloperError(
  226. "Rotated rectangle is invalid. It crosses over either the north or south pole."
  227. );
  228. }
  229. //>>includeEnd('debug')
  230. computedOptions.granYCos = rotationOptions.granYCos;
  231. computedOptions.granYSin = rotationOptions.granYSin;
  232. computedOptions.granXCos = rotationOptions.granXCos;
  233. computedOptions.granXSin = rotationOptions.granXSin;
  234. boundingRectangle.north = north;
  235. boundingRectangle.south = south;
  236. boundingRectangle.east = east;
  237. boundingRectangle.west = west;
  238. }
  239. if (stRotation !== 0) {
  240. rotation = rotation - stRotation;
  241. var stNwCorner = Cartesian2.Rectangle.northwest(boundingRectangle, stNwCornerResult);
  242. var stRotationOptions = getRotationOptions(
  243. stNwCorner,
  244. rotation,
  245. granularityX,
  246. granularityY,
  247. center,
  248. width,
  249. height
  250. );
  251. computedOptions.stGranYCos = stRotationOptions.granYCos;
  252. computedOptions.stGranXCos = stRotationOptions.granXCos;
  253. computedOptions.stGranYSin = stRotationOptions.granYSin;
  254. computedOptions.stGranXSin = stRotationOptions.granXSin;
  255. computedOptions.stNwCorner = stNwCorner;
  256. computedOptions.stWest = stRotationOptions.west;
  257. computedOptions.stSouth = stRotationOptions.south;
  258. }
  259. return computedOptions;
  260. };
  261. exports.RectangleGeometryLibrary = RectangleGeometryLibrary;
  262. });
  263. //# sourceMappingURL=RectangleGeometryLibrary-3ec48410.js.map