Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00:00

232 lines
6.7 KiB
JavaScript

import DeveloperError from "../Core/DeveloperError.js";
/**
* Provides voxel data. Intended to be used with {@link VoxelPrimitive}.
* This type describes an interface and is not intended to be instantiated directly.
*
* @alias VoxelProvider
* @constructor
*
* @see Cesium3DTilesVoxelProvider
* @see VoxelPrimitive
* @see VoxelShapeType
*
* @experimental This feature is not final and is subject to change without Cesium's standard deprecation policy.
*/
function VoxelProvider() {
DeveloperError.throwInstantiationError();
}
Object.defineProperties(VoxelProvider.prototype, {
/**
* A transform from local space to global space. If undefined, the identity matrix will be used instead.
*
* @memberof VoxelProvider.prototype
* @type {Matrix4|undefined}
* @readonly
*/
globalTransform: {
get: DeveloperError.throwInstantiationError,
},
/**
* A transform from shape space to local space. If undefined, the identity matrix will be used instead.
*
* @memberof VoxelProvider.prototype
* @type {Matrix4|undefined}
* @readonly
*/
shapeTransform: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the {@link VoxelShapeType}
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {VoxelShapeType}
* @readonly
*/
shape: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the minimum bounds.
* If undefined, the shape's default minimum bounds will be used instead.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {Cartesian3|undefined}
* @readonly
*/
minBounds: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the maximum bounds.
* If undefined, the shape's default maximum bounds will be used instead.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {Cartesian3|undefined}
* @readonly
*/
maxBounds: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the number of voxels per dimension of a tile. This is the same for all tiles in the dataset.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {Cartesian3}
* @readonly
*/
dimensions: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the number of padding voxels before the tile. This improves rendering quality when sampling the edge of a tile, but it increases memory usage.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {Cartesian3|undefined}
* @readonly
*/
paddingBefore: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the number of padding voxels after the tile. This improves rendering quality when sampling the edge of a tile, but it increases memory usage.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {Cartesian3|undefined}
* @readonly
*/
paddingAfter: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the metadata names.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {string[]}
* @readonly
*/
names: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the metadata types.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {MetadataType[]}
* @readonly
*/
types: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the metadata component types.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {MetadataComponentType[]}
* @readonly
*/
componentTypes: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the metadata minimum values.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {number[][]|undefined}
* @readonly
*/
minimumValues: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the metadata maximum values.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {number[][]|undefined}
* @readonly
*/
maximumValues: {
get: DeveloperError.throwInstantiationError,
},
/**
* The maximum number of tiles that exist for this provider. This value is used as a hint to the voxel renderer to allocate an appropriate amount of GPU memory. If this value is not known it can be undefined.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {number|undefined}
* @readonly
*/
maximumTileCount: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the number of keyframes in the dataset.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {number}
* @readonly
* @private
*/
keyframeCount: {
get: DeveloperError.throwInstantiationError,
},
/**
* Gets the {@link TimeIntervalCollection} for the dataset, or undefined if it doesn't have timestamps.
* This should not be called before {@link VoxelProvider#ready} returns true.
*
* @memberof VoxelProvider.prototype
* @type {TimeIntervalCollection}
* @readonly
* @private
*/
timeIntervalCollection: {
get: DeveloperError.throwInstantiationError,
},
});
/**
* Requests the data for a given tile. The data is a flattened 3D array ordered by X, then Y, then Z.
* This function should not be called before {@link VoxelProvider#ready} returns true.
* @function
*
* @param {object} [options] Object with the following properties:
* @param {number} [options.tileLevel=0] The tile's level.
* @param {number} [options.tileX=0] The tile's X coordinate.
* @param {number} [options.tileY=0] The tile's Y coordinate.
* @param {number} [options.tileZ=0] The tile's Z coordinate.
* @privateparam {number} [options.keyframe=0] The requested keyframe.
* @returns {Promise<Array[]>|undefined} A promise to an array of typed arrays containing the requested voxel data or undefined if there was a problem loading the data.
*/
VoxelProvider.prototype.requestData = DeveloperError.throwInstantiationError;
export default VoxelProvider;