@xeokit/xeokit-sdk
Version:
3D BIM IFC Viewer SDK for AEC engineering applications. Open Source JavaScript Toolkit based on pure WebGL for top performance, real-world coordinates and full double precision
17 lines (15 loc) • 442 B
TypeScript
/**
* A texture within a {@link SceneModelTextureSet}.
*
* * Created with {@link SceneModel#createTexture}
* * Belongs to many {@link SceneModelTextureSet}s
* * Stored by ID in {@link SceneModel#textures}}
*/
export declare class SceneModelTexture {
/**
* Unique ID of this SceneModelTexture.
*
* The SceneModelTexture is registered against this ID in {@link SceneModel#textures}.
*/
id: string | number;
}