123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- /* 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', './arrayRemoveDuplicates-dd708d81', './BoundingRectangle-36e6acca', './EllipsoidTangentPlane-10c6053a', './EllipsoidRhumbLine-c6cdbfd3', './PolygonPipeline-e486c11c', './PolylineVolumeGeometryLibrary-57289189', './EllipsoidGeodesic-53e988a6', './PolylinePipeline-b4161aaf'], function (defined, Check, freezeObject, defaultValue, _Math, Cartesian2, defineProperties, Transforms, RuntimeError, WebGLConstants, ComponentDatatype, GeometryAttribute, when, GeometryAttributes, IndexDatatype, IntersectionTests, Plane, arrayRemoveDuplicates, BoundingRectangle, EllipsoidTangentPlane, EllipsoidRhumbLine, PolygonPipeline, PolylineVolumeGeometryLibrary, EllipsoidGeodesic, PolylinePipeline) { 'use strict';
- function computeAttributes(positions, shape) {
- var attributes = new GeometryAttributes.GeometryAttributes();
- attributes.position = new GeometryAttribute.GeometryAttribute({
- componentDatatype : ComponentDatatype.ComponentDatatype.DOUBLE,
- componentsPerAttribute : 3,
- values : positions
- });
- var shapeLength = shape.length;
- var vertexCount = attributes.position.values.length / 3;
- var positionLength = positions.length / 3;
- var shapeCount = positionLength / shapeLength;
- var indices = IndexDatatype.IndexDatatype.createTypedArray(vertexCount, 2 * shapeLength * (shapeCount + 1));
- var i, j;
- var index = 0;
- i = 0;
- var offset = i * shapeLength;
- for (j = 0; j < shapeLength - 1; j++) {
- indices[index++] = j + offset;
- indices[index++] = j + offset + 1;
- }
- indices[index++] = shapeLength - 1 + offset;
- indices[index++] = offset;
- i = shapeCount - 1;
- offset = i * shapeLength;
- for (j = 0; j < shapeLength - 1; j++) {
- indices[index++] = j + offset;
- indices[index++] = j + offset + 1;
- }
- indices[index++] = shapeLength - 1 + offset;
- indices[index++] = offset;
- for (i = 0; i < shapeCount - 1; i++) {
- var firstOffset = shapeLength * i;
- var secondOffset = firstOffset + shapeLength;
- for (j = 0; j < shapeLength; j++) {
- indices[index++] = j + firstOffset;
- indices[index++] = j + secondOffset;
- }
- }
- var geometry = new GeometryAttribute.Geometry({
- attributes : attributes,
- indices : IndexDatatype.IndexDatatype.createTypedArray(vertexCount, indices),
- boundingSphere : Transforms.BoundingSphere.fromVertices(positions),
- primitiveType : GeometryAttribute.PrimitiveType.LINES
- });
- return geometry;
- }
- /**
- * A description of a polyline with a volume (a 2D shape extruded along a polyline).
- *
- * @alias PolylineVolumeOutlineGeometry
- * @constructor
- *
- * @param {Object} options Object with the following properties:
- * @param {Cartesian3[]} options.polylinePositions An array of positions that define the center of the polyline volume.
- * @param {Cartesian2[]} options.shapePositions An array of positions that define the shape to be extruded along the polyline
- * @param {Ellipsoid} [options.ellipsoid=Ellipsoid.WGS84] The ellipsoid to be used as a reference.
- * @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 {CornerType} [options.cornerType=CornerType.ROUNDED] Determines the style of the corners.
- *
- * @see PolylineVolumeOutlineGeometry#createGeometry
- *
- * @example
- * function computeCircle(radius) {
- * var positions = [];
- * for (var i = 0; i < 360; i++) {
- * var radians = Cesium.Math.toRadians(i);
- * positions.push(new Cesium.Cartesian2(radius * Math.cos(radians), radius * Math.sin(radians)));
- * }
- * return positions;
- * }
- *
- * var volumeOutline = new Cesium.PolylineVolumeOutlineGeometry({
- * polylinePositions : Cesium.Cartesian3.fromDegreesArray([
- * -72.0, 40.0,
- * -70.0, 35.0
- * ]),
- * shapePositions : computeCircle(100000.0)
- * });
- */
- function PolylineVolumeOutlineGeometry(options) {
- options = defaultValue.defaultValue(options, defaultValue.defaultValue.EMPTY_OBJECT);
- var positions = options.polylinePositions;
- var shape = options.shapePositions;
- //>>includeStart('debug', pragmas.debug);
- if (!defined.defined(positions)) {
- throw new Check.DeveloperError('options.polylinePositions is required.');
- }
- if (!defined.defined(shape)) {
- throw new Check.DeveloperError('options.shapePositions is required.');
- }
- //>>includeEnd('debug');
- this._positions = positions;
- this._shape = shape;
- this._ellipsoid = Cartesian2.Ellipsoid.clone(defaultValue.defaultValue(options.ellipsoid, Cartesian2.Ellipsoid.WGS84));
- this._cornerType = defaultValue.defaultValue(options.cornerType, PolylineVolumeGeometryLibrary.CornerType.ROUNDED);
- this._granularity = defaultValue.defaultValue(options.granularity, _Math.CesiumMath.RADIANS_PER_DEGREE);
- this._workerName = 'createPolylineVolumeOutlineGeometry';
- var numComponents = 1 + positions.length * Cartesian2.Cartesian3.packedLength;
- numComponents += 1 + shape.length * Cartesian2.Cartesian2.packedLength;
- /**
- * The number of elements used to pack the object into an array.
- * @type {Number}
- */
- this.packedLength = numComponents + Cartesian2.Ellipsoid.packedLength + 2;
- }
- /**
- * Stores the provided instance into the provided array.
- *
- * @param {PolylineVolumeOutlineGeometry} 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
- */
- PolylineVolumeOutlineGeometry.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 shape = value._shape;
- length = shape.length;
- array[startingIndex++] = length;
- for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
- Cartesian2.Cartesian2.pack(shape[i], array, startingIndex);
- }
- Cartesian2.Ellipsoid.pack(value._ellipsoid, array, startingIndex);
- startingIndex += Cartesian2.Ellipsoid.packedLength;
- array[startingIndex++] = value._cornerType;
- array[startingIndex] = value._granularity;
- return array;
- };
- var scratchEllipsoid = Cartesian2.Ellipsoid.clone(Cartesian2.Ellipsoid.UNIT_SPHERE);
- var scratchOptions = {
- polylinePositions : undefined,
- shapePositions : undefined,
- ellipsoid : scratchEllipsoid,
- height : undefined,
- cornerType : undefined,
- 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 {PolylineVolumeOutlineGeometry} [result] The object into which to store the result.
- * @returns {PolylineVolumeOutlineGeometry} The modified result parameter or a new PolylineVolumeOutlineGeometry instance if one was not provided.
- */
- PolylineVolumeOutlineGeometry.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 shape = new Array(length);
- for (i = 0; i < length; ++i, startingIndex += Cartesian2.Cartesian2.packedLength) {
- shape[i] = Cartesian2.Cartesian2.unpack(array, startingIndex);
- }
- var ellipsoid = Cartesian2.Ellipsoid.unpack(array, startingIndex, scratchEllipsoid);
- startingIndex += Cartesian2.Ellipsoid.packedLength;
- var cornerType = array[startingIndex++];
- var granularity = array[startingIndex];
- if (!defined.defined(result)) {
- scratchOptions.polylinePositions = positions;
- scratchOptions.shapePositions = shape;
- scratchOptions.cornerType = cornerType;
- scratchOptions.granularity = granularity;
- return new PolylineVolumeOutlineGeometry(scratchOptions);
- }
- result._positions = positions;
- result._shape = shape;
- result._ellipsoid = Cartesian2.Ellipsoid.clone(ellipsoid, result._ellipsoid);
- result._cornerType = cornerType;
- result._granularity = granularity;
- return result;
- };
- var brScratch = new BoundingRectangle.BoundingRectangle();
- /**
- * Computes the geometric representation of the outline of a polyline with a volume, including its vertices, indices, and a bounding sphere.
- *
- * @param {PolylineVolumeOutlineGeometry} polylineVolumeOutlineGeometry A description of the polyline volume outline.
- * @returns {Geometry|undefined} The computed vertices and indices.
- */
- PolylineVolumeOutlineGeometry.createGeometry = function(polylineVolumeOutlineGeometry) {
- var positions = polylineVolumeOutlineGeometry._positions;
- var cleanPositions = arrayRemoveDuplicates.arrayRemoveDuplicates(positions, Cartesian2.Cartesian3.equalsEpsilon);
- var shape2D = polylineVolumeOutlineGeometry._shape;
- shape2D = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.removeDuplicatesFromShape(shape2D);
- if (cleanPositions.length < 2 || shape2D.length < 3) {
- return undefined;
- }
- if (PolygonPipeline.PolygonPipeline.computeWindingOrder2D(shape2D) === PolygonPipeline.WindingOrder.CLOCKWISE) {
- shape2D.reverse();
- }
- var boundingRectangle = BoundingRectangle.BoundingRectangle.fromPoints(shape2D, brScratch);
- var computedPositions = PolylineVolumeGeometryLibrary.PolylineVolumeGeometryLibrary.computePositions(cleanPositions, shape2D, boundingRectangle, polylineVolumeOutlineGeometry, false);
- return computeAttributes(computedPositions, shape2D);
- };
- function createPolylineVolumeOutlineGeometry(polylineVolumeOutlineGeometry, offset) {
- if (defined.defined(offset)) {
- polylineVolumeOutlineGeometry = PolylineVolumeOutlineGeometry.unpack(polylineVolumeOutlineGeometry, offset);
- }
- polylineVolumeOutlineGeometry._ellipsoid = Cartesian2.Ellipsoid.clone(polylineVolumeOutlineGeometry._ellipsoid);
- return PolylineVolumeOutlineGeometry.createGeometry(polylineVolumeOutlineGeometry);
- }
- return createPolylineVolumeOutlineGeometry;
- });
|