EllipsoidTangentPlane-ce6e380f.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  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', './Cartesian2-33d2657c', './Transforms-8be64844', './IntersectionTests-afc38163', './Plane-fa30fc46'], function (exports, when, Check, Cartesian2, Transforms, IntersectionTests, Plane) { 'use strict';
  24. /**
  25. * Creates an instance of an AxisAlignedBoundingBox from the minimum and maximum points along the x, y, and z axes.
  26. * @alias AxisAlignedBoundingBox
  27. * @constructor
  28. *
  29. * @param {Cartesian3} [minimum=Cartesian3.ZERO] The minimum point along the x, y, and z axes.
  30. * @param {Cartesian3} [maximum=Cartesian3.ZERO] The maximum point along the x, y, and z axes.
  31. * @param {Cartesian3} [center] The center of the box; automatically computed if not supplied.
  32. *
  33. * @see BoundingSphere
  34. * @see BoundingRectangle
  35. */
  36. function AxisAlignedBoundingBox(minimum, maximum, center) {
  37. /**
  38. * The minimum point defining the bounding box.
  39. * @type {Cartesian3}
  40. * @default {@link Cartesian3.ZERO}
  41. */
  42. this.minimum = Cartesian2.Cartesian3.clone(when.defaultValue(minimum, Cartesian2.Cartesian3.ZERO));
  43. /**
  44. * The maximum point defining the bounding box.
  45. * @type {Cartesian3}
  46. * @default {@link Cartesian3.ZERO}
  47. */
  48. this.maximum = Cartesian2.Cartesian3.clone(when.defaultValue(maximum, Cartesian2.Cartesian3.ZERO));
  49. //If center was not defined, compute it.
  50. if (!when.defined(center)) {
  51. center = Cartesian2.Cartesian3.midpoint(this.minimum, this.maximum, new Cartesian2.Cartesian3());
  52. } else {
  53. center = Cartesian2.Cartesian3.clone(center);
  54. }
  55. /**
  56. * The center point of the bounding box.
  57. * @type {Cartesian3}
  58. */
  59. this.center = center;
  60. }
  61. /**
  62. * Computes an instance of an AxisAlignedBoundingBox. The box is determined by
  63. * finding the points spaced the farthest apart on the x, y, and z axes.
  64. *
  65. * @param {Cartesian3[]} positions List of points that the bounding box will enclose. Each point must have a <code>x</code>, <code>y</code>, and <code>z</code> properties.
  66. * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
  67. * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if one was not provided.
  68. *
  69. * @example
  70. * // Compute an axis aligned bounding box enclosing two points.
  71. * var box = Cesium.AxisAlignedBoundingBox.fromPoints([new Cesium.Cartesian3(2, 0, 0), new Cesium.Cartesian3(-2, 0, 0)]);
  72. */
  73. AxisAlignedBoundingBox.fromPoints = function (positions, result) {
  74. if (!when.defined(result)) {
  75. result = new AxisAlignedBoundingBox();
  76. }
  77. if (!when.defined(positions) || positions.length === 0) {
  78. result.minimum = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.minimum);
  79. result.maximum = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.maximum);
  80. result.center = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.center);
  81. return result;
  82. }
  83. var minimumX = positions[0].x;
  84. var minimumY = positions[0].y;
  85. var minimumZ = positions[0].z;
  86. var maximumX = positions[0].x;
  87. var maximumY = positions[0].y;
  88. var maximumZ = positions[0].z;
  89. var length = positions.length;
  90. for (var i = 1; i < length; i++) {
  91. var p = positions[i];
  92. var x = p.x;
  93. var y = p.y;
  94. var z = p.z;
  95. minimumX = Math.min(x, minimumX);
  96. maximumX = Math.max(x, maximumX);
  97. minimumY = Math.min(y, minimumY);
  98. maximumY = Math.max(y, maximumY);
  99. minimumZ = Math.min(z, minimumZ);
  100. maximumZ = Math.max(z, maximumZ);
  101. }
  102. var minimum = result.minimum;
  103. minimum.x = minimumX;
  104. minimum.y = minimumY;
  105. minimum.z = minimumZ;
  106. var maximum = result.maximum;
  107. maximum.x = maximumX;
  108. maximum.y = maximumY;
  109. maximum.z = maximumZ;
  110. result.center = Cartesian2.Cartesian3.midpoint(minimum, maximum, result.center);
  111. return result;
  112. };
  113. /**
  114. * Duplicates a AxisAlignedBoundingBox instance.
  115. *
  116. * @param {AxisAlignedBoundingBox} box The bounding box to duplicate.
  117. * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
  118. * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if none was provided. (Returns undefined if box is undefined)
  119. */
  120. AxisAlignedBoundingBox.clone = function (box, result) {
  121. if (!when.defined(box)) {
  122. return undefined;
  123. }
  124. if (!when.defined(result)) {
  125. return new AxisAlignedBoundingBox(box.minimum, box.maximum, box.center);
  126. }
  127. result.minimum = Cartesian2.Cartesian3.clone(box.minimum, result.minimum);
  128. result.maximum = Cartesian2.Cartesian3.clone(box.maximum, result.maximum);
  129. result.center = Cartesian2.Cartesian3.clone(box.center, result.center);
  130. return result;
  131. };
  132. /**
  133. * Compares the provided AxisAlignedBoundingBox componentwise and returns
  134. * <code>true</code> if they are equal, <code>false</code> otherwise.
  135. *
  136. * @param {AxisAlignedBoundingBox} [left] The first AxisAlignedBoundingBox.
  137. * @param {AxisAlignedBoundingBox} [right] The second AxisAlignedBoundingBox.
  138. * @returns {Boolean} <code>true</code> if left and right are equal, <code>false</code> otherwise.
  139. */
  140. AxisAlignedBoundingBox.equals = function (left, right) {
  141. return (
  142. left === right ||
  143. (when.defined(left) &&
  144. when.defined(right) &&
  145. Cartesian2.Cartesian3.equals(left.center, right.center) &&
  146. Cartesian2.Cartesian3.equals(left.minimum, right.minimum) &&
  147. Cartesian2.Cartesian3.equals(left.maximum, right.maximum))
  148. );
  149. };
  150. var intersectScratch = new Cartesian2.Cartesian3();
  151. /**
  152. * Determines which side of a plane a box is located.
  153. *
  154. * @param {AxisAlignedBoundingBox} box The bounding box to test.
  155. * @param {Plane} plane The plane to test against.
  156. * @returns {Intersect} {@link Intersect.INSIDE} if the entire box is on the side of the plane
  157. * the normal is pointing, {@link Intersect.OUTSIDE} if the entire box is
  158. * on the opposite side, and {@link Intersect.INTERSECTING} if the box
  159. * intersects the plane.
  160. */
  161. AxisAlignedBoundingBox.intersectPlane = function (box, plane) {
  162. //>>includeStart('debug', pragmas.debug);
  163. Check.Check.defined("box", box);
  164. Check.Check.defined("plane", plane);
  165. //>>includeEnd('debug');
  166. intersectScratch = Cartesian2.Cartesian3.subtract(
  167. box.maximum,
  168. box.minimum,
  169. intersectScratch
  170. );
  171. var h = Cartesian2.Cartesian3.multiplyByScalar(intersectScratch, 0.5, intersectScratch); //The positive half diagonal
  172. var normal = plane.normal;
  173. var e =
  174. h.x * Math.abs(normal.x) +
  175. h.y * Math.abs(normal.y) +
  176. h.z * Math.abs(normal.z);
  177. var s = Cartesian2.Cartesian3.dot(box.center, normal) + plane.distance; //signed distance from center
  178. if (s - e > 0) {
  179. return Transforms.Intersect.INSIDE;
  180. }
  181. if (s + e < 0) {
  182. //Not in front because normals point inward
  183. return Transforms.Intersect.OUTSIDE;
  184. }
  185. return Transforms.Intersect.INTERSECTING;
  186. };
  187. /**
  188. * Duplicates this AxisAlignedBoundingBox instance.
  189. *
  190. * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
  191. * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if one was not provided.
  192. */
  193. AxisAlignedBoundingBox.prototype.clone = function (result) {
  194. return AxisAlignedBoundingBox.clone(this, result);
  195. };
  196. /**
  197. * Determines which side of a plane this box is located.
  198. *
  199. * @param {Plane} plane The plane to test against.
  200. * @returns {Intersect} {@link Intersect.INSIDE} if the entire box is on the side of the plane
  201. * the normal is pointing, {@link Intersect.OUTSIDE} if the entire box is
  202. * on the opposite side, and {@link Intersect.INTERSECTING} if the box
  203. * intersects the plane.
  204. */
  205. AxisAlignedBoundingBox.prototype.intersectPlane = function (plane) {
  206. return AxisAlignedBoundingBox.intersectPlane(this, plane);
  207. };
  208. /**
  209. * Compares this AxisAlignedBoundingBox against the provided AxisAlignedBoundingBox componentwise and returns
  210. * <code>true</code> if they are equal, <code>false</code> otherwise.
  211. *
  212. * @param {AxisAlignedBoundingBox} [right] The right hand side AxisAlignedBoundingBox.
  213. * @returns {Boolean} <code>true</code> if they are equal, <code>false</code> otherwise.
  214. */
  215. AxisAlignedBoundingBox.prototype.equals = function (right) {
  216. return AxisAlignedBoundingBox.equals(this, right);
  217. };
  218. var scratchCart4 = new Transforms.Cartesian4();
  219. /**
  220. * A plane tangent to the provided ellipsoid at the provided origin.
  221. * If origin is not on the surface of the ellipsoid, it's surface projection will be used.
  222. * If origin is at the center of the ellipsoid, an exception will be thrown.
  223. * @alias EllipsoidTangentPlane
  224. * @constructor
  225. *
  226. * @param {Cartesian3} origin The point on the surface of the ellipsoid where the tangent plane touches.
  227. * @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid to use.
  228. *
  229. * @exception {DeveloperError} origin must not be at the center of the ellipsoid.
  230. */
  231. function EllipsoidTangentPlane(origin, ellipsoid) {
  232. //>>includeStart('debug', pragmas.debug);
  233. Check.Check.defined("origin", origin);
  234. //>>includeEnd('debug');
  235. ellipsoid = when.defaultValue(ellipsoid, Cartesian2.Ellipsoid.WGS84);
  236. origin = ellipsoid.scaleToGeodeticSurface(origin);
  237. //>>includeStart('debug', pragmas.debug);
  238. if (!when.defined(origin)) {
  239. throw new Check.DeveloperError(
  240. "origin must not be at the center of the ellipsoid."
  241. );
  242. }
  243. //>>includeEnd('debug');
  244. var eastNorthUp = Transforms.Transforms.eastNorthUpToFixedFrame(origin, ellipsoid);
  245. this._ellipsoid = ellipsoid;
  246. this._origin = origin;
  247. this._xAxis = Cartesian2.Cartesian3.fromCartesian4(
  248. Transforms.Matrix4.getColumn(eastNorthUp, 0, scratchCart4)
  249. );
  250. this._yAxis = Cartesian2.Cartesian3.fromCartesian4(
  251. Transforms.Matrix4.getColumn(eastNorthUp, 1, scratchCart4)
  252. );
  253. var normal = Cartesian2.Cartesian3.fromCartesian4(
  254. Transforms.Matrix4.getColumn(eastNorthUp, 2, scratchCart4)
  255. );
  256. this._plane = Plane.Plane.fromPointNormal(origin, normal);
  257. }
  258. Object.defineProperties(EllipsoidTangentPlane.prototype, {
  259. /**
  260. * Gets the ellipsoid.
  261. * @memberof EllipsoidTangentPlane.prototype
  262. * @type {Ellipsoid}
  263. */
  264. ellipsoid: {
  265. get: function () {
  266. return this._ellipsoid;
  267. },
  268. },
  269. /**
  270. * Gets the origin.
  271. * @memberof EllipsoidTangentPlane.prototype
  272. * @type {Cartesian3}
  273. */
  274. origin: {
  275. get: function () {
  276. return this._origin;
  277. },
  278. },
  279. /**
  280. * Gets the plane which is tangent to the ellipsoid.
  281. * @memberof EllipsoidTangentPlane.prototype
  282. * @readonly
  283. * @type {Plane}
  284. */
  285. plane: {
  286. get: function () {
  287. return this._plane;
  288. },
  289. },
  290. /**
  291. * Gets the local X-axis (east) of the tangent plane.
  292. * @memberof EllipsoidTangentPlane.prototype
  293. * @readonly
  294. * @type {Cartesian3}
  295. */
  296. xAxis: {
  297. get: function () {
  298. return this._xAxis;
  299. },
  300. },
  301. /**
  302. * Gets the local Y-axis (north) of the tangent plane.
  303. * @memberof EllipsoidTangentPlane.prototype
  304. * @readonly
  305. * @type {Cartesian3}
  306. */
  307. yAxis: {
  308. get: function () {
  309. return this._yAxis;
  310. },
  311. },
  312. /**
  313. * Gets the local Z-axis (up) of the tangent plane.
  314. * @memberof EllipsoidTangentPlane.prototype
  315. * @readonly
  316. * @type {Cartesian3}
  317. */
  318. zAxis: {
  319. get: function () {
  320. return this._plane.normal;
  321. },
  322. },
  323. });
  324. var tmp = new AxisAlignedBoundingBox();
  325. /**
  326. * Creates a new instance from the provided ellipsoid and the center
  327. * point of the provided Cartesians.
  328. *
  329. * @param {Cartesian3[]} cartesians The list of positions surrounding the center point.
  330. * @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid to use.
  331. */
  332. EllipsoidTangentPlane.fromPoints = function (cartesians, ellipsoid) {
  333. //>>includeStart('debug', pragmas.debug);
  334. Check.Check.defined("cartesians", cartesians);
  335. //>>includeEnd('debug');
  336. var box = AxisAlignedBoundingBox.fromPoints(cartesians, tmp);
  337. return new EllipsoidTangentPlane(box.center, ellipsoid);
  338. };
  339. var scratchProjectPointOntoPlaneRay = new IntersectionTests.Ray();
  340. var scratchProjectPointOntoPlaneCartesian3 = new Cartesian2.Cartesian3();
  341. /**
  342. * Computes the projection of the provided 3D position onto the 2D plane, radially outward from the {@link EllipsoidTangentPlane.ellipsoid} coordinate system origin.
  343. *
  344. * @param {Cartesian3} cartesian The point to project.
  345. * @param {Cartesian2} [result] The object onto which to store the result.
  346. * @returns {Cartesian2} The modified result parameter or a new Cartesian2 instance if none was provided. Undefined if there is no intersection point
  347. */
  348. EllipsoidTangentPlane.prototype.projectPointOntoPlane = function (
  349. cartesian,
  350. result
  351. ) {
  352. //>>includeStart('debug', pragmas.debug);
  353. Check.Check.defined("cartesian", cartesian);
  354. //>>includeEnd('debug');
  355. var ray = scratchProjectPointOntoPlaneRay;
  356. ray.origin = cartesian;
  357. Cartesian2.Cartesian3.normalize(cartesian, ray.direction);
  358. var intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
  359. ray,
  360. this._plane,
  361. scratchProjectPointOntoPlaneCartesian3
  362. );
  363. if (!when.defined(intersectionPoint)) {
  364. Cartesian2.Cartesian3.negate(ray.direction, ray.direction);
  365. intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
  366. ray,
  367. this._plane,
  368. scratchProjectPointOntoPlaneCartesian3
  369. );
  370. }
  371. if (when.defined(intersectionPoint)) {
  372. var v = Cartesian2.Cartesian3.subtract(
  373. intersectionPoint,
  374. this._origin,
  375. intersectionPoint
  376. );
  377. var x = Cartesian2.Cartesian3.dot(this._xAxis, v);
  378. var y = Cartesian2.Cartesian3.dot(this._yAxis, v);
  379. if (!when.defined(result)) {
  380. return new Cartesian2.Cartesian2(x, y);
  381. }
  382. result.x = x;
  383. result.y = y;
  384. return result;
  385. }
  386. return undefined;
  387. };
  388. /**
  389. * Computes the projection of the provided 3D positions onto the 2D plane (where possible), radially outward from the global origin.
  390. * The resulting array may be shorter than the input array - if a single projection is impossible it will not be included.
  391. *
  392. * @see EllipsoidTangentPlane.projectPointOntoPlane
  393. *
  394. * @param {Cartesian3[]} cartesians The array of points to project.
  395. * @param {Cartesian2[]} [result] The array of Cartesian2 instances onto which to store results.
  396. * @returns {Cartesian2[]} The modified result parameter or a new array of Cartesian2 instances if none was provided.
  397. */
  398. EllipsoidTangentPlane.prototype.projectPointsOntoPlane = function (
  399. cartesians,
  400. result
  401. ) {
  402. //>>includeStart('debug', pragmas.debug);
  403. Check.Check.defined("cartesians", cartesians);
  404. //>>includeEnd('debug');
  405. if (!when.defined(result)) {
  406. result = [];
  407. }
  408. var count = 0;
  409. var length = cartesians.length;
  410. for (var i = 0; i < length; i++) {
  411. var p = this.projectPointOntoPlane(cartesians[i], result[count]);
  412. if (when.defined(p)) {
  413. result[count] = p;
  414. count++;
  415. }
  416. }
  417. result.length = count;
  418. return result;
  419. };
  420. /**
  421. * Computes the projection of the provided 3D position onto the 2D plane, along the plane normal.
  422. *
  423. * @param {Cartesian3} cartesian The point to project.
  424. * @param {Cartesian2} [result] The object onto which to store the result.
  425. * @returns {Cartesian2} The modified result parameter or a new Cartesian2 instance if none was provided.
  426. */
  427. EllipsoidTangentPlane.prototype.projectPointToNearestOnPlane = function (
  428. cartesian,
  429. result
  430. ) {
  431. //>>includeStart('debug', pragmas.debug);
  432. Check.Check.defined("cartesian", cartesian);
  433. //>>includeEnd('debug');
  434. if (!when.defined(result)) {
  435. result = new Cartesian2.Cartesian2();
  436. }
  437. var ray = scratchProjectPointOntoPlaneRay;
  438. ray.origin = cartesian;
  439. Cartesian2.Cartesian3.clone(this._plane.normal, ray.direction);
  440. var intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
  441. ray,
  442. this._plane,
  443. scratchProjectPointOntoPlaneCartesian3
  444. );
  445. if (!when.defined(intersectionPoint)) {
  446. Cartesian2.Cartesian3.negate(ray.direction, ray.direction);
  447. intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
  448. ray,
  449. this._plane,
  450. scratchProjectPointOntoPlaneCartesian3
  451. );
  452. }
  453. var v = Cartesian2.Cartesian3.subtract(
  454. intersectionPoint,
  455. this._origin,
  456. intersectionPoint
  457. );
  458. var x = Cartesian2.Cartesian3.dot(this._xAxis, v);
  459. var y = Cartesian2.Cartesian3.dot(this._yAxis, v);
  460. result.x = x;
  461. result.y = y;
  462. return result;
  463. };
  464. /**
  465. * Computes the projection of the provided 3D positions onto the 2D plane, along the plane normal.
  466. *
  467. * @see EllipsoidTangentPlane.projectPointToNearestOnPlane
  468. *
  469. * @param {Cartesian3[]} cartesians The array of points to project.
  470. * @param {Cartesian2[]} [result] The array of Cartesian2 instances onto which to store results.
  471. * @returns {Cartesian2[]} The modified result parameter or a new array of Cartesian2 instances if none was provided. This will have the same length as <code>cartesians</code>.
  472. */
  473. EllipsoidTangentPlane.prototype.projectPointsToNearestOnPlane = function (
  474. cartesians,
  475. result
  476. ) {
  477. //>>includeStart('debug', pragmas.debug);
  478. Check.Check.defined("cartesians", cartesians);
  479. //>>includeEnd('debug');
  480. if (!when.defined(result)) {
  481. result = [];
  482. }
  483. var length = cartesians.length;
  484. result.length = length;
  485. for (var i = 0; i < length; i++) {
  486. result[i] = this.projectPointToNearestOnPlane(cartesians[i], result[i]);
  487. }
  488. return result;
  489. };
  490. var projectPointsOntoEllipsoidScratch = new Cartesian2.Cartesian3();
  491. /**
  492. * Computes the projection of the provided 2D position onto the 3D ellipsoid.
  493. *
  494. * @param {Cartesian2} cartesian The points to project.
  495. * @param {Cartesian3} [result] The Cartesian3 instance to store result.
  496. * @returns {Cartesian3} The modified result parameter or a new Cartesian3 instance if none was provided.
  497. */
  498. EllipsoidTangentPlane.prototype.projectPointOntoEllipsoid = function (
  499. cartesian,
  500. result
  501. ) {
  502. //>>includeStart('debug', pragmas.debug);
  503. Check.Check.defined("cartesian", cartesian);
  504. //>>includeEnd('debug');
  505. if (!when.defined(result)) {
  506. result = new Cartesian2.Cartesian3();
  507. }
  508. var ellipsoid = this._ellipsoid;
  509. var origin = this._origin;
  510. var xAxis = this._xAxis;
  511. var yAxis = this._yAxis;
  512. var tmp = projectPointsOntoEllipsoidScratch;
  513. Cartesian2.Cartesian3.multiplyByScalar(xAxis, cartesian.x, tmp);
  514. result = Cartesian2.Cartesian3.add(origin, tmp, result);
  515. Cartesian2.Cartesian3.multiplyByScalar(yAxis, cartesian.y, tmp);
  516. Cartesian2.Cartesian3.add(result, tmp, result);
  517. ellipsoid.scaleToGeocentricSurface(result, result);
  518. return result;
  519. };
  520. /**
  521. * Computes the projection of the provided 2D positions onto the 3D ellipsoid.
  522. *
  523. * @param {Cartesian2[]} cartesians The array of points to project.
  524. * @param {Cartesian3[]} [result] The array of Cartesian3 instances onto which to store results.
  525. * @returns {Cartesian3[]} The modified result parameter or a new array of Cartesian3 instances if none was provided.
  526. */
  527. EllipsoidTangentPlane.prototype.projectPointsOntoEllipsoid = function (
  528. cartesians,
  529. result
  530. ) {
  531. //>>includeStart('debug', pragmas.debug);
  532. Check.Check.defined("cartesians", cartesians);
  533. //>>includeEnd('debug');
  534. var length = cartesians.length;
  535. if (!when.defined(result)) {
  536. result = new Array(length);
  537. } else {
  538. result.length = length;
  539. }
  540. for (var i = 0; i < length; ++i) {
  541. result[i] = this.projectPointOntoEllipsoid(cartesians[i], result[i]);
  542. }
  543. return result;
  544. };
  545. exports.AxisAlignedBoundingBox = AxisAlignedBoundingBox;
  546. exports.EllipsoidTangentPlane = EllipsoidTangentPlane;
  547. });
  548. //# sourceMappingURL=EllipsoidTangentPlane-ce6e380f.js.map