0.0.1
This commit is contained in:
26
types/DatabaseServices/Texture.d.ts
vendored
Normal file
26
types/DatabaseServices/Texture.d.ts
vendored
Normal 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
|
Reference in New Issue
Block a user