Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
// @ts-check
/**
* Metadata ordering for voxel content.
* In all cases, x data is contiguous in strides along the y axis,
* and each group of y strides represents a z slice.
* However, the orientation of the axes follows different conventions.
*
* @enum {number}
* @private
*/
const VoxelMetadataOrder = {
/**
* The default ordering following the 3D Tiles convention. Z-axis points upward.
* @type {number}
* @constant
*/
Z_UP: 0,
/**
* The ordering following the glTF convention. Y-axis points upward.
* @type {number}
* @constant
*/
Y_UP: 1,
};
Object.freeze(VoxelMetadataOrder);
export default VoxelMetadataOrder;