初始化版本库,可用

This commit is contained in:
2021-01-28 10:17:21 +08:00
commit d2573c0b1c
1750 changed files with 41088 additions and 0 deletions

26
types/DatabaseServices/Texture.d.ts vendored Normal file
View File

@@ -0,0 +1,26 @@
import { Texture, Wrapping } from 'three';
import { CADFiler } from './CADFiler';
import { SymbolTableRecord } from './SymbolTableRecord';
/**
* 数据化的贴图类.实现了序列化.
*/
export declare class TextureTableRecord extends SymbolTableRecord {
private wrapS;
private wrapT;
repeatX: number;
repeatY: number;
rotation: number;
imageUrl: string;
set WrapS(wrap: Wrapping);
get WrapS(): Wrapping;
get WrapT(): Wrapping;
set WrapT(wrap: Wrapping);
private texture;
Update(): Promise<void>;
private waits;
WaitUpdate(): Promise<unknown>;
GetThreeTexture(): Texture;
ReadFile(file: CADFiler): void;
WriteFile(file: CADFiler): void;
}
//# sourceMappingURL=Texture.d.ts.map