同步最新的WebCAD代码,包括窗户与材质槽

This commit is contained in:
ChenX
2023-01-11 09:59:43 +08:00
parent 9ff24d8fbf
commit 12a50e98c6
435 changed files with 5165 additions and 1407 deletions

View File

@@ -1,10 +1,20 @@
import { SymbolTable } from "./SymbolTable";
import { CADFiler } from "./CADFiler";
import { ObjectId } from "./ObjectId";
import { PhysicalMaterialRecord } from "./PhysicalMaterialRecord";
import { SymbolTable } from "./SymbolTable";
export declare class MaterialTable extends SymbolTable {
protected _CurFloorMtl: ObjectId;
protected _CurWallMtl: ObjectId;
get CurFloorMtl(): ObjectId<import("./CADObject").CADObject>;
get CurWallMtl(): ObjectId<import("./CADObject").CADObject>;
set CurFloorMtl(id: ObjectId<import("./CADObject").CADObject>);
set CurWallMtl(id: ObjectId<import("./CADObject").CADObject>);
get Materials(): Map<string, PhysicalMaterialRecord>;
Remove(record: PhysicalMaterialRecord): void;
GetAt(name: string): PhysicalMaterialRecord | undefined;
Has(name: string): boolean;
AllocateName(name?: string): string;
ReadFile(file: CADFiler): void;
WriteFile(file: CADFiler): void;
}
//# sourceMappingURL=MaterialTable.d.ts.map