123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- /* This file is automatically rebuilt by the Cesium build process. */
- define(['./arrayRemoveDuplicates-06991c15', './Transforms-a076dbe6', './Matrix2-fc7e9822', './RuntimeError-c581ca93', './ComponentDatatype-4a60b8d6', './CoplanarPolygonGeometryLibrary-effcf1e1', './defaultValue-94c3e563', './GeometryAttribute-2ecf73f6', './GeometryAttributes-7df9bef6', './GeometryInstance-97bd792f', './GeometryPipeline-b4816e69', './IndexDatatype-db156785', './PolygonGeometryLibrary-6d3a5ed4', './_commonjsHelpers-3aae1032-f55dc0c4', './combine-761d9c3f', './WebGLConstants-7dccdc96', './OrientedBoundingBox-417528c0', './EllipsoidTangentPlane-d2c0c530', './AxisAlignedBoundingBox-8103739f', './IntersectionTests-5deed78b', './Plane-e20fba8c', './AttributeCompression-4d18cc04', './EncodedCartesian3-d3e254ea', './ArcType-0cf52f8c', './EllipsoidRhumbLine-daebc75b', './PolygonPipeline-cc031b9f'], (function (arrayRemoveDuplicates, Transforms, Matrix2, RuntimeError, ComponentDatatype, CoplanarPolygonGeometryLibrary, defaultValue, GeometryAttribute, GeometryAttributes, GeometryInstance, GeometryPipeline, IndexDatatype, PolygonGeometryLibrary, _commonjsHelpers3aae1032, combine, WebGLConstants, OrientedBoundingBox, EllipsoidTangentPlane, AxisAlignedBoundingBox, IntersectionTests, Plane, AttributeCompression, EncodedCartesian3, ArcType, EllipsoidRhumbLine, PolygonPipeline) { 'use strict';
- function createGeometryFromPositions(positions) {
- const length = positions.length;
- const flatPositions = new Float64Array(length * 3);
- const indices = IndexDatatype.IndexDatatype.createTypedArray(length, length * 2);
- let positionIndex = 0;
- let index = 0;
- for (let i = 0; i < length; i++) {
- const position = positions[i];
- flatPositions[positionIndex++] = position.x;
- flatPositions[positionIndex++] = position.y;
- flatPositions[positionIndex++] = position.z;
- indices[index++] = i;
- indices[index++] = (i + 1) % length;
- }
- const attributes = new GeometryAttributes.GeometryAttributes({
- position: new GeometryAttribute.GeometryAttribute({
- componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
- componentsPerAttribute: 3,
- values: flatPositions,
- }),
- });
- return new GeometryAttribute.Geometry({
- attributes: attributes,
- indices: indices,
- primitiveType: GeometryAttribute.PrimitiveType.LINES,
- });
- }
- /**
- * A description of the outline of a polygon composed of arbitrary coplanar positions.
- *
- * @alias CoplanarPolygonOutlineGeometry
- * @constructor
- *
- * @param {Object} options Object with the following properties:
- * @param {PolygonHierarchy} options.polygonHierarchy A polygon hierarchy that can include holes.
- *
- * @see CoplanarPolygonOutlineGeometry.createGeometry
- *
- * @example
- * const polygonOutline = new Cesium.CoplanarPolygonOutlineGeometry({
- * positions : Cesium.Cartesian3.fromDegreesArrayHeights([
- * -90.0, 30.0, 0.0,
- * -90.0, 30.0, 1000.0,
- * -80.0, 30.0, 1000.0,
- * -80.0, 30.0, 0.0
- * ])
- * });
- * const geometry = Cesium.CoplanarPolygonOutlineGeometry.createGeometry(polygonOutline);
- */
- function CoplanarPolygonOutlineGeometry(options) {
- options = defaultValue.defaultValue(options, defaultValue.defaultValue.EMPTY_OBJECT);
- const polygonHierarchy = options.polygonHierarchy;
- //>>includeStart('debug', pragmas.debug);
- RuntimeError.Check.defined("options.polygonHierarchy", polygonHierarchy);
- //>>includeEnd('debug');
- this._polygonHierarchy = polygonHierarchy;
- this._workerName = "createCoplanarPolygonOutlineGeometry";
- /**
- * The number of elements used to pack the object into an array.
- * @type {Number}
- */
- this.packedLength =
- PolygonGeometryLibrary.PolygonGeometryLibrary.computeHierarchyPackedLength(
- polygonHierarchy,
- Matrix2.Cartesian3
- ) + 1;
- }
- /**
- * A description of a coplanar polygon outline from an array of positions.
- *
- * @param {Object} options Object with the following properties:
- * @param {Cartesian3[]} options.positions An array of positions that defined the corner points of the polygon.
- * @returns {CoplanarPolygonOutlineGeometry}
- */
- CoplanarPolygonOutlineGeometry.fromPositions = function (options) {
- options = defaultValue.defaultValue(options, defaultValue.defaultValue.EMPTY_OBJECT);
- //>>includeStart('debug', pragmas.debug);
- RuntimeError.Check.defined("options.positions", options.positions);
- //>>includeEnd('debug');
- const newOptions = {
- polygonHierarchy: {
- positions: options.positions,
- },
- };
- return new CoplanarPolygonOutlineGeometry(newOptions);
- };
- /**
- * Stores the provided instance into the provided array.
- *
- * @param {CoplanarPolygonOutlineGeometry} 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
- */
- CoplanarPolygonOutlineGeometry.pack = function (value, array, startingIndex) {
- //>>includeStart('debug', pragmas.debug);
- RuntimeError.Check.typeOf.object("value", value);
- RuntimeError.Check.defined("array", array);
- //>>includeEnd('debug');
- startingIndex = defaultValue.defaultValue(startingIndex, 0);
- startingIndex = PolygonGeometryLibrary.PolygonGeometryLibrary.packPolygonHierarchy(
- value._polygonHierarchy,
- array,
- startingIndex,
- Matrix2.Cartesian3
- );
- array[startingIndex] = value.packedLength;
- return array;
- };
- const scratchOptions = {
- polygonHierarchy: {},
- };
- /**
- * 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 {CoplanarPolygonOutlineGeometry} [result] The object into which to store the result.
- * @returns {CoplanarPolygonOutlineGeometry} The modified result parameter or a new CoplanarPolygonOutlineGeometry instance if one was not provided.
- */
- CoplanarPolygonOutlineGeometry.unpack = function (
- array,
- startingIndex,
- result
- ) {
- //>>includeStart('debug', pragmas.debug);
- RuntimeError.Check.defined("array", array);
- //>>includeEnd('debug');
- startingIndex = defaultValue.defaultValue(startingIndex, 0);
- const polygonHierarchy = PolygonGeometryLibrary.PolygonGeometryLibrary.unpackPolygonHierarchy(
- array,
- startingIndex,
- Matrix2.Cartesian3
- );
- startingIndex = polygonHierarchy.startingIndex;
- delete polygonHierarchy.startingIndex;
- const packedLength = array[startingIndex];
- if (!defaultValue.defined(result)) {
- result = new CoplanarPolygonOutlineGeometry(scratchOptions);
- }
- result._polygonHierarchy = polygonHierarchy;
- result.packedLength = packedLength;
- return result;
- };
- /**
- * Computes the geometric representation of an arbitrary coplanar polygon, including its vertices, indices, and a bounding sphere.
- *
- * @param {CoplanarPolygonOutlineGeometry} polygonGeometry A description of the polygon.
- * @returns {Geometry|undefined} The computed vertices and indices.
- */
- CoplanarPolygonOutlineGeometry.createGeometry = function (polygonGeometry) {
- const polygonHierarchy = polygonGeometry._polygonHierarchy;
- let outerPositions = polygonHierarchy.positions;
- outerPositions = arrayRemoveDuplicates.arrayRemoveDuplicates(
- outerPositions,
- Matrix2.Cartesian3.equalsEpsilon,
- true
- );
- if (outerPositions.length < 3) {
- return;
- }
- const isValid = CoplanarPolygonGeometryLibrary.CoplanarPolygonGeometryLibrary.validOutline(outerPositions);
- if (!isValid) {
- return undefined;
- }
- const polygons = PolygonGeometryLibrary.PolygonGeometryLibrary.polygonOutlinesFromHierarchy(
- polygonHierarchy,
- false
- );
- if (polygons.length === 0) {
- return undefined;
- }
- const geometries = [];
- for (let i = 0; i < polygons.length; i++) {
- const geometryInstance = new GeometryInstance.GeometryInstance({
- geometry: createGeometryFromPositions(polygons[i]),
- });
- geometries.push(geometryInstance);
- }
- const geometry = GeometryPipeline.GeometryPipeline.combineInstances(geometries)[0];
- const boundingSphere = Transforms.BoundingSphere.fromPoints(polygonHierarchy.positions);
- return new GeometryAttribute.Geometry({
- attributes: geometry.attributes,
- indices: geometry.indices,
- primitiveType: geometry.primitiveType,
- boundingSphere: boundingSphere,
- });
- };
- function createCoplanarPolygonOutlineGeometry(polygonGeometry, offset) {
- if (defaultValue.defined(offset)) {
- polygonGeometry = CoplanarPolygonOutlineGeometry.unpack(
- polygonGeometry,
- offset
- );
- }
- polygonGeometry._ellipsoid = Matrix2.Ellipsoid.clone(polygonGeometry._ellipsoid);
- return CoplanarPolygonOutlineGeometry.createGeometry(polygonGeometry);
- }
- return createCoplanarPolygonOutlineGeometry;
- }));
|