mxdraw 0.1.125 → 0.1.127
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/lib/MxModule/MxDrawObject/index.d.ts +9 -0
- package/dist/lib/MxModule/MxDrawObject/index.js +1 -1
- package/dist/lib/MxModule/MxFun/index.d.ts +10 -0
- package/dist/lib/MxModule/MxFun/index.js +1 -1
- package/dist/lib/MxModule/loadCoreCode/mxfun.es5.js +1 -1
- package/dist/lib/MxModule.d.ts +19 -0
- package/dist/mxdraw.es.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/lib/MxModule.d.ts
CHANGED
|
@@ -1800,6 +1800,15 @@ declare class MxDrawObject {
|
|
|
1800
1800
|
* ```
|
|
1801
1801
|
*/
|
|
1802
1802
|
gotoLayout(layout: string): void;
|
|
1803
|
+
/**
|
|
1804
|
+
* 初始cpp对象.
|
|
1805
|
+
* @example
|
|
1806
|
+
* ```typescript
|
|
1807
|
+
*
|
|
1808
|
+
*
|
|
1809
|
+
* ```
|
|
1810
|
+
*/
|
|
1811
|
+
initMxCpp(mcppObjectImp: any): void;
|
|
1803
1812
|
}
|
|
1804
1813
|
|
|
1805
1814
|
/**
|
|
@@ -2561,6 +2570,16 @@ declare class MxFunClass {
|
|
|
2561
2570
|
* ```
|
|
2562
2571
|
*/
|
|
2563
2572
|
getCurrentMousePostion(): THREE.Vector3;
|
|
2573
|
+
/**
|
|
2574
|
+
* 停止运行当前命令
|
|
2575
|
+
* @returns
|
|
2576
|
+
* @example
|
|
2577
|
+
* ```typescript
|
|
2578
|
+
*
|
|
2579
|
+
*
|
|
2580
|
+
* ```
|
|
2581
|
+
*/
|
|
2582
|
+
stopRunCommand(): any;
|
|
2564
2583
|
}
|
|
2565
2584
|
/**
|
|
2566
2585
|
* MxFun 模块
|