You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.8 KiB
JavaScript
117 lines
3.8 KiB
JavaScript
/* This file is automatically rebuilt by the Cesium build process. */
|
|
define(['./when-f31b6bd1', './Transforms-eb995198', './Cartesian2-44e93af5', './Check-285f6bfc', './ComponentDatatype-d4a0149c', './GeometryAttribute-cc0565cd', './GeometryAttributes-e973821e', './Math-8c161f1c', './RuntimeError-c7c236f3', './WebGLConstants-34c08bc0'], function (when, Transforms, Cartesian2, Check, ComponentDatatype, GeometryAttribute, GeometryAttributes, _Math, RuntimeError, WebGLConstants) { 'use strict';
|
|
|
|
/**
|
|
* Describes geometry representing the outline of a plane centered at the origin, with a unit width and length.
|
|
*
|
|
* @alias PlaneOutlineGeometry
|
|
* @constructor
|
|
*
|
|
*/
|
|
function PlaneOutlineGeometry() {
|
|
this._workerName = "createPlaneOutlineGeometry";
|
|
}
|
|
|
|
/**
|
|
* The number of elements used to pack the object into an array.
|
|
* @type {Number}
|
|
*/
|
|
PlaneOutlineGeometry.packedLength = 0;
|
|
|
|
/**
|
|
* Stores the provided instance into the provided array.
|
|
*
|
|
* @param {PlaneOutlineGeometry} value The value to pack.
|
|
* @param {Number[]} array The array to pack into.
|
|
*
|
|
* @returns {Number[]} The array that was packed into
|
|
*/
|
|
PlaneOutlineGeometry.pack = function (value, array) {
|
|
//>>includeStart('debug', pragmas.debug);
|
|
Check.Check.defined("value", value);
|
|
Check.Check.defined("array", array);
|
|
//>>includeEnd('debug');
|
|
|
|
return array;
|
|
};
|
|
|
|
/**
|
|
* 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 {PlaneOutlineGeometry} [result] The object into which to store the result.
|
|
* @returns {PlaneOutlineGeometry} The modified result parameter or a new PlaneOutlineGeometry instance if one was not provided.
|
|
*/
|
|
PlaneOutlineGeometry.unpack = function (array, startingIndex, result) {
|
|
//>>includeStart('debug', pragmas.debug);
|
|
Check.Check.defined("array", array);
|
|
//>>includeEnd('debug');
|
|
|
|
if (!when.defined(result)) {
|
|
return new PlaneOutlineGeometry();
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
var min = new Cartesian2.Cartesian3(-0.5, -0.5, 0.0);
|
|
var max = new Cartesian2.Cartesian3(0.5, 0.5, 0.0);
|
|
|
|
/**
|
|
* Computes the geometric representation of an outline of a plane, including its vertices, indices, and a bounding sphere.
|
|
*
|
|
* @returns {Geometry|undefined} The computed vertices and indices.
|
|
*/
|
|
PlaneOutlineGeometry.createGeometry = function () {
|
|
var attributes = new GeometryAttributes.GeometryAttributes();
|
|
var indices = new Uint16Array(4 * 2);
|
|
var positions = new Float64Array(4 * 3);
|
|
|
|
positions[0] = min.x;
|
|
positions[1] = min.y;
|
|
positions[2] = min.z;
|
|
positions[3] = max.x;
|
|
positions[4] = min.y;
|
|
positions[5] = min.z;
|
|
positions[6] = max.x;
|
|
positions[7] = max.y;
|
|
positions[8] = min.z;
|
|
positions[9] = min.x;
|
|
positions[10] = max.y;
|
|
positions[11] = min.z;
|
|
|
|
attributes.position = new GeometryAttribute.GeometryAttribute({
|
|
componentDatatype: ComponentDatatype.ComponentDatatype.DOUBLE,
|
|
componentsPerAttribute: 3,
|
|
values: positions,
|
|
});
|
|
|
|
indices[0] = 0;
|
|
indices[1] = 1;
|
|
indices[2] = 1;
|
|
indices[3] = 2;
|
|
indices[4] = 2;
|
|
indices[5] = 3;
|
|
indices[6] = 3;
|
|
indices[7] = 0;
|
|
|
|
return new GeometryAttribute.Geometry({
|
|
attributes: attributes,
|
|
indices: indices,
|
|
primitiveType: GeometryAttribute.PrimitiveType.LINES,
|
|
boundingSphere: new Transforms.BoundingSphere(Cartesian2.Cartesian3.ZERO, Math.sqrt(2.0)),
|
|
});
|
|
};
|
|
|
|
function createPlaneOutlineGeometry(planeGeometry, offset) {
|
|
if (when.defined(offset)) {
|
|
planeGeometry = PlaneOutlineGeometry.unpack(planeGeometry, offset);
|
|
}
|
|
return PlaneOutlineGeometry.createGeometry(planeGeometry);
|
|
}
|
|
|
|
return createPlaneOutlineGeometry;
|
|
|
|
});
|