148 lines
5.9 KiB
JavaScript
148 lines
5.9 KiB
JavaScript
|
/**
|
||
|
* Cesium - https://github.com/CesiumGS/cesium
|
||
|
*
|
||
|
* Copyright 2011-2020 Cesium Contributors
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*
|
||
|
* Columbus View (Pat. Pend.)
|
||
|
*
|
||
|
* Portions licensed separately.
|
||
|
* See https://github.com/CesiumGS/cesium/blob/main/LICENSE.md for full licensing details.
|
||
|
*/
|
||
|
|
||
|
define(['./when-4bbc8319', './Matrix2-265d9610', './RuntimeError-5b082e8f', './EllipsoidGeometry-c1dcbb8c', './VertexFormat-07539138', './ComponentDatatype-aad54330', './WebGLConstants-508b9636', './GeometryOffsetAttribute-7e016332', './Transforms-8b90e17c', './combine-e9466e32', './GeometryAttribute-4bcb785f', './GeometryAttributes-7827a6c2', './IndexDatatype-6739e544'], (function (when, Matrix2, RuntimeError, EllipsoidGeometry, VertexFormat, ComponentDatatype, WebGLConstants, GeometryOffsetAttribute, Transforms, combine, GeometryAttribute, GeometryAttributes, IndexDatatype) { 'use strict';
|
||
|
|
||
|
/**
|
||
|
* A description of a sphere centered at the origin.
|
||
|
*
|
||
|
* @alias SphereGeometry
|
||
|
* @constructor
|
||
|
*
|
||
|
* @param {Object} [options] Object with the following properties:
|
||
|
* @param {Number} [options.radius=1.0] The radius of the sphere.
|
||
|
* @param {Number} [options.stackPartitions=64] The number of times to partition the ellipsoid into stacks.
|
||
|
* @param {Number} [options.slicePartitions=64] The number of times to partition the ellipsoid into radial slices.
|
||
|
* @param {VertexFormat} [options.vertexFormat=VertexFormat.DEFAULT] The vertex attributes to be computed.
|
||
|
*
|
||
|
* @exception {DeveloperError} options.slicePartitions cannot be less than three.
|
||
|
* @exception {DeveloperError} options.stackPartitions cannot be less than three.
|
||
|
*
|
||
|
* @see SphereGeometry#createGeometry
|
||
|
*
|
||
|
* @example
|
||
|
* const sphere = new Cesium.SphereGeometry({
|
||
|
* radius : 100.0,
|
||
|
* vertexFormat : Cesium.VertexFormat.POSITION_ONLY
|
||
|
* });
|
||
|
* const geometry = Cesium.SphereGeometry.createGeometry(sphere);
|
||
|
*/
|
||
|
function SphereGeometry(options) {
|
||
|
const radius = when.defaultValue(options.radius, 1.0);
|
||
|
const radii = new Matrix2.Cartesian3(radius, radius, radius);
|
||
|
const ellipsoidOptions = {
|
||
|
radii: radii,
|
||
|
stackPartitions: options.stackPartitions,
|
||
|
slicePartitions: options.slicePartitions,
|
||
|
vertexFormat: options.vertexFormat,
|
||
|
};
|
||
|
|
||
|
this._ellipsoidGeometry = new EllipsoidGeometry.EllipsoidGeometry(ellipsoidOptions);
|
||
|
this._workerName = "createSphereGeometry";
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* The number of elements used to pack the object into an array.
|
||
|
* @type {Number}
|
||
|
*/
|
||
|
SphereGeometry.packedLength = EllipsoidGeometry.EllipsoidGeometry.packedLength;
|
||
|
|
||
|
/**
|
||
|
* Stores the provided instance into the provided array.
|
||
|
*
|
||
|
* @param {SphereGeometry} 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
|
||
|
*/
|
||
|
SphereGeometry.pack = function (value, array, startingIndex) {
|
||
|
//>>includeStart('debug', pragmas.debug);
|
||
|
RuntimeError.Check.typeOf.object("value", value);
|
||
|
//>>includeEnd('debug');
|
||
|
|
||
|
return EllipsoidGeometry.EllipsoidGeometry.pack(value._ellipsoidGeometry, array, startingIndex);
|
||
|
};
|
||
|
|
||
|
const scratchEllipsoidGeometry = new EllipsoidGeometry.EllipsoidGeometry();
|
||
|
const scratchOptions = {
|
||
|
radius: undefined,
|
||
|
radii: new Matrix2.Cartesian3(),
|
||
|
vertexFormat: new VertexFormat.VertexFormat(),
|
||
|
stackPartitions: undefined,
|
||
|
slicePartitions: 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 {SphereGeometry} [result] The object into which to store the result.
|
||
|
* @returns {SphereGeometry} The modified result parameter or a new SphereGeometry instance if one was not provided.
|
||
|
*/
|
||
|
SphereGeometry.unpack = function (array, startingIndex, result) {
|
||
|
const ellipsoidGeometry = EllipsoidGeometry.EllipsoidGeometry.unpack(
|
||
|
array,
|
||
|
startingIndex,
|
||
|
scratchEllipsoidGeometry
|
||
|
);
|
||
|
scratchOptions.vertexFormat = VertexFormat.VertexFormat.clone(
|
||
|
ellipsoidGeometry._vertexFormat,
|
||
|
scratchOptions.vertexFormat
|
||
|
);
|
||
|
scratchOptions.stackPartitions = ellipsoidGeometry._stackPartitions;
|
||
|
scratchOptions.slicePartitions = ellipsoidGeometry._slicePartitions;
|
||
|
|
||
|
if (!when.defined(result)) {
|
||
|
scratchOptions.radius = ellipsoidGeometry._radii.x;
|
||
|
return new SphereGeometry(scratchOptions);
|
||
|
}
|
||
|
|
||
|
Matrix2.Cartesian3.clone(ellipsoidGeometry._radii, scratchOptions.radii);
|
||
|
result._ellipsoidGeometry = new EllipsoidGeometry.EllipsoidGeometry(scratchOptions);
|
||
|
return result;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Computes the geometric representation of a sphere, including its vertices, indices, and a bounding sphere.
|
||
|
*
|
||
|
* @param {SphereGeometry} sphereGeometry A description of the sphere.
|
||
|
* @returns {Geometry|undefined} The computed vertices and indices.
|
||
|
*/
|
||
|
SphereGeometry.createGeometry = function (sphereGeometry) {
|
||
|
return EllipsoidGeometry.EllipsoidGeometry.createGeometry(sphereGeometry._ellipsoidGeometry);
|
||
|
};
|
||
|
|
||
|
function createSphereGeometry(sphereGeometry, offset) {
|
||
|
if (when.defined(offset)) {
|
||
|
sphereGeometry = SphereGeometry.unpack(sphereGeometry, offset);
|
||
|
}
|
||
|
return SphereGeometry.createGeometry(sphereGeometry);
|
||
|
}
|
||
|
|
||
|
return createSphereGeometry;
|
||
|
|
||
|
}));
|
||
|
//# sourceMappingURL=createSphereGeometry.js.map
|