123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685 |
- /* This file is automatically rebuilt by the Cesium build process. */
- define(['exports', './defined-26bd4a03', './defaultValue-f2e68450', './Math-fa6e45cb', './Cartesian2-2a723276', './defineProperties-6f7a50f2', './Transforms-65aba0a4', './ComponentDatatype-69643096', './GeometryAttribute-ed359d71', './GeometryAttributes-eecc9f43', './GeometryPipeline-f0b16df6', './IndexDatatype-3de60176', './arrayRemoveDuplicates-dd708d81', './ArcType-d521909b', './EllipsoidRhumbLine-c6cdbfd3', './PolygonPipeline-e486c11c'], function (exports, defined, defaultValue, _Math, Cartesian2, defineProperties, Transforms, ComponentDatatype, GeometryAttribute, GeometryAttributes, GeometryPipeline, IndexDatatype, arrayRemoveDuplicates, ArcType, EllipsoidRhumbLine, PolygonPipeline) { 'use strict';
- /**
- * A queue that can enqueue items at the end, and dequeue items from the front.
- *
- * @alias Queue
- * @constructor
- */
- function Queue() {
- this._array = [];
- this._offset = 0;
- this._length = 0;
- }
- defineProperties.defineProperties(Queue.prototype, {
- /**
- * The length of the queue.
- *
- * @memberof Queue.prototype
- *
- * @type {Number}
- * @readonly
- */
- length : {
- get : function() {
- return this._length;
- }
- }
- });
- /**
- * Enqueues the specified item.
- *
- * @param {*} item The item to enqueue.
- */
- Queue.prototype.enqueue = function(item) {
- this._array.push(item);
- this._length++;
- };
- /**
- * Dequeues an item. Returns undefined if the queue is empty.
- *
- * @returns {*} The the dequeued item.
- */
- Queue.prototype.dequeue = function() {
- if (this._length === 0) {
- return undefined;
- }
- var array = this._array;
- var offset = this._offset;
- var item = array[offset];
- array[offset] = undefined;
- offset++;
- if ((offset > 10) && (offset * 2 > array.length)) {
- //compact array
- this._array = array.slice(offset);
- offset = 0;
- }
- this._offset = offset;
- this._length--;
- return item;
- };
- /**
- * Returns the item at the front of the queue. Returns undefined if the queue is empty.
- *
- * @returns {*} The item at the front of the queue.
- */
- Queue.prototype.peek = function() {
- if (this._length === 0) {
- return undefined;
- }
- return this._array[this._offset];
- };
- /**
- * Check whether this queue contains the specified item.
- *
- * @param {*} item The item to search for.
- */
- Queue.prototype.contains = function(item) {
- return this._array.indexOf(item) !== -1;
- };
- /**
- * Remove all items from the queue.
- */
- Queue.prototype.clear = function() {
- this._array.length = this._offset = this._length = 0;
- };
- /**
- * Sort the items in the queue in-place.
- *
- * @param {Queue~Comparator} compareFunction A function that defines the sort order.
- */
- Queue.prototype.sort = function(compareFunction) {
- if (this._offset > 0) {
- //compact array
- this._array = this._array.slice(this._offset);
- this._offset = 0;
- }
- this._array.sort(compareFunction);
- };
- /**
- * @private
- */
- var PolygonGeometryLibrary = {};
- PolygonGeometryLibrary.computeHierarchyPackedLength = function(polygonHierarchy) {
- var numComponents = 0;
- var stack = [polygonHierarchy];
- while (stack.length > 0) {
- var hierarchy = stack.pop();
- if (!defined.defined(hierarchy)) {
- continue;
- }
- numComponents += 2;
- var positions = hierarchy.positions;
- var holes = hierarchy.holes;
- if (defined.defined(positions)) {
- numComponents += positions.length * Cartesian2.Cartesian3.packedLength;
- }
- if (defined.defined(holes)) {
- var length = holes.length;
- for (var i = 0; i < length; ++i) {
- stack.push(holes[i]);
- }
- }
- }
- return numComponents;
- };
- PolygonGeometryLibrary.packPolygonHierarchy = function(polygonHierarchy, array, startingIndex) {
- var stack = [polygonHierarchy];
- while (stack.length > 0) {
- var hierarchy = stack.pop();
- if (!defined.defined(hierarchy)) {
- continue;
- }
- var positions = hierarchy.positions;
- var holes = hierarchy.holes;
- array[startingIndex++] = defined.defined(positions) ? positions.length : 0;
- array[startingIndex++] = defined.defined(holes) ? holes.length : 0;
- if (defined.defined(positions)) {
- var positionsLength = positions.length;
- for (var i = 0; i < positionsLength; ++i, startingIndex += 3) {
- Cartesian2.Cartesian3.pack(positions[i], array, startingIndex);
- }
- }
- if (defined.defined(holes)) {
- var holesLength = holes.length;
- for (var j = 0; j < holesLength; ++j) {
- stack.push(holes[j]);
- }
- }
- }
- return startingIndex;
- };
- PolygonGeometryLibrary.unpackPolygonHierarchy = function(array, startingIndex) {
- var positionsLength = array[startingIndex++];
- var holesLength = array[startingIndex++];
- var positions = new Array(positionsLength);
- var holes = holesLength > 0 ? new Array(holesLength) : undefined;
- for (var i = 0; i < positionsLength; ++i, startingIndex += Cartesian2.Cartesian3.packedLength) {
- positions[i] = Cartesian2.Cartesian3.unpack(array, startingIndex);
- }
- for (var j = 0; j < holesLength; ++j) {
- holes[j] = PolygonGeometryLibrary.unpackPolygonHierarchy(array, startingIndex);
- startingIndex = holes[j].startingIndex;
- delete holes[j].startingIndex;
- }
- return {
- positions : positions,
- holes : holes,
- startingIndex : startingIndex
- };
- };
- var distanceScratch = new Cartesian2.Cartesian3();
- function getPointAtDistance(p0, p1, distance, length) {
- Cartesian2.Cartesian3.subtract(p1, p0, distanceScratch);
- Cartesian2.Cartesian3.multiplyByScalar(distanceScratch, distance / length, distanceScratch);
- Cartesian2.Cartesian3.add(p0, distanceScratch, distanceScratch);
- return [distanceScratch.x, distanceScratch.y, distanceScratch.z];
- }
- PolygonGeometryLibrary.subdivideLineCount = function(p0, p1, minDistance) {
- var distance = Cartesian2.Cartesian3.distance(p0, p1);
- var n = distance / minDistance;
- var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
- return Math.pow(2, countDivide);
- };
- var scratchCartographic0 = new Cartesian2.Cartographic();
- var scratchCartographic1 = new Cartesian2.Cartographic();
- var scratchCartographic2 = new Cartesian2.Cartographic();
- var scratchCartesian0 = new Cartesian2.Cartesian3();
- PolygonGeometryLibrary.subdivideRhumbLineCount = function(ellipsoid, p0, p1, minDistance) {
- var c0 = ellipsoid.cartesianToCartographic(p0, scratchCartographic0);
- var c1 = ellipsoid.cartesianToCartographic(p1, scratchCartographic1);
- var rhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine(c0, c1, ellipsoid);
- var n = rhumb.surfaceDistance / minDistance;
- var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
- return Math.pow(2, countDivide);
- };
- PolygonGeometryLibrary.subdivideLine = function(p0, p1, minDistance, result) {
- var numVertices = PolygonGeometryLibrary.subdivideLineCount(p0, p1, minDistance);
- var length = Cartesian2.Cartesian3.distance(p0, p1);
- var distanceBetweenVertices = length / numVertices;
- if (!defined.defined(result)) {
- result = [];
- }
- var positions = result;
- positions.length = numVertices * 3;
- var index = 0;
- for ( var i = 0; i < numVertices; i++) {
- var p = getPointAtDistance(p0, p1, i * distanceBetweenVertices, length);
- positions[index++] = p[0];
- positions[index++] = p[1];
- positions[index++] = p[2];
- }
- return positions;
- };
- PolygonGeometryLibrary.subdivideRhumbLine = function(ellipsoid, p0, p1, minDistance, result) {
- var c0 = ellipsoid.cartesianToCartographic(p0, scratchCartographic0);
- var c1 = ellipsoid.cartesianToCartographic(p1, scratchCartographic1);
- var rhumb = new EllipsoidRhumbLine.EllipsoidRhumbLine(c0, c1, ellipsoid);
- var n = rhumb.surfaceDistance / minDistance;
- var countDivide = Math.max(0, Math.ceil(_Math.CesiumMath.log2(n)));
- var numVertices = Math.pow(2, countDivide);
- var distanceBetweenVertices = rhumb.surfaceDistance / numVertices;
- if (!defined.defined(result)) {
- result = [];
- }
- var positions = result;
- positions.length = numVertices * 3;
- var index = 0;
- for ( var i = 0; i < numVertices; i++) {
- var c = rhumb.interpolateUsingSurfaceDistance(i * distanceBetweenVertices, scratchCartographic2);
- var p = ellipsoid.cartographicToCartesian(c, scratchCartesian0);
- positions[index++] = p.x;
- positions[index++] = p.y;
- positions[index++] = p.z;
- }
- return positions;
- };
- var scaleToGeodeticHeightN1 = new Cartesian2.Cartesian3();
- var scaleToGeodeticHeightN2 = new Cartesian2.Cartesian3();
- var scaleToGeodeticHeightP1 = new Cartesian2.Cartesian3();
- var scaleToGeodeticHeightP2 = new Cartesian2.Cartesian3();
- PolygonGeometryLibrary.scaleToGeodeticHeightExtruded = function(geometry, maxHeight, minHeight, ellipsoid, perPositionHeight) {
- ellipsoid = defaultValue.defaultValue(ellipsoid, Cartesian2.Ellipsoid.WGS84);
- var n1 = scaleToGeodeticHeightN1;
- var n2 = scaleToGeodeticHeightN2;
- var p = scaleToGeodeticHeightP1;
- var p2 = scaleToGeodeticHeightP2;
- if (defined.defined(geometry) && defined.defined(geometry.attributes) && defined.defined(geometry.attributes.position)) {
- var positions = geometry.attributes.position.values;
- var length = positions.length / 2;
- for ( var i = 0; i < length; i += 3) {
- Cartesian2.Cartesian3.fromArray(positions, i, p);
- ellipsoid.geodeticSurfaceNormal(p, n1);
- p2 = ellipsoid.scaleToGeodeticSurface(p, p2);
- n2 = Cartesian2.Cartesian3.multiplyByScalar(n1, minHeight, n2);
- n2 = Cartesian2.Cartesian3.add(p2, n2, n2);
- positions[i + length] = n2.x;
- positions[i + 1 + length] = n2.y;
- positions[i + 2 + length] = n2.z;
- if (perPositionHeight) {
- p2 = Cartesian2.Cartesian3.clone(p, p2);
- }
- n2 = Cartesian2.Cartesian3.multiplyByScalar(n1, maxHeight, n2);
- n2 = Cartesian2.Cartesian3.add(p2, n2, n2);
- positions[i] = n2.x;
- positions[i + 1] = n2.y;
- positions[i + 2] = n2.z;
- }
- }
- return geometry;
- };
- PolygonGeometryLibrary.polygonOutlinesFromHierarchy = function(polygonHierarchy, scaleToEllipsoidSurface, ellipsoid) {
- // create from a polygon hierarchy
- // Algorithm adapted from http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf
- var polygons = [];
- var queue = new Queue();
- queue.enqueue(polygonHierarchy);
- var i;
- var j;
- var length;
- while (queue.length !== 0) {
- var outerNode = queue.dequeue();
- var outerRing = outerNode.positions;
- if (scaleToEllipsoidSurface) {
- length = outerRing.length;
- for (i = 0; i < length; i++) {
- ellipsoid.scaleToGeodeticSurface(outerRing[i], outerRing[i]);
- }
- }
- outerRing = arrayRemoveDuplicates.arrayRemoveDuplicates(outerRing, Cartesian2.Cartesian3.equalsEpsilon, true);
- if (outerRing.length < 3) {
- continue;
- }
- var numChildren = outerNode.holes ? outerNode.holes.length : 0;
- // The outer polygon contains inner polygons
- for (i = 0; i < numChildren; i++) {
- var hole = outerNode.holes[i];
- var holePositions = hole.positions;
- if (scaleToEllipsoidSurface) {
- length = holePositions.length;
- for (j = 0; j < length; ++j) {
- ellipsoid.scaleToGeodeticSurface(holePositions[j], holePositions[j]);
- }
- }
- holePositions = arrayRemoveDuplicates.arrayRemoveDuplicates(holePositions, Cartesian2.Cartesian3.equalsEpsilon, true);
- if (holePositions.length < 3) {
- continue;
- }
- polygons.push(holePositions);
- var numGrandchildren = 0;
- if (defined.defined(hole.holes)) {
- numGrandchildren = hole.holes.length;
- }
- for (j = 0; j < numGrandchildren; j++) {
- queue.enqueue(hole.holes[j]);
- }
- }
- polygons.push(outerRing);
- }
- return polygons;
- };
- PolygonGeometryLibrary.polygonsFromHierarchy = function(polygonHierarchy, projectPointsTo2D, scaleToEllipsoidSurface, ellipsoid) {
- // create from a polygon hierarchy
- // Algorithm adapted from http://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf
- var hierarchy = [];
- var polygons = [];
- var queue = new Queue();
- queue.enqueue(polygonHierarchy);
- while (queue.length !== 0) {
- var outerNode = queue.dequeue();
- var outerRing = outerNode.positions;
- var holes = outerNode.holes;
- var i;
- var length;
- if (scaleToEllipsoidSurface) {
- length = outerRing.length;
- for (i = 0; i < length; i++) {
- ellipsoid.scaleToGeodeticSurface(outerRing[i], outerRing[i]);
- }
- }
- outerRing = arrayRemoveDuplicates.arrayRemoveDuplicates(outerRing, Cartesian2.Cartesian3.equalsEpsilon, true);
- if (outerRing.length < 3) {
- continue;
- }
- var positions2D = projectPointsTo2D(outerRing);
- if (!defined.defined(positions2D)) {
- continue;
- }
- var holeIndices = [];
- var originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(positions2D);
- if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
- positions2D.reverse();
- outerRing = outerRing.slice().reverse();
- }
- var positions = outerRing.slice();
- var numChildren = defined.defined(holes) ? holes.length : 0;
- var polygonHoles = [];
- var j;
- for (i = 0; i < numChildren; i++) {
- var hole = holes[i];
- var holePositions = hole.positions;
- if (scaleToEllipsoidSurface) {
- length = holePositions.length;
- for (j = 0; j < length; ++j) {
- ellipsoid.scaleToGeodeticSurface(holePositions[j], holePositions[j]);
- }
- }
- holePositions = arrayRemoveDuplicates.arrayRemoveDuplicates(holePositions, Cartesian2.Cartesian3.equalsEpsilon, true);
- if (holePositions.length < 3) {
- continue;
- }
- var holePositions2D = projectPointsTo2D(holePositions);
- if (!defined.defined(holePositions2D)) {
- continue;
- }
- originalWindingOrder = PolygonPipeline.PolygonPipeline.computeWindingOrder2D(holePositions2D);
- if (originalWindingOrder === PolygonPipeline.WindingOrder.CLOCKWISE) {
- holePositions2D.reverse();
- holePositions = holePositions.slice().reverse();
- }
- polygonHoles.push(holePositions);
- holeIndices.push(positions.length);
- positions = positions.concat(holePositions);
- positions2D = positions2D.concat(holePositions2D);
- var numGrandchildren = 0;
- if (defined.defined(hole.holes)) {
- numGrandchildren = hole.holes.length;
- }
- for (j = 0; j < numGrandchildren; j++) {
- queue.enqueue(hole.holes[j]);
- }
- }
- hierarchy.push({
- outerRing : outerRing,
- holes : polygonHoles
- });
- polygons.push({
- positions : positions,
- positions2D : positions2D,
- holes : holeIndices
- });
- }
- return {
- hierarchy : hierarchy,
- polygons : polygons
- };
- };
- var computeBoundingRectangleCartesian2 = new Cartesian2.Cartesian2();
- var computeBoundingRectangleCartesian3 = new Cartesian2.Cartesian3();
- var computeBoundingRectangleQuaternion = new Transforms.Quaternion();
- var computeBoundingRectangleMatrix3 = new Transforms.Matrix3();
- PolygonGeometryLibrary.computeBoundingRectangle = function (planeNormal, projectPointTo2D, positions, angle, result) {
- var rotation = Transforms.Quaternion.fromAxisAngle(planeNormal, angle, computeBoundingRectangleQuaternion);
- var textureMatrix = Transforms.Matrix3.fromQuaternion(rotation, computeBoundingRectangleMatrix3);
- var minX = Number.POSITIVE_INFINITY;
- var maxX = Number.NEGATIVE_INFINITY;
- var minY = Number.POSITIVE_INFINITY;
- var maxY = Number.NEGATIVE_INFINITY;
- var length = positions.length;
- for ( var i = 0; i < length; ++i) {
- var p = Cartesian2.Cartesian3.clone(positions[i], computeBoundingRectangleCartesian3);
- Transforms.Matrix3.multiplyByVector(textureMatrix, p, p);
- var st = projectPointTo2D(p, computeBoundingRectangleCartesian2);
- if (defined.defined(st)) {
- minX = Math.min(minX, st.x);
- maxX = Math.max(maxX, st.x);
- minY = Math.min(minY, st.y);
- maxY = Math.max(maxY, st.y);
- }
- }
- result.x = minX;
- result.y = minY;
- result.width = maxX - minX;
- result.height = maxY - minY;
- return result;
- };
- PolygonGeometryLibrary.createGeometryFromPositions = function(ellipsoid, polygon, granularity, perPositionHeight, vertexFormat, arcType) {
- var indices = PolygonPipeline.PolygonPipeline.triangulate(polygon.positions2D, polygon.holes);
- /* If polygon is completely unrenderable, just use the first three vertices */
- if (indices.length < 3) {
- indices = [0, 1, 2];
- }
- var positions = polygon.positions;
- if (perPositionHeight) {
- var length = positions.length;
- var flattenedPositions = new Array(length * 3);
- var index = 0;
- for ( var i = 0; i < length; i++) {
- var p = positions[i];
- flattenedPositions[index++] = p.x;
- flattenedPositions[index++] = p.y;
- flattenedPositions[index++] = p.z;
- }
- var geometry = new GeometryAttribute.Geometry({
- attributes : {
- position : new GeometryAttribute.GeometryAttribute({
- componentDatatype : ComponentDatatype.ComponentDatatype.DOUBLE,
- componentsPerAttribute : 3,
- values : flattenedPositions
- })
- },
- indices : indices,
- primitiveType : GeometryAttribute.PrimitiveType.TRIANGLES
- });
- if (vertexFormat.normal) {
- return GeometryPipeline.GeometryPipeline.computeNormal(geometry);
- }
- return geometry;
- }
- if (arcType === ArcType.ArcType.GEODESIC) {
- return PolygonPipeline.PolygonPipeline.computeSubdivision(ellipsoid, positions, indices, granularity);
- } else if (arcType === ArcType.ArcType.RHUMB) {
- return PolygonPipeline.PolygonPipeline.computeRhumbLineSubdivision(ellipsoid, positions, indices, granularity);
- }
- };
- var computeWallIndicesSubdivided = [];
- var p1Scratch = new Cartesian2.Cartesian3();
- var p2Scratch = new Cartesian2.Cartesian3();
- PolygonGeometryLibrary.computeWallGeometry = function(positions, ellipsoid, granularity, perPositionHeight, arcType) {
- var edgePositions;
- var topEdgeLength;
- var i;
- var p1;
- var p2;
- var length = positions.length;
- var index = 0;
- if (!perPositionHeight) {
- var minDistance = _Math.CesiumMath.chordLength(granularity, ellipsoid.maximumRadius);
- var numVertices = 0;
- if (arcType === ArcType.ArcType.GEODESIC) {
- for (i = 0; i < length; i++) {
- numVertices += PolygonGeometryLibrary.subdivideLineCount(positions[i], positions[(i + 1) % length], minDistance);
- }
- } else if (arcType === ArcType.ArcType.RHUMB) {
- for (i = 0; i < length; i++) {
- numVertices += PolygonGeometryLibrary.subdivideRhumbLineCount(ellipsoid, positions[i], positions[(i + 1) % length], minDistance);
- }
- }
- topEdgeLength = (numVertices + length) * 3;
- edgePositions = new Array(topEdgeLength * 2);
- for (i = 0; i < length; i++) {
- p1 = positions[i];
- p2 = positions[(i + 1) % length];
- var tempPositions;
- if (arcType === ArcType.ArcType.GEODESIC) {
- tempPositions = PolygonGeometryLibrary.subdivideLine(p1, p2, minDistance, computeWallIndicesSubdivided);
- } else if (arcType === ArcType.ArcType.RHUMB) {
- tempPositions = PolygonGeometryLibrary.subdivideRhumbLine(ellipsoid, p1, p2, minDistance, computeWallIndicesSubdivided);
- }
- var tempPositionsLength = tempPositions.length;
- for (var j = 0; j < tempPositionsLength; ++j, ++index) {
- edgePositions[index] = tempPositions[j];
- edgePositions[index + topEdgeLength] = tempPositions[j];
- }
- edgePositions[index] = p2.x;
- edgePositions[index + topEdgeLength] = p2.x;
- ++index;
- edgePositions[index] = p2.y;
- edgePositions[index + topEdgeLength] = p2.y;
- ++index;
- edgePositions[index] = p2.z;
- edgePositions[index + topEdgeLength] = p2.z;
- ++index;
- }
- } else {
- topEdgeLength = length * 3 * 2;
- edgePositions = new Array(topEdgeLength * 2);
- for (i = 0; i < length; i++) {
- p1 = positions[i];
- p2 = positions[(i + 1) % length];
- edgePositions[index] = edgePositions[index + topEdgeLength] = p1.x;
- ++index;
- edgePositions[index] = edgePositions[index + topEdgeLength] = p1.y;
- ++index;
- edgePositions[index] = edgePositions[index + topEdgeLength] = p1.z;
- ++index;
- edgePositions[index] = edgePositions[index + topEdgeLength] = p2.x;
- ++index;
- edgePositions[index] = edgePositions[index + topEdgeLength] = p2.y;
- ++index;
- edgePositions[index] = edgePositions[index + topEdgeLength] = p2.z;
- ++index;
- }
- }
- length = edgePositions.length;
- var indices = IndexDatatype.IndexDatatype.createTypedArray(length / 3, length - positions.length * 6);
- var edgeIndex = 0;
- length /= 6;
- for (i = 0; i < length; i++) {
- var UL = i;
- var UR = UL + 1;
- var LL = UL + length;
- var LR = LL + 1;
- p1 = Cartesian2.Cartesian3.fromArray(edgePositions, UL * 3, p1Scratch);
- p2 = Cartesian2.Cartesian3.fromArray(edgePositions, UR * 3, p2Scratch);
- if (Cartesian2.Cartesian3.equalsEpsilon(p1, p2, _Math.CesiumMath.EPSILON10, _Math.CesiumMath.EPSILON10)) {
- //skip corner
- continue;
- }
- indices[edgeIndex++] = UL;
- indices[edgeIndex++] = LL;
- indices[edgeIndex++] = UR;
- indices[edgeIndex++] = UR;
- indices[edgeIndex++] = LL;
- indices[edgeIndex++] = LR;
- }
- return new GeometryAttribute.Geometry({
- attributes : new GeometryAttributes.GeometryAttributes({
- position : new GeometryAttribute.GeometryAttribute({
- componentDatatype : ComponentDatatype.ComponentDatatype.DOUBLE,
- componentsPerAttribute : 3,
- values : edgePositions
- })
- }),
- indices : indices,
- primitiveType : GeometryAttribute.PrimitiveType.TRIANGLES
- });
- };
- exports.PolygonGeometryLibrary = PolygonGeometryLibrary;
- });
|