UNPKG

@cesium/engine

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

29 lines (26 loc) 595 B
/** * Local Generic Point-cloud Model information about a glTF primitive. * * @param {PpeTexture[]} ppeTextures The Per-Point Error textures * * @constructor * @private */ function MeshPrimitiveGpmLocal(ppeTextures) { this._ppeTextures = ppeTextures; } Object.defineProperties(MeshPrimitiveGpmLocal.prototype, { /** * An array of ppe textures. * * @memberof MeshPrimitiveGpmLocal.prototype * @type {PpeTexture[]|undefined} * @readonly */ ppeTextures: { get: function () { return this._ppeTextures; }, }, }); export default MeshPrimitiveGpmLocal;