123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- /**
- * Cesium - https://github.com/CesiumGS/cesium
- *
- * Copyright 2011-2020 Cesium Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * Columbus View (Pat. Pend.)
- *
- * Portions licensed separately.
- * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
- */
- define(['exports', './when-54c2dc71', './Check-6c0211bc', './Cartesian2-33d2657c', './Transforms-8be64844', './IntersectionTests-afc38163', './Plane-fa30fc46'], function (exports, when, Check, Cartesian2, Transforms, IntersectionTests, Plane) { 'use strict';
- /**
- * Creates an instance of an AxisAlignedBoundingBox from the minimum and maximum points along the x, y, and z axes.
- * @alias AxisAlignedBoundingBox
- * @constructor
- *
- * @param {Cartesian3} [minimum=Cartesian3.ZERO] The minimum point along the x, y, and z axes.
- * @param {Cartesian3} [maximum=Cartesian3.ZERO] The maximum point along the x, y, and z axes.
- * @param {Cartesian3} [center] The center of the box; automatically computed if not supplied.
- *
- * @see BoundingSphere
- * @see BoundingRectangle
- */
- function AxisAlignedBoundingBox(minimum, maximum, center) {
- /**
- * The minimum point defining the bounding box.
- * @type {Cartesian3}
- * @default {@link Cartesian3.ZERO}
- */
- this.minimum = Cartesian2.Cartesian3.clone(when.defaultValue(minimum, Cartesian2.Cartesian3.ZERO));
- /**
- * The maximum point defining the bounding box.
- * @type {Cartesian3}
- * @default {@link Cartesian3.ZERO}
- */
- this.maximum = Cartesian2.Cartesian3.clone(when.defaultValue(maximum, Cartesian2.Cartesian3.ZERO));
- //If center was not defined, compute it.
- if (!when.defined(center)) {
- center = Cartesian2.Cartesian3.midpoint(this.minimum, this.maximum, new Cartesian2.Cartesian3());
- } else {
- center = Cartesian2.Cartesian3.clone(center);
- }
- /**
- * The center point of the bounding box.
- * @type {Cartesian3}
- */
- this.center = center;
- }
- /**
- * Computes an instance of an AxisAlignedBoundingBox. The box is determined by
- * finding the points spaced the farthest apart on the x, y, and z axes.
- *
- * @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.
- * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
- * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if one was not provided.
- *
- * @example
- * // Compute an axis aligned bounding box enclosing two points.
- * var box = Cesium.AxisAlignedBoundingBox.fromPoints([new Cesium.Cartesian3(2, 0, 0), new Cesium.Cartesian3(-2, 0, 0)]);
- */
- AxisAlignedBoundingBox.fromPoints = function (positions, result) {
- if (!when.defined(result)) {
- result = new AxisAlignedBoundingBox();
- }
- if (!when.defined(positions) || positions.length === 0) {
- result.minimum = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.minimum);
- result.maximum = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.maximum);
- result.center = Cartesian2.Cartesian3.clone(Cartesian2.Cartesian3.ZERO, result.center);
- return result;
- }
- var minimumX = positions[0].x;
- var minimumY = positions[0].y;
- var minimumZ = positions[0].z;
- var maximumX = positions[0].x;
- var maximumY = positions[0].y;
- var maximumZ = positions[0].z;
- var length = positions.length;
- for (var i = 1; i < length; i++) {
- var p = positions[i];
- var x = p.x;
- var y = p.y;
- var z = p.z;
- minimumX = Math.min(x, minimumX);
- maximumX = Math.max(x, maximumX);
- minimumY = Math.min(y, minimumY);
- maximumY = Math.max(y, maximumY);
- minimumZ = Math.min(z, minimumZ);
- maximumZ = Math.max(z, maximumZ);
- }
- var minimum = result.minimum;
- minimum.x = minimumX;
- minimum.y = minimumY;
- minimum.z = minimumZ;
- var maximum = result.maximum;
- maximum.x = maximumX;
- maximum.y = maximumY;
- maximum.z = maximumZ;
- result.center = Cartesian2.Cartesian3.midpoint(minimum, maximum, result.center);
- return result;
- };
- /**
- * Duplicates a AxisAlignedBoundingBox instance.
- *
- * @param {AxisAlignedBoundingBox} box The bounding box to duplicate.
- * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
- * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if none was provided. (Returns undefined if box is undefined)
- */
- AxisAlignedBoundingBox.clone = function (box, result) {
- if (!when.defined(box)) {
- return undefined;
- }
- if (!when.defined(result)) {
- return new AxisAlignedBoundingBox(box.minimum, box.maximum, box.center);
- }
- result.minimum = Cartesian2.Cartesian3.clone(box.minimum, result.minimum);
- result.maximum = Cartesian2.Cartesian3.clone(box.maximum, result.maximum);
- result.center = Cartesian2.Cartesian3.clone(box.center, result.center);
- return result;
- };
- /**
- * Compares the provided AxisAlignedBoundingBox componentwise and returns
- * <code>true</code> if they are equal, <code>false</code> otherwise.
- *
- * @param {AxisAlignedBoundingBox} [left] The first AxisAlignedBoundingBox.
- * @param {AxisAlignedBoundingBox} [right] The second AxisAlignedBoundingBox.
- * @returns {Boolean} <code>true</code> if left and right are equal, <code>false</code> otherwise.
- */
- AxisAlignedBoundingBox.equals = function (left, right) {
- return (
- left === right ||
- (when.defined(left) &&
- when.defined(right) &&
- Cartesian2.Cartesian3.equals(left.center, right.center) &&
- Cartesian2.Cartesian3.equals(left.minimum, right.minimum) &&
- Cartesian2.Cartesian3.equals(left.maximum, right.maximum))
- );
- };
- var intersectScratch = new Cartesian2.Cartesian3();
- /**
- * Determines which side of a plane a box is located.
- *
- * @param {AxisAlignedBoundingBox} box The bounding box to test.
- * @param {Plane} plane The plane to test against.
- * @returns {Intersect} {@link Intersect.INSIDE} if the entire box is on the side of the plane
- * the normal is pointing, {@link Intersect.OUTSIDE} if the entire box is
- * on the opposite side, and {@link Intersect.INTERSECTING} if the box
- * intersects the plane.
- */
- AxisAlignedBoundingBox.intersectPlane = function (box, plane) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("box", box);
- Check.Check.defined("plane", plane);
- //>>includeEnd('debug');
- intersectScratch = Cartesian2.Cartesian3.subtract(
- box.maximum,
- box.minimum,
- intersectScratch
- );
- var h = Cartesian2.Cartesian3.multiplyByScalar(intersectScratch, 0.5, intersectScratch); //The positive half diagonal
- var normal = plane.normal;
- var e =
- h.x * Math.abs(normal.x) +
- h.y * Math.abs(normal.y) +
- h.z * Math.abs(normal.z);
- var s = Cartesian2.Cartesian3.dot(box.center, normal) + plane.distance; //signed distance from center
- if (s - e > 0) {
- return Transforms.Intersect.INSIDE;
- }
- if (s + e < 0) {
- //Not in front because normals point inward
- return Transforms.Intersect.OUTSIDE;
- }
- return Transforms.Intersect.INTERSECTING;
- };
- /**
- * Duplicates this AxisAlignedBoundingBox instance.
- *
- * @param {AxisAlignedBoundingBox} [result] The object onto which to store the result.
- * @returns {AxisAlignedBoundingBox} The modified result parameter or a new AxisAlignedBoundingBox instance if one was not provided.
- */
- AxisAlignedBoundingBox.prototype.clone = function (result) {
- return AxisAlignedBoundingBox.clone(this, result);
- };
- /**
- * Determines which side of a plane this box is located.
- *
- * @param {Plane} plane The plane to test against.
- * @returns {Intersect} {@link Intersect.INSIDE} if the entire box is on the side of the plane
- * the normal is pointing, {@link Intersect.OUTSIDE} if the entire box is
- * on the opposite side, and {@link Intersect.INTERSECTING} if the box
- * intersects the plane.
- */
- AxisAlignedBoundingBox.prototype.intersectPlane = function (plane) {
- return AxisAlignedBoundingBox.intersectPlane(this, plane);
- };
- /**
- * Compares this AxisAlignedBoundingBox against the provided AxisAlignedBoundingBox componentwise and returns
- * <code>true</code> if they are equal, <code>false</code> otherwise.
- *
- * @param {AxisAlignedBoundingBox} [right] The right hand side AxisAlignedBoundingBox.
- * @returns {Boolean} <code>true</code> if they are equal, <code>false</code> otherwise.
- */
- AxisAlignedBoundingBox.prototype.equals = function (right) {
- return AxisAlignedBoundingBox.equals(this, right);
- };
- var scratchCart4 = new Transforms.Cartesian4();
- /**
- * A plane tangent to the provided ellipsoid at the provided origin.
- * If origin is not on the surface of the ellipsoid, it's surface projection will be used.
- * If origin is at the center of the ellipsoid, an exception will be thrown.
- * @alias EllipsoidTangentPlane
- * @constructor
- *
- * @param {Cartesian3} origin The point on the surface of the ellipsoid where the tangent plane touches.
- * @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid to use.
- *
- * @exception {DeveloperError} origin must not be at the center of the ellipsoid.
- */
- function EllipsoidTangentPlane(origin, ellipsoid) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("origin", origin);
- //>>includeEnd('debug');
- ellipsoid = when.defaultValue(ellipsoid, Cartesian2.Ellipsoid.WGS84);
- origin = ellipsoid.scaleToGeodeticSurface(origin);
- //>>includeStart('debug', pragmas.debug);
- if (!when.defined(origin)) {
- throw new Check.DeveloperError(
- "origin must not be at the center of the ellipsoid."
- );
- }
- //>>includeEnd('debug');
- var eastNorthUp = Transforms.Transforms.eastNorthUpToFixedFrame(origin, ellipsoid);
- this._ellipsoid = ellipsoid;
- this._origin = origin;
- this._xAxis = Cartesian2.Cartesian3.fromCartesian4(
- Transforms.Matrix4.getColumn(eastNorthUp, 0, scratchCart4)
- );
- this._yAxis = Cartesian2.Cartesian3.fromCartesian4(
- Transforms.Matrix4.getColumn(eastNorthUp, 1, scratchCart4)
- );
- var normal = Cartesian2.Cartesian3.fromCartesian4(
- Transforms.Matrix4.getColumn(eastNorthUp, 2, scratchCart4)
- );
- this._plane = Plane.Plane.fromPointNormal(origin, normal);
- }
- Object.defineProperties(EllipsoidTangentPlane.prototype, {
- /**
- * Gets the ellipsoid.
- * @memberof EllipsoidTangentPlane.prototype
- * @type {Ellipsoid}
- */
- ellipsoid: {
- get: function () {
- return this._ellipsoid;
- },
- },
- /**
- * Gets the origin.
- * @memberof EllipsoidTangentPlane.prototype
- * @type {Cartesian3}
- */
- origin: {
- get: function () {
- return this._origin;
- },
- },
- /**
- * Gets the plane which is tangent to the ellipsoid.
- * @memberof EllipsoidTangentPlane.prototype
- * @readonly
- * @type {Plane}
- */
- plane: {
- get: function () {
- return this._plane;
- },
- },
- /**
- * Gets the local X-axis (east) of the tangent plane.
- * @memberof EllipsoidTangentPlane.prototype
- * @readonly
- * @type {Cartesian3}
- */
- xAxis: {
- get: function () {
- return this._xAxis;
- },
- },
- /**
- * Gets the local Y-axis (north) of the tangent plane.
- * @memberof EllipsoidTangentPlane.prototype
- * @readonly
- * @type {Cartesian3}
- */
- yAxis: {
- get: function () {
- return this._yAxis;
- },
- },
- /**
- * Gets the local Z-axis (up) of the tangent plane.
- * @memberof EllipsoidTangentPlane.prototype
- * @readonly
- * @type {Cartesian3}
- */
- zAxis: {
- get: function () {
- return this._plane.normal;
- },
- },
- });
- var tmp = new AxisAlignedBoundingBox();
- /**
- * Creates a new instance from the provided ellipsoid and the center
- * point of the provided Cartesians.
- *
- * @param {Cartesian3[]} cartesians The list of positions surrounding the center point.
- * @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid to use.
- */
- EllipsoidTangentPlane.fromPoints = function (cartesians, ellipsoid) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesians", cartesians);
- //>>includeEnd('debug');
- var box = AxisAlignedBoundingBox.fromPoints(cartesians, tmp);
- return new EllipsoidTangentPlane(box.center, ellipsoid);
- };
- var scratchProjectPointOntoPlaneRay = new IntersectionTests.Ray();
- var scratchProjectPointOntoPlaneCartesian3 = new Cartesian2.Cartesian3();
- /**
- * Computes the projection of the provided 3D position onto the 2D plane, radially outward from the {@link EllipsoidTangentPlane.ellipsoid} coordinate system origin.
- *
- * @param {Cartesian3} cartesian The point to project.
- * @param {Cartesian2} [result] The object onto which to store the result.
- * @returns {Cartesian2} The modified result parameter or a new Cartesian2 instance if none was provided. Undefined if there is no intersection point
- */
- EllipsoidTangentPlane.prototype.projectPointOntoPlane = function (
- cartesian,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesian", cartesian);
- //>>includeEnd('debug');
- var ray = scratchProjectPointOntoPlaneRay;
- ray.origin = cartesian;
- Cartesian2.Cartesian3.normalize(cartesian, ray.direction);
- var intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
- ray,
- this._plane,
- scratchProjectPointOntoPlaneCartesian3
- );
- if (!when.defined(intersectionPoint)) {
- Cartesian2.Cartesian3.negate(ray.direction, ray.direction);
- intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
- ray,
- this._plane,
- scratchProjectPointOntoPlaneCartesian3
- );
- }
- if (when.defined(intersectionPoint)) {
- var v = Cartesian2.Cartesian3.subtract(
- intersectionPoint,
- this._origin,
- intersectionPoint
- );
- var x = Cartesian2.Cartesian3.dot(this._xAxis, v);
- var y = Cartesian2.Cartesian3.dot(this._yAxis, v);
- if (!when.defined(result)) {
- return new Cartesian2.Cartesian2(x, y);
- }
- result.x = x;
- result.y = y;
- return result;
- }
- return undefined;
- };
- /**
- * Computes the projection of the provided 3D positions onto the 2D plane (where possible), radially outward from the global origin.
- * The resulting array may be shorter than the input array - if a single projection is impossible it will not be included.
- *
- * @see EllipsoidTangentPlane.projectPointOntoPlane
- *
- * @param {Cartesian3[]} cartesians The array of points to project.
- * @param {Cartesian2[]} [result] The array of Cartesian2 instances onto which to store results.
- * @returns {Cartesian2[]} The modified result parameter or a new array of Cartesian2 instances if none was provided.
- */
- EllipsoidTangentPlane.prototype.projectPointsOntoPlane = function (
- cartesians,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesians", cartesians);
- //>>includeEnd('debug');
- if (!when.defined(result)) {
- result = [];
- }
- var count = 0;
- var length = cartesians.length;
- for (var i = 0; i < length; i++) {
- var p = this.projectPointOntoPlane(cartesians[i], result[count]);
- if (when.defined(p)) {
- result[count] = p;
- count++;
- }
- }
- result.length = count;
- return result;
- };
- /**
- * Computes the projection of the provided 3D position onto the 2D plane, along the plane normal.
- *
- * @param {Cartesian3} cartesian The point to project.
- * @param {Cartesian2} [result] The object onto which to store the result.
- * @returns {Cartesian2} The modified result parameter or a new Cartesian2 instance if none was provided.
- */
- EllipsoidTangentPlane.prototype.projectPointToNearestOnPlane = function (
- cartesian,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesian", cartesian);
- //>>includeEnd('debug');
- if (!when.defined(result)) {
- result = new Cartesian2.Cartesian2();
- }
- var ray = scratchProjectPointOntoPlaneRay;
- ray.origin = cartesian;
- Cartesian2.Cartesian3.clone(this._plane.normal, ray.direction);
- var intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
- ray,
- this._plane,
- scratchProjectPointOntoPlaneCartesian3
- );
- if (!when.defined(intersectionPoint)) {
- Cartesian2.Cartesian3.negate(ray.direction, ray.direction);
- intersectionPoint = IntersectionTests.IntersectionTests.rayPlane(
- ray,
- this._plane,
- scratchProjectPointOntoPlaneCartesian3
- );
- }
- var v = Cartesian2.Cartesian3.subtract(
- intersectionPoint,
- this._origin,
- intersectionPoint
- );
- var x = Cartesian2.Cartesian3.dot(this._xAxis, v);
- var y = Cartesian2.Cartesian3.dot(this._yAxis, v);
- result.x = x;
- result.y = y;
- return result;
- };
- /**
- * Computes the projection of the provided 3D positions onto the 2D plane, along the plane normal.
- *
- * @see EllipsoidTangentPlane.projectPointToNearestOnPlane
- *
- * @param {Cartesian3[]} cartesians The array of points to project.
- * @param {Cartesian2[]} [result] The array of Cartesian2 instances onto which to store results.
- * @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>.
- */
- EllipsoidTangentPlane.prototype.projectPointsToNearestOnPlane = function (
- cartesians,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesians", cartesians);
- //>>includeEnd('debug');
- if (!when.defined(result)) {
- result = [];
- }
- var length = cartesians.length;
- result.length = length;
- for (var i = 0; i < length; i++) {
- result[i] = this.projectPointToNearestOnPlane(cartesians[i], result[i]);
- }
- return result;
- };
- var projectPointsOntoEllipsoidScratch = new Cartesian2.Cartesian3();
- /**
- * Computes the projection of the provided 2D position onto the 3D ellipsoid.
- *
- * @param {Cartesian2} cartesian The points to project.
- * @param {Cartesian3} [result] The Cartesian3 instance to store result.
- * @returns {Cartesian3} The modified result parameter or a new Cartesian3 instance if none was provided.
- */
- EllipsoidTangentPlane.prototype.projectPointOntoEllipsoid = function (
- cartesian,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesian", cartesian);
- //>>includeEnd('debug');
- if (!when.defined(result)) {
- result = new Cartesian2.Cartesian3();
- }
- var ellipsoid = this._ellipsoid;
- var origin = this._origin;
- var xAxis = this._xAxis;
- var yAxis = this._yAxis;
- var tmp = projectPointsOntoEllipsoidScratch;
- Cartesian2.Cartesian3.multiplyByScalar(xAxis, cartesian.x, tmp);
- result = Cartesian2.Cartesian3.add(origin, tmp, result);
- Cartesian2.Cartesian3.multiplyByScalar(yAxis, cartesian.y, tmp);
- Cartesian2.Cartesian3.add(result, tmp, result);
- ellipsoid.scaleToGeocentricSurface(result, result);
- return result;
- };
- /**
- * Computes the projection of the provided 2D positions onto the 3D ellipsoid.
- *
- * @param {Cartesian2[]} cartesians The array of points to project.
- * @param {Cartesian3[]} [result] The array of Cartesian3 instances onto which to store results.
- * @returns {Cartesian3[]} The modified result parameter or a new array of Cartesian3 instances if none was provided.
- */
- EllipsoidTangentPlane.prototype.projectPointsOntoEllipsoid = function (
- cartesians,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- Check.Check.defined("cartesians", cartesians);
- //>>includeEnd('debug');
- var length = cartesians.length;
- if (!when.defined(result)) {
- result = new Array(length);
- } else {
- result.length = length;
- }
- for (var i = 0; i < length; ++i) {
- result[i] = this.projectPointOntoEllipsoid(cartesians[i], result[i]);
- }
- return result;
- };
- exports.AxisAlignedBoundingBox = AxisAlignedBoundingBox;
- exports.EllipsoidTangentPlane = EllipsoidTangentPlane;
- });
- //# sourceMappingURL=EllipsoidTangentPlane-ce6e380f.js.map
|