更新包

This commit is contained in:
ChenX
2025-04-01 14:56:29 +08:00
parent dccd6ec73e
commit b08fc5ee5e
164 changed files with 7504 additions and 4655 deletions

View File

@@ -1,3 +1,4 @@
import { Matrix4 } from 'three';
import { Vec3 } from '../Geometry/IVec3';
import { CADObject } from './CADObject';
import { Database } from './Database';
@@ -24,9 +25,11 @@ export declare class CADFiler {
Write(data: any): this;
WriteBool(v: boolean): void;
WriteVec3(v3: Vec3): void;
WriteMatrix4(m: Matrix4): void;
Write2dArray(arr: [any, any][]): void;
Read(): any;
ReadBool(): boolean;
ReadMatrix4(): Matrix4;
ReadArray(count: number): any[];
Read2dArray(): [any, any][];
WriteObjectId(id: ObjectId): this;