/* This file is automatically rebuilt by the Cesium build process. */ define(['./defined-26bd4a03', './Check-da037458', './freezeObject-2d83f591', './defaultValue-f2e68450', './Math-fa6e45cb', './Cartesian2-2a723276', './defineProperties-6f7a50f2', './Transforms-65aba0a4', './RuntimeError-ad75c885', './WebGLConstants-497deb20', './ComponentDatatype-69643096', './GeometryAttribute-ed359d71', './when-ee12a2cb', './GeometryAttributes-eecc9f43', './IndexDatatype-3de60176', './IntersectionTests-c2360ffa', './Plane-a1a3fd52', './EllipsoidTangentPlane-10c6053a', './EllipsoidRhumbLine-c6cdbfd3', './PolygonPipeline-e486c11c', './EllipsoidGeodesic-53e988a6', './PolylinePipeline-b4161aaf', './WallGeometryLibrary-f30761f4'], function (defined, Check, freezeObject, defaultValue, _Math, Cartesian2, defineProperties, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, when, GeometryAttributes, IndexDatatype, IntersectionTests, Plane, EllipsoidTangentPlane, EllipsoidRhumbLine, PolygonPipeline, EllipsoidGeodesic, PolylinePipeline, WallGeometryLibrary) { 'use strict'; var scratchCartesian3Position1 = new Cartesian2.Cartesian3(); var scratchCartesian3Position2 = new Cartesian2.Cartesian3(); /** * A description of a wall outline. A wall is defined by a series of points, * which extrude down to the ground. Optionally, they can extrude downwards to a specified height. * * @alias WallOutlineGeometry * @constructor * * @param {Object} options Object with the following properties: * @param {Cartesian3[]} options.positions An array of Cartesian objects, which are the points of the wall. * @param {Number} [options.granularity=CesiumMath.RADIANS_PER_DEGREE] The distance, in radians, between each latitude and longitude. Determines the number of positions in the buffer. * @param {Number[]} [options.maximumHeights] An array parallel to positions that give the maximum height of the * wall at positions. If undefined, the height of each position in used. * @param {Number[]} [options.minimumHeights] An array parallel to positions that give the minimum height of the * wall at positions. If undefined, the height at each position is 0.0. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid for coordinate manipulation * * @exception {DeveloperError} positions length must be greater than or equal to 2. * @exception {DeveloperError} positions and maximumHeights must have the same length. * @exception {DeveloperError} positions and minimumHeights must have the same length. * * @see WallGeometry#createGeometry * @see WallGeometry#fromConstantHeight * * @example * // create a wall outline that spans from ground level to 10000 meters * var wall = new Cesium.WallOutlineGeometry({ * positions : Cesium.Cartesian3.fromDegreesArrayHeights([ * 19.0, 47.0, 10000.0, * 19.0, 48.0, 10000.0, * 20.0, 48.0, 10000.0, * 20.0, 47.0, 10000.0, * 19.0, 47.0, 10000.0 * ]) * }); * var geometry = Cesium.WallOutlineGeometry.createGeometry(wall); */ function WallOutlineGeometry(options) { options = defaultValue.defaultValue(options, defaultValue.defaultValue.EMPTY_OBJECT); var wallPositions = options.positions; var maximumHeights = options.maximumHeights; var minimumHeights = options.minimumHeights; //>>includeStart('debug', pragmas.debug); if (!defined.defined(wallPositions)) { throw new Check.DeveloperError('options.positions is required.'); } if (defined.defined(maximumHeights) && maximumHeights.length !== wallPositions.length) { throw new Check.DeveloperError('options.positions and options.maximumHeights must have the same length.'); } if (defined.defined(minimumHeights) && minimumHeights.length !== wallPositions.length) { throw new Check.DeveloperError('options.positions and options.minimumHeights must have the same length.'); } //>>includeEnd('debug'); var granularity = defaultValue.defaultValue(options.granularity, _Math.CesiumMath.RADIANS_PER_DEGREE); var ellipsoid = defaultValue.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84); this._positions = wallPositions; this._minimumHeights = minimumHeights; this._maximumHeights = maximumHeights; this._granularity = granularity; this._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid); this._workerName = 'createWallOutlineGeometry'; var numComponents = 1 + wallPositions.length * Cartesian2.Cartesian3.packedLength + 2; if (defined.defined(minimumHeights)) { numComponents += minimumHeights.length; } if (defined.defined(maximumHeights)) { numComponents += maximumHeights.length; } /** * The number of elements used to pack the object into an array. * @type {Number} */ this.packedLength = numComponents + Cartesian2.Ellipsoid.packedLength + 1; } /** * Stores the provided instance into the provided array. * * @param {WallOutlineGeometry} value The value to pack. * @param {Number[]} array The array to pack into. * @param {Number} [startingIndex=0] The index into the array at which to start packing the elements. * * @returns {Number[]} The array that was packed into */ WallOutlineGeometry.pack = function(value, array, startingIndex) { //>>includeStart('debug', pragmas.debug); if (!defined.defined(value)) { throw new Check.DeveloperError('value is required'); } if (!defined.defined(array)) { throw new Check.DeveloperError('array is required'); } //>>includeEnd('debug'); startingIndex = defaultValue.defaultValue(startingIndex, 0); var i; var positions = value._positions; var length = positions.length; array[startingIndex++] = length; for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) { Cartesian2.Cartesian3.pack(positions[i], array, startingIndex); } var minimumHeights = value._minimumHeights; length = defined.defined(minimumHeights) ? minimumHeights.length : 0; array[startingIndex++] = length; if (defined.defined(minimumHeights)) { for (i = 0; i < length; ++i) { array[startingIndex++] = minimumHeights[i]; } } var maximumHeights = value._maximumHeights; length = defined.defined(maximumHeights) ? maximumHeights.length : 0; array[startingIndex++] = length; if (defined.defined(maximumHeights)) { for (i = 0; i < length; ++i) { array[startingIndex++] = maximumHeights[i]; } } Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex); startingIndex += Cartesian2.Ellipsoid.packedLength; array[startingIndex] = value._granularity; return array; }; var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE); var scratchOptions = { positions : undefined, minimumHeights : undefined, maximumHeights : undefined, ellipsoid : scratchEllipsoid, granularity : undefined }; /** * Retrieves an instance from a packed array. * * @param {Number[]} array The packed array. * @param {Number} [startingIndex=0] The starting index of the element to be unpacked. * @param {WallOutlineGeometry} [result] The object into which to store the result. * @returns {WallOutlineGeometry} The modified result parameter or a new WallOutlineGeometry instance if one was not provided. */ WallOutlineGeometry.unpack = function(array, startingIndex, result) { //>>includeStart('debug', pragmas.debug); if (!defined.defined(array)) { throw new Check.DeveloperError('array is required'); } //>>includeEnd('debug'); startingIndex = defaultValue.defaultValue(startingIndex, 0); var i; var length = array[startingIndex++]; var positions = new Array(length); for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) { positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex); } length = array[startingIndex++]; var minimumHeights; if (length > 0) { minimumHeights = new Array(length); for (i = 0; i < length; ++i) { minimumHeights[i] = array[startingIndex++]; } } length = array[startingIndex++]; var maximumHeights; if (length > 0) { maximumHeights = new Array(length); for (i = 0; i < length; ++i) { maximumHeights[i] = array[startingIndex++]; } } var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid); startingIndex += Cartesian2.Ellipsoid.packedLength; var granularity = array[startingIndex]; if (!defined.defined(result)) { scratchOptions.positions = positions; scratchOptions.minimumHeights = minimumHeights; scratchOptions.maximumHeights = maximumHeights; scratchOptions.granularity = granularity; return new WallOutlineGeometry(scratchOptions); } result._positions = positions; result._minimumHeights = minimumHeights; result._maximumHeights = maximumHeights; result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid); result._granularity = granularity; return result; }; /** * A description of a walloutline. A wall is defined by a series of points, * which extrude down to the ground. Optionally, they can extrude downwards to a specified height. * * @param {Object} options Object with the following properties: * @param {Cartesian3[]} options.positions An array of Cartesian objects, which are the points of the wall. * @param {Number} [options.maximumHeight] A constant that defines the maximum height of the * wall at positions. If undefined, the height of each position in used. * @param {Number} [options.minimumHeight] A constant that defines the minimum height of the * wall at positions. If undefined, the height at each position is 0.0. * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid for coordinate manipulation * @returns {WallOutlineGeometry} * * * @example * // create a wall that spans from 10000 meters to 20000 meters * var wall = Cesium.WallOutlineGeometry.fromConstantHeights({ * positions : Cesium.Cartesian3.fromDegreesArray([ * 19.0, 47.0, * 19.0, 48.0, * 20.0, 48.0, * 20.0, 47.0, * 19.0, 47.0, * ]), * minimumHeight : 20000.0, * maximumHeight : 10000.0 * }); * var geometry = Cesium.WallOutlineGeometry.createGeometry(wall); * * @see WallOutlineGeometry#createGeometry */ WallOutlineGeometry.fromConstantHeights = function(options) { options = defaultValue.defaultValue(options, defaultValue.defaultValue.EMPTY_OBJECT); var positions = options.positions; //>>includeStart('debug', pragmas.debug); if (!defined.defined(positions)) { throw new Check.DeveloperError('options.positions is required.'); } //>>includeEnd('debug'); var minHeights; var maxHeights; var min = options.minimumHeight; var max = options.maximumHeight; var doMin = defined.defined(min); var doMax = defined.defined(max); if (doMin || doMax) { var length = positions.length; minHeights = (doMin) ? new Array(length) : undefined; maxHeights = (doMax) ? new Array(length) : undefined; for (var i = 0; i < length; ++i) { if (doMin) { minHeights[i] = min; } if (doMax) { maxHeights[i] = max; } } } var newOptions = { positions : positions, maximumHeights : maxHeights, minimumHeights : minHeights, ellipsoid : options.ellipsoid }; return new WallOutlineGeometry(newOptions); }; /** * Computes the geometric representation of a wall outline, including its vertices, indices, and a bounding sphere. * * @param {WallOutlineGeometry} wallGeometry A description of the wall outline. * @returns {Geometry|undefined} The computed vertices and indices. */ WallOutlineGeometry.createGeometry = function(wallGeometry) { var wallPositions = wallGeometry._positions; var minimumHeights = wallGeometry._minimumHeights; var maximumHeights = wallGeometry._maximumHeights; var granularity = wallGeometry._granularity; var ellipsoid = wallGeometry._ellipsoid; var pos = WallGeometryLibrary.WallGeometryLibrary.computePositions(ellipsoid, wallPositions, maximumHeights, minimumHeights, granularity, false); if (!defined.defined(pos)) { return; } var bottomPositions = pos.bottomPositions; var topPositions = pos.topPositions; var length = topPositions.length; var size = length * 2; var positions = new Float64Array(size); var positionIndex = 0; // add lower and upper points one after the other, lower // points being even and upper points being odd length /= 3; var i; for (i = 0; i < length; ++i) { var i3 = i * 3; var topPosition = Cartesian2.Cartesian3.fromArray(topPositions, i3, scratchCartesian3Position1); var bottomPosition = Cartesian2.Cartesian3.fromArray(bottomPositions, i3, scratchCartesian3Position2); // insert the lower point positions[positionIndex++] = bottomPosition.x; positions[positionIndex++] = bottomPosition.y; positions[positionIndex++] = bottomPosition.z; // insert the upper point positions[positionIndex++] = topPosition.x; positions[positionIndex++] = topPosition.y; positions[positionIndex++] = topPosition.z; } var attributes = new GeometryAttributes.GeometryAttributes({ position : new GeometryAttribute.GeometryAttribute({ componentDatatype : ComponentDatatype.ComponentDatatype.DOUBLE, componentsPerAttribute : 3, values : positions }) }); var numVertices = size / 3; size = 2 * numVertices - 4 + numVertices; var indices = IndexDatatype.IndexDatatype.createTypedArray(numVertices, size); var edgeIndex = 0; for (i = 0; i < numVertices - 2; i += 2) { var LL = i; var LR = i + 2; var pl = Cartesian2.Cartesian3.fromArray(positions, LL * 3, scratchCartesian3Position1); var pr = Cartesian2.Cartesian3.fromArray(positions, LR * 3, scratchCartesian3Position2); if (Cartesian2.Cartesian3.equalsEpsilon(pl, pr, _Math.CesiumMath.EPSILON10)) { continue; } var UL = i + 1; var UR = i + 3; indices[edgeIndex++] = UL; indices[edgeIndex++] = LL; indices[edgeIndex++] = UL; indices[edgeIndex++] = UR; indices[edgeIndex++] = LL; indices[edgeIndex++] = LR; } indices[edgeIndex++] = numVertices - 2; indices[edgeIndex++] = numVertices - 1; return new GeometryAttribute.Geometry({ attributes : attributes, indices : indices, primitiveType : GeometryAttribute.PrimitiveType.LINES, boundingSphere : new Transforms.BoundingSphere.fromVertices(positions) }); }; function createWallOutlineGeometry(wallGeometry, offset) { if (defined.defined(offset)) { wallGeometry = WallOutlineGeometry.unpack(wallGeometry, offset); } wallGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(wallGeometry._ellipsoid); return WallOutlineGeometry.createGeometry(wallGeometry); } return createWallOutlineGeometry; });