mxcad 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mxcad.d.ts +1 -2
- package/dist/mxcad.es.js +1199 -969
- package/dist/mxcad.umd.js +17 -17
- package/dist/mxdrawassembly_min.wasm +0 -0
- package/dist/test2.dwg +0 -0
- package/dist/test2.mxweb +0 -0
- package/package.json +1 -1
package/dist/mxcad.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare const MxTools: {
|
|
|
17
17
|
export declare function drawText(): Promise<void>;
|
|
18
18
|
/** 绘制圆*/
|
|
19
19
|
export declare function drawCircle(): void;
|
|
20
|
-
declare class McObject {
|
|
20
|
+
export declare class McObject {
|
|
21
21
|
updateDisplay(modelViewMatrix: number[], projectionMatrix: number[]): void;
|
|
22
22
|
test(): void;
|
|
23
23
|
openWebFile(sFileUrl: string): boolean;
|
|
@@ -27,7 +27,6 @@ declare class McApp {
|
|
|
27
27
|
CreateMxDraw(width: number, height: number, canvasId: string, isWebgl2: boolean, mxObjectId: number): McObject;
|
|
28
28
|
}
|
|
29
29
|
export interface Mxdrawassembly {
|
|
30
|
-
MxCpp: typeof McApp;
|
|
31
30
|
McObject: typeof McObject;
|
|
32
31
|
McApp: McApp;
|
|
33
32
|
}
|