mxdraw 0.1.258 → 0.1.259
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 +49 -9
- 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
|
@@ -1840,6 +1840,15 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
1840
1840
|
private _mxdrawObj;
|
|
1841
1841
|
private rootLayer;
|
|
1842
1842
|
constructor(Mxdraw: MxDrawObjectType);
|
|
1843
|
+
/**
|
|
1844
|
+
* 得执行的内部MxObject对象.
|
|
1845
|
+
* @example
|
|
1846
|
+
* ```typescript
|
|
1847
|
+
*
|
|
1848
|
+
*
|
|
1849
|
+
* ```
|
|
1850
|
+
*/
|
|
1851
|
+
getMxObjectImplement(): any;
|
|
1843
1852
|
/**
|
|
1844
1853
|
* @instance
|
|
1845
1854
|
*/
|
|
@@ -2619,6 +2628,46 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2619
2628
|
* ```
|
|
2620
2629
|
*/
|
|
2621
2630
|
cadCoord2View(x: number, y: number, z: number): THREE.Vector3;
|
|
2631
|
+
/**
|
|
2632
|
+
*CAD长度到视区长度
|
|
2633
|
+
* @returns number
|
|
2634
|
+
* @example
|
|
2635
|
+
* ```typescript
|
|
2636
|
+
*
|
|
2637
|
+
*
|
|
2638
|
+
* ```
|
|
2639
|
+
*/
|
|
2640
|
+
cadCoordLong2View(l: number): number;
|
|
2641
|
+
/**
|
|
2642
|
+
*视区长度到CAD长度
|
|
2643
|
+
* @returns number
|
|
2644
|
+
* @example
|
|
2645
|
+
* ```typescript
|
|
2646
|
+
*
|
|
2647
|
+
*
|
|
2648
|
+
* ```
|
|
2649
|
+
*/
|
|
2650
|
+
viewCoordLong2Cad(l: number): number;
|
|
2651
|
+
/**
|
|
2652
|
+
*Doc长度到CAD长度
|
|
2653
|
+
* @returns number
|
|
2654
|
+
* @example
|
|
2655
|
+
* ```typescript
|
|
2656
|
+
*
|
|
2657
|
+
*
|
|
2658
|
+
* ```
|
|
2659
|
+
*/
|
|
2660
|
+
docCoordLong2Cad(l: number): number;
|
|
2661
|
+
/**
|
|
2662
|
+
*CAD长度到Doc长度
|
|
2663
|
+
* @returns number
|
|
2664
|
+
* @example
|
|
2665
|
+
* ```typescript
|
|
2666
|
+
*
|
|
2667
|
+
*
|
|
2668
|
+
* ```
|
|
2669
|
+
*/
|
|
2670
|
+
cadCoordLong2Doc(l: number): number;
|
|
2622
2671
|
/**
|
|
2623
2672
|
* 设置视区的旋转角度
|
|
2624
2673
|
* @example
|
|
@@ -2664,15 +2713,6 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2664
2713
|
* ```
|
|
2665
2714
|
*/
|
|
2666
2715
|
isMxCAD(): boolean;
|
|
2667
|
-
/**
|
|
2668
|
-
* 得执行的内部MxObject对象.
|
|
2669
|
-
* @example
|
|
2670
|
-
* ```typescript
|
|
2671
|
-
*
|
|
2672
|
-
*
|
|
2673
|
-
* ```
|
|
2674
|
-
*/
|
|
2675
|
-
getMxObjectImplement(): any;
|
|
2676
2716
|
/**
|
|
2677
2717
|
* 得到所有布局名
|
|
2678
2718
|
* @example
|