mxdraw 0.1.345 → 0.1.347
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/mxdraw.d.ts +9 -1
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -2628,7 +2628,7 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2628
2628
|
*
|
|
2629
2629
|
* ```
|
|
2630
2630
|
*/
|
|
2631
|
-
loadMxEntityFromJson(dataString: string | object, aryPreloadSVG?: string[] | null): Promise<boolean>;
|
|
2631
|
+
loadMxEntityFromJson(dataString: string | object, aryPreloadSVG?: string[] | null, eraseCurrentEntity?: boolean): Promise<boolean>;
|
|
2632
2632
|
/**
|
|
2633
2633
|
* 删除所有的MxEntity
|
|
2634
2634
|
* @param
|
|
@@ -3433,6 +3433,14 @@ declare class McEdGetPointWorldDrawObject {
|
|
|
3433
3433
|
[x: string]: any;
|
|
3434
3434
|
private _McEdGetPointWorldDraw;
|
|
3435
3435
|
constructor();
|
|
3436
|
+
/**
|
|
3437
|
+
* 设置一个变换矩阵
|
|
3438
|
+
* @example
|
|
3439
|
+
* ``` typescript
|
|
3440
|
+
* ```
|
|
3441
|
+
*
|
|
3442
|
+
*/
|
|
3443
|
+
initMat(_matCAD: any, _matThree: THREE.Matrix4): void;
|
|
3436
3444
|
/**
|
|
3437
3445
|
* 绘制圆
|
|
3438
3446
|
* @param cen 圆心位置
|